3 * @copyright Copyright (C) 2020, Friendica
5 * @license GNU AGPL version 3 or any later version
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 namespace Friendica\Model;
24 use Friendica\BaseModel;
25 use Friendica\Content\Text\BBCode;
26 use Friendica\Database\Database;
27 use Friendica\Network\HTTPException\InternalServerErrorException;
28 use Psr\Log\LoggerInterface;
31 * Model for an entry in the notify table
33 * @property string hash
34 * @property integer type
35 * @property string name Full name of the contact subject
36 * @property string url Profile page URL of the contact subject
37 * @property string photo Profile photo URL of the contact subject
38 * @property string date YYYY-MM-DD hh:mm:ss local server time
39 * @property string msg
40 * @property integer uid Owner User Id
41 * @property string link Notification URL
42 * @property integer iid Item Id
43 * @property integer parent Parent Item Id
44 * @property boolean seen Whether the notification was read or not.
45 * @property string verb Verb URL (@see http://activitystrea.ms)
46 * @property string otype Subject type (`item`, `intro` or `mail`)
48 * @property-read string name_cache Full name of the contact subject
49 * @property-read string msg_cache Plaintext version of the notification text with a placeholder (`{0}`) for the subject contact's name.
51 class Notify extends BaseModel
54 /** @var \Friendica\Repository\Notify */
57 public function __construct(Database $dba, LoggerInterface $logger, \Friendica\Repository\Notify $repo, array $data = [])
59 parent::__construct($dba, $logger, $data);
63 $this->setNameCache();
68 * Sets the pre-formatted name (caching)
70 private function setNameCache()
73 $this->name_cache = strip_tags(BBCode::convert($this->source_name ?? ''));
74 } catch (InternalServerErrorException $e) {
79 * Sets the pre-formatted msg (caching)
81 private function setMsgCache()
84 $this->msg_cache = self::formatMessage($this->name_cache, strip_tags(BBCode::convert($this->msg)));
85 } catch (InternalServerErrorException $e) {
89 public function __set($name, $value)
91 parent::__set($name, $value);
97 if ($name == 'source_name') {
98 $this->setNameCache();
103 * Formats a notification message with the notification author
105 * Replace the name with {0} but ensure to make that only once. The {0} is used
106 * later and prints the name in bold.
108 * @param string $name
109 * @param string $message
111 * @return string Formatted message
113 public static function formatMessage($name, $message)
116 $pos = strpos($message, $name);
121 if ($pos !== false) {
122 $message = substr_replace($message, '{0}', $pos, strlen($name));