]> git.mxchange.org Git - friendica.git/blobdiff - src/Contact/FriendSuggest/Repository/FriendSuggest.php
Add previous exception to unexpected worker exception logging
[friendica.git] / src / Contact / FriendSuggest / Repository / FriendSuggest.php
index 77abd73537b6759ff1b967a4d4bb9b2442d9e635..7423b11508dddaccecc575bc34e2d61d945d5a45 100644 (file)
@@ -1,4 +1,23 @@
 <?php
+/**
+ * @copyright Copyright (C) 2010-2022, the Friendica project
+ *
+ * @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\Contact\FriendSuggest\Repository;
 
@@ -10,6 +29,7 @@ use Friendica\Contact\FriendSuggest\Exception\FriendSuggestPersistenceException;
 use Friendica\Contact\FriendSuggest\Factory;
 use Friendica\Database\Database;
 use Friendica\Network\HTTPException\NotFoundException;
+use Friendica\Util\DateTimeFormat;
 use Psr\Log\LoggerInterface;
 
 class FriendSuggest extends BaseRepository
@@ -34,6 +54,7 @@ class FriendSuggest extends BaseRepository
                        'request' => $fsuggest->request,
                        'photo'   => $fsuggest->photo,
                        'note'    => $fsuggest->note,
+                       'created' => $fsuggest->created->format(DateTimeFormat::MYSQL),
                ];
        }
 
@@ -60,7 +81,7 @@ class FriendSuggest extends BaseRepository
         */
        private function select(array $condition, array $params = []): Collection\FriendSuggests
        {
-               return parent::_select($condition, $params);
+               return new Collection\FriendSuggests(parent::_select($condition, $params)->getArrayCopy());
        }
 
        /**
@@ -109,7 +130,7 @@ class FriendSuggest extends BaseRepository
 
                        if ($fsuggest->id) {
                                $this->db->update(self::$table_name, $fields, ['id' => $fsuggest->id]);
-                               return $this->factory->createFromTableRow($fields);
+                               return $this->selectOneById($fsuggest->id);
                        } else {
                                $this->db->insert(self::$table_name, $fields);
                                return $this->selectOneById($this->db->lastInsertId());
@@ -120,7 +141,7 @@ class FriendSuggest extends BaseRepository
        }
 
        /**
-        * @param Collection\FriendSuggest $fsuggests
+        * @param Collection\FriendSuggests $fsuggests
         *
         * @return bool
         *