Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2018-05-28 17:59:42 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2018-05-28 17:59:42 +0300
commit948be6bd9390df9cbec98c5a766c674f62d1bbea (patch)
tree84e925094eefedf2e6189f5c42aab40ce436089a /lib/Command
parent782034dcbe80976373f66fc8ed69506856b59877 (diff)
Add account export command
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/Command')
-rw-r--r--lib/Command/ExportAccount.php70
1 files changed, 70 insertions, 0 deletions
diff --git a/lib/Command/ExportAccount.php b/lib/Command/ExportAccount.php
new file mode 100644
index 000000000..21df80c77
--- /dev/null
+++ b/lib/Command/ExportAccount.php
@@ -0,0 +1,70 @@
+<?php
+
+/**
+ * @author Christoph Wurst <christoph@winzerhof-wurst.at>
+ *
+ * Mail
+ *
+ * This code is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License, version 3,
+ * as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License, version 3,
+ * along with this program. If not, see <http://www.gnu.org/licenses/>
+ *
+ */
+
+namespace OCA\Mail\Command;
+
+use OCA\Mail\Service\AccountService;
+use OCP\Security\ICrypto;
+use Symfony\Component\Console\Command\Command;
+use Symfony\Component\Console\Input\InputArgument;
+use Symfony\Component\Console\Input\InputInterface;
+use Symfony\Component\Console\Output\OutputInterface;
+
+class ExportAccount extends Command {
+
+ const ARGUMENT_USER_ID = 'user-id';
+
+ /** @var AccountService */
+ private $accountService;
+
+ /** @var ICrypto */
+ private $crypto;
+
+ public function __construct(AccountService $service, ICrypto $crypto) {
+ parent::__construct();
+
+ $this->accountService = $service;
+ $this->crypto = $crypto;
+ }
+
+ protected function configure() {
+ $this->setName('mail:account:export');
+ $this->setDescription('Exports a user\'s IMAP account(s)');
+ $this->addArgument(self::ARGUMENT_USER_ID, InputArgument::REQUIRED);
+ }
+
+ protected function execute(InputInterface $input, OutputInterface $output) {
+ $userId = $input->getArgument(self::ARGUMENT_USER_ID);
+
+ $accounts = $this->accountService->findByUserId($userId);
+
+ foreach ($accounts as $account) {
+ $output->writeln("<info>Account " . $account->getId() . ":</info>");
+ $output->writeln("- E-Mail: " . $account->getEmail());
+ $output->writeln("- Name: " . $account->getName());
+ $output->writeln("- IMAP user: : " . $account->getMailAccount()->getInboundUser());
+ $output->writeln("- IMAP host: : " . $account->getMailAccount()->getInboundHost() . ":" . $account->getMailAccount()->getInboundPort() . ", security: " . $account->getMailAccount()->getInboundSslMode());
+ $output->writeln("- SMTP user: : " . $account->getMailAccount()->getOutboundUser());
+ $output->writeln("- SMTP host: : " . $account->getMailAccount()->getOutboundHost() . ":" . $account->getMailAccount()->getOutboundPort() . ", security: " . $account->getMailAccount()->getOutboundSslMode());
+ }
+ }
+
+}