*/ final class DeleteCommand implements CommandInterface { public function __construct( private readonly string $mailbox, ) {} public function name(): string { return 'DELETE'; } public function allowedStates(): array { return [ SessionState::Authenticated, SessionState::Selected, ]; } public function encode(string $tag, SessionContext $context): RequestFrame { unset($tag, $context); return new RequestFrame(sprintf('DELETE %s', $this->quote($this->mailbox))); } public function handle(ResponseStream $responses, SessionContext $context): CommandStatusResult { if ($context->selectedMailbox() === $this->mailbox) { $context->setSelectedMailbox(null); $context->setState(SessionState::Authenticated); } foreach ($responses as $response) { if ($response instanceof TaggedResponse) { if (!$response->isOk()) { throw new ImapException('DELETE failed: ' . $response->text()); } return new CommandStatusResult($response->status(), $response->text()); } } throw new ImapException('DELETE did not receive a tagged completion response.'); } private function quote(string $value): string { return '"' . addcslashes($value, "\\\"") . '"'; } }