]> git.mxchange.org Git - friendica.git/blobdiff - src/Repository/Notify.php
Merge pull request #8272 from MrPetovan/bug/8254-regex-url-img
[friendica.git] / src / Repository / Notify.php
index 9552eddb9ae5ac6bbd072ce4f79f4c59ad47bc36..d8887affd50fb07826d0e48c87cf89a6890df566 100644 (file)
@@ -1,4 +1,23 @@
 <?php
+/**
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @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 <https://www.gnu.org/licenses/>.
+ *
+ */
 
 namespace Friendica\Repository;
 
@@ -7,6 +26,7 @@ use Friendica\BaseRepository;
 use Friendica\Core\Hook;
 use Friendica\Model;
 use Friendica\Collection;
+use Friendica\Network\HTTPException\InternalServerErrorException;
 use Friendica\Network\HTTPException\NotFoundException;
 use Friendica\Util\DateTimeFormat;
 
@@ -37,8 +57,6 @@ class Notify extends BaseRepository
        {
                $params['order'] = $params['order'] ?? ['date' => 'DESC'];
 
-               $condition = array_merge($condition, ['uid' => local_user()]);
-
                return parent::select($condition, $params);
        }
 
@@ -54,14 +72,28 @@ class Notify extends BaseRepository
        }
 
        /**
-        * {@inheritDoc}
+        * Set seen state of notifications of the local_user()
+        *
+        * @param bool         $seen   optional true or false. default true
+        * @param Model\Notify $notify optional a notify, which should be set seen (including his parents)
         *
         * @return bool true on success, false on error
+        *
         * @throws Exception
         */
-       public function setAllSeen(bool $seen = true)
+       public function setSeen(bool $seen = true, Model\Notify $notify = null)
        {
-               return $this->dba->update('notify', ['seen' => $seen], ['uid' => local_user()]);
+               if (empty($notify)) {
+                       $conditions = ['uid' => local_user()];
+               } else {
+                       $conditions = ['(`link` = ? OR (`parent` != 0 AND `parent` = ? AND `otype` = ?)) AND `uid` = ?',
+                               $notify->link,
+                               $notify->parent,
+                               $notify->otype,
+                               local_user()];
+               }
+
+               return $this->dba->update('notify', ['seen' => $seen], $conditions);
        }
 
        /**
@@ -69,17 +101,17 @@ class Notify extends BaseRepository
         *
         * @return Model\Notify|false
         *
-        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        * @throws InternalServerErrorException
         * @throws Exception
         */
        public function insert(array $fields)
        {
-               $fields['date']  = DateTimeFormat::utcNow();
+               $fields['date'] = DateTimeFormat::utcNow();
 
                Hook::callAll('enotify_store', $fields);
 
                if (empty($fields)) {
-                       $this->logger->debug('Abort adding notification entry', ['fields' => $fields]);
+                       $this->logger->debug('Abort adding notification entry');
                        return false;
                }