containsParameter('peer')) { return $rpcRequest->produceError(StandardError::RPC_INVALID_ARGUMENTS, 'Missing required \'peer\' parameter'); } try { $address = PeerAddress::fromAddress($rpcRequest->getParameter('peer')); } catch(InvalidArgumentException $e) { throw new StandardException('Invalid peer address', StandardError::RPC_INVALID_ARGUMENTS, $e); } try { // Check if the contact already exists $peer = $request->getPeer(); if(!ContactManager::isContact($peer, $address)) { return $rpcRequest->produceError(StandardError::FORBIDDEN, 'Contact does not exist'); } // Create the contact ContactManager::deleteContact($peer, $address); } catch (DatabaseOperationException $e) { throw new StandardException('Failed to remove contact', StandardError::INTERNAL_SERVER_ERROR, $e); } // Return success return $rpcRequest->produceResponse(true); } }