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
path: root/lib
diff options
context:
space:
mode:
authorDaniel Kesselberg <mail@danielkesselberg.de>2021-06-01 17:45:23 +0300
committerDaniel Kesselberg <mail@danielkesselberg.de>2021-06-01 21:09:16 +0300
commit13b816ac66f5932a80607bff57d75e67e75dadb9 (patch)
tree3659e8cb28bc5ac8fde09ad1de3aedf22d1837f6 /lib
parentb53e6e707dff206db8bad30910b696e680ee05bf (diff)
Move create and update tag to mail manager
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'lib')
-rw-r--r--lib/Contracts/IMailManager.php31
-rwxr-xr-xlib/Controller/MessagesController.php4
-rw-r--r--lib/Controller/TagsController.php52
-rw-r--r--lib/Service/MailManager.php83
4 files changed, 97 insertions, 73 deletions
diff --git a/lib/Contracts/IMailManager.php b/lib/Contracts/IMailManager.php
index 34458c862..76eb2f1d5 100644
--- a/lib/Contracts/IMailManager.php
+++ b/lib/Contracts/IMailManager.php
@@ -23,14 +23,14 @@ declare(strict_types=1);
namespace OCA\Mail\Contracts;
-use OCA\Mail\Db\Tag;
use OCA\Mail\Account;
use OCA\Mail\Db\Mailbox;
use OCA\Mail\Db\Message;
-use OCA\Mail\Service\Quota;
-use OCA\Mail\Model\IMAPMessage;
+use OCA\Mail\Db\Tag;
use OCA\Mail\Exception\ClientException;
use OCA\Mail\Exception\ServiceException;
+use OCA\Mail\Model\IMAPMessage;
+use OCA\Mail\Service\Quota;
use OCP\AppFramework\Db\DoesNotExistException;
interface IMailManager {
@@ -237,7 +237,30 @@ interface IMailManager {
* @param string $imapLabel
* @param string $userId
* @return Tag
- * @throws DoesNotExistException
+ * @throws ClientException
*/
public function getTagByImapLabel(string $imapLabel, string $userId): Tag;
+
+ /**
+ * Create a mail tag
+ *
+ * @param string $userId
+ * @param string $displayName
+ * @param string $color
+ * @return Tag
+ * @throws ClientException if display name does not work as imap label
+ */
+ public function createTag(string $displayName, string $color, string $userId): Tag;
+
+ /**
+ * Update a mail tag
+ *
+ * @param string $userId
+ * @param int $id
+ * @param string $displayName
+ * @param string $color
+ * @return Tag
+ * @throws ClientException if the given tag does not exist
+ */
+ public function updateTag(int $id, string $displayName, string $color, string $userId): Tag;
}
diff --git a/lib/Controller/MessagesController.php b/lib/Controller/MessagesController.php
index 548ffa713..a39de7001 100755
--- a/lib/Controller/MessagesController.php
+++ b/lib/Controller/MessagesController.php
@@ -671,7 +671,7 @@ class MessagesController extends Controller {
try {
$tag = $this->mailManager->getTagByImapLabel($imapLabel, $this->currentUserId);
- } catch (DoesNotExistException $e) {
+ } catch (ClientException $e) {
return new JSONResponse([], Http::STATUS_FORBIDDEN);
}
@@ -702,7 +702,7 @@ class MessagesController extends Controller {
try {
$tag = $this->mailManager->getTagByImapLabel($imapLabel, $this->currentUserId);
- } catch (DoesNotExistException $e) {
+ } catch (ClientException $e) {
return new JSONResponse([], Http::STATUS_FORBIDDEN);
}
diff --git a/lib/Controller/TagsController.php b/lib/Controller/TagsController.php
index feccf38ed..e3530bebc 100644
--- a/lib/Controller/TagsController.php
+++ b/lib/Controller/TagsController.php
@@ -24,11 +24,9 @@ declare(strict_types=1);
namespace OCA\Mail\Controller;
use OCA\Mail\AppInfo\Application;
-use OCA\Mail\Db\Tag;
-use OCA\Mail\Db\TagMapper;
+use OCA\Mail\Contracts\IMailManager;
use OCA\Mail\Exception\ClientException;
use OCP\AppFramework\Controller;
-use OCP\AppFramework\Db\DoesNotExistException;
use OCP\AppFramework\Http\JSONResponse;
use OCP\IRequest;
@@ -37,23 +35,16 @@ class TagsController extends Controller {
/** @var string */
private $currentUserId;
- /** @var TagMapper */
- private $tagMapper;
+ /** @var IMailManager */
+ private $mailManager;
- /**
- * TagsController constructor.
- *
- * @param IRequest $request
- * @param $UserId
- * @param TagMapper $tagMapper
- */
public function __construct(IRequest $request,
- $UserId,
- TagMapper $tagMapper
+ string $UserId,
+ IMailManager $mailManager
) {
parent::__construct(Application::APP_ID, $request);
$this->currentUserId = $UserId;
- $this->tagMapper = $tagMapper;
+ $this->mailManager = $mailManager;
}
/**
@@ -70,28 +61,7 @@ class TagsController extends Controller {
$this->validateDisplayName($displayName);
$this->validateColor($color);
- $imapLabel = str_replace(' ', '_', $displayName);
- /** @var string|false $imapLabel */
- $imapLabel = mb_convert_encoding($imapLabel, 'UTF7-IMAP', 'UTF-8');
- if ($imapLabel === false) {
- throw new ClientException('Error converting display name to UTF7-IMAP ', 0);
- }
- $imapLabel = mb_strcut($imapLabel, 0, 64);
-
- try {
- return new JSONResponse($this->tagMapper->getTagByImapLabel($imapLabel, $this->currentUserId));
- } catch (DoesNotExistException $e) {
- // it's valid that a tag does not exist.
- }
-
- $tag = new Tag();
- $tag->setUserId($this->currentUserId);
- $tag->setDisplayName($displayName);
- $tag->setImapLabel($imapLabel);
- $tag->setColor($color);
- $tag->setIsDefaultTag(false);
-
- $tag = $this->tagMapper->insert($tag);
+ $tag = $this->mailManager->createTag($displayName, $color, $this->currentUserId);
return new JSONResponse($tag);
}
@@ -105,18 +75,12 @@ class TagsController extends Controller {
*
* @return JSONResponse
* @throws ClientException
- * @throws DoesNotExistException
*/
public function update(int $id, string $displayName, string $color): JSONResponse {
$this->validateDisplayName($displayName);
$this->validateColor($color);
- $tag = $this->tagMapper->getTagForUser($id, $this->currentUserId);
-
- $tag->setDisplayName($displayName);
- $tag->setColor($color);
-
- $tag = $this->tagMapper->update($tag);
+ $tag = $this->mailManager->updateTag($id, $displayName, $color, $this->currentUserId);
return new JSONResponse($tag);
}
diff --git a/lib/Service/MailManager.php b/lib/Service/MailManager.php
index 29030a000..dd283f9f1 100644
--- a/lib/Service/MailManager.php
+++ b/lib/Service/MailManager.php
@@ -23,35 +23,35 @@ declare(strict_types=1);
namespace OCA\Mail\Service;
-use OCA\Mail\Db\Tag;
-use OCA\Mail\Folder;
-use OCA\Mail\Account;
use Horde_Imap_Client;
-use function array_map;
+use Horde_Imap_Client_Exception;
+use Horde_Imap_Client_Exception_NoSupportExtension;
+use Horde_Imap_Client_Socket;
+use OCA\Mail\Account;
+use OCA\Mail\Contracts\IMailManager;
use OCA\Mail\Db\Mailbox;
+use OCA\Mail\Db\MailboxMapper;
use OCA\Mail\Db\Message;
-use function array_values;
+use OCA\Mail\Db\MessageMapper as DbMessageMapper;
+use OCA\Mail\Db\Tag;
use OCA\Mail\Db\TagMapper;
-use Psr\Log\LoggerInterface;
-use Horde_Imap_Client_Socket;
-use OCA\Mail\Db\MailboxMapper;
-use OCA\Mail\IMAP\MailboxSync;
-use OCA\Mail\IMAP\FolderMapper;
-use OCA\Mail\Model\IMAPMessage;
-use Horde_Imap_Client_Exception;
-use OCA\Mail\Contracts\IMailManager;
-use OCA\Mail\IMAP\IMAPClientFactory;
-use OCA\Mail\Exception\ClientException;
+use OCA\Mail\Events\BeforeMessageDeletedEvent;
use OCA\Mail\Events\MessageDeletedEvent;
use OCA\Mail\Events\MessageFlaggedEvent;
+use OCA\Mail\Exception\ClientException;
use OCA\Mail\Exception\ServiceException;
-use OCP\EventDispatcher\IEventDispatcher;
-use OCA\Mail\Events\BeforeMessageDeletedEvent;
-use OCP\AppFramework\Db\DoesNotExistException;
-use OCA\Mail\Db\MessageMapper as DbMessageMapper;
-use Horde_Imap_Client_Exception_NoSupportExtension;
use OCA\Mail\Exception\TrashMailboxNotSetException;
+use OCA\Mail\Folder;
+use OCA\Mail\IMAP\FolderMapper;
+use OCA\Mail\IMAP\IMAPClientFactory;
+use OCA\Mail\IMAP\MailboxSync;
use OCA\Mail\IMAP\MessageMapper as ImapMessageMapper;
+use OCA\Mail\Model\IMAPMessage;
+use OCP\AppFramework\Db\DoesNotExistException;
+use OCP\EventDispatcher\IEventDispatcher;
+use Psr\Log\LoggerInterface;
+use function array_map;
+use function array_values;
class MailManager implements IMailManager {
@@ -559,17 +559,16 @@ class MailManager implements IMailManager {
* @param string $imapLabel
* @param string $userId
* @return Tag
- * @throws DoesNotExistException
+ * @throws ClientException
*/
public function getTagByImapLabel(string $imapLabel, string $userId): Tag {
try {
return $this->tagMapper->getTagByImapLabel($imapLabel, $userId);
} catch (DoesNotExistException $e) {
- throw new ClientException('Unknow Tag', (int)$e->getCode(), $e);
+ throw new ClientException('Unknown Tag', 0, $e);
}
}
-
/**
* Filter out IMAP flags that aren't supported by the client server
*
@@ -612,4 +611,42 @@ class MailManager implements IMailManager {
}
return (is_array($capabilities) === true && array_key_exists('permflags', $capabilities) === true && in_array("\*", $capabilities['permflags'], true) === true);
}
+
+ public function createTag(string $displayName, string $color, string $userId): Tag {
+ $imapLabel = str_replace(' ', '_', $displayName);
+ /** @var string|false $imapLabel */
+ $imapLabel = mb_convert_encoding($imapLabel, 'UTF7-IMAP', 'UTF-8');
+ if ($imapLabel === false) {
+ throw new ClientException('Error converting display name to UTF7-IMAP ', 0);
+ }
+ $imapLabel = mb_strcut($imapLabel, 0, 64);
+
+ try {
+ return $this->getTagByImapLabel($imapLabel, $userId);
+ } catch (ClientException $e) {
+ // it's valid that a tag does not exist.
+ }
+
+ $tag = new Tag();
+ $tag->setUserId($userId);
+ $tag->setDisplayName($displayName);
+ $tag->setImapLabel($imapLabel);
+ $tag->setColor($color);
+ $tag->setIsDefaultTag(false);
+
+ return $this->tagMapper->insert($tag);
+ }
+
+ public function updateTag(int $id, string $displayName, string $color, string $userId): Tag {
+ try {
+ $tag = $this->tagMapper->getTagForUser($id, $userId);
+ } catch (DoesNotExistException $e) {
+ throw new ClientException('Tag not found', 0, $e);
+ }
+
+ $tag->setDisplayName($displayName);
+ $tag->setColor($color);
+
+ return $this->tagMapper->update($tag);
+ }
}