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>2017-09-27 15:49:32 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2017-10-23 10:28:51 +0300
commit19baa66d246b24d5cc360e60d81042984b77c58c (patch)
treef6ee2b361fad7be54aac8a66e40ef75caba5d183 /lib/Address.php
parent0ce81ace3eeee9a87f6dee6ae39009c26b8659d2 (diff)
Cleanup address handling
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/Address.php')
-rw-r--r--lib/Address.php93
1 files changed, 93 insertions, 0 deletions
diff --git a/lib/Address.php b/lib/Address.php
new file mode 100644
index 000000000..d870cbf67
--- /dev/null
+++ b/lib/Address.php
@@ -0,0 +1,93 @@
+<?php
+
+/**
+ * @copyright 2017 Christoph Wurst <christoph@winzerhof-wurst.at>
+ *
+ * @author 2017 Christoph Wurst <christoph@winzerhof-wurst.at>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * 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
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+namespace OCA\Mail;
+
+use Horde_Mail_Rfc822_Address;
+use JsonSerializable;
+use SGH\Comparable\Comparable;
+
+class Address implements JsonSerializable {
+
+ /** @var Horde_Mail_Rfc822_Address */
+ private $wrapped;
+
+ /**
+ * @param string $label
+ * @param string $email
+ */
+ public function __construct($label, $email) {
+ $this->wrapped = new Horde_Mail_Rfc822_Address($email);
+ // If no label is set we use the email
+ if ($label !== $email && !is_null($label)) {
+ $this->wrapped->personal = $label;
+ }
+ }
+
+ /**
+ * @return string
+ */
+ public function getLabel() {
+ $personal = $this->wrapped->personal;
+ if (is_null($personal)) {
+ // Fallback
+ return $this->getEmail();
+ }
+ return $personal;
+ }
+
+ /**
+ * @return string
+ */
+ public function getEmail() {
+ return $this->wrapped->bare_address;
+ }
+
+ /**
+ * @return Horde_Mail_Rfc822_Address
+ */
+ public function toHorde() {
+ return $this->wrapped;
+ }
+
+ /**
+ * @return array
+ */
+ public function jsonSerialize() {
+ return [
+ 'label' => $this->getLabel(),
+ 'email' => $this->getEmail(),
+ ];
+ }
+
+ /**
+ * @param Address $object
+ * @return boolean
+ */
+ public function equals($object) {
+ return $this->getEmail() === $object->getEmail()
+ && $this->getLabel() === $object->getLabel();
+ }
+
+}