X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=classes%2FMessage.php;h=353dc01f99e0b3cb6265d260213e8bed2285f0f7;hb=8ad933c86f8593e61eea9692f863f9adaa6820b7;hp=979e6e87ccbdcb4d79de3c0fec07a19a239a6812;hpb=a535ccdc4eba320ad88dc531329ae63c7f09c258;p=quix0rs-gnu-social.git diff --git a/classes/Message.php b/classes/Message.php index 979e6e87cc..353dc01f99 100644 --- a/classes/Message.php +++ b/classes/Message.php @@ -38,6 +38,12 @@ class Message extends Memcached_DataObject } static function saveNew($from, $to, $content, $source) { + $sender = Profile::staticGet('id', $from); + + if (!$sender->hasRight(Right::NEWMESSAGE)) { + // TRANS: Client exception thrown when a user tries to send a direct message while being banned from sending them. + throw new ClientException(_('You are banned from sending direct messages.')); + } $msg = new Message(); @@ -52,6 +58,7 @@ class Message extends Memcached_DataObject if (!$result) { common_log_db_error($msg, 'INSERT', __FILE__); + // TRANS: Message given when a message could not be stored on the server. return _('Could not insert message.'); } @@ -62,6 +69,7 @@ class Message extends Memcached_DataObject if (!$result) { common_log_db_error($msg, 'UPDATE', __FILE__); + // TRANS: Message given when a message could not be updated on the server. return _('Could not update message with new URI.'); } @@ -83,4 +91,12 @@ class Message extends Memcached_DataObject $contentlimit = self::maxContent(); return ($contentlimit > 0 && !empty($content) && (mb_strlen($content) > $contentlimit)); } + + function notify() + { + $from = User::staticGet('id', $this->from_profile); + $to = User::staticGet('id', $this->to_profile); + + mail_notify_message($this, $from, $to); + } }