]> git.mxchange.org Git - friendica.git/blob - src/Factory/Api/Mastodon/Conversation.php
Merge pull request #10350 from annando/api-notifications
[friendica.git] / src / Factory / Api / Mastodon / Conversation.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
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.
11  *
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.
16  *
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/>.
19  *
20  */
21
22 namespace Friendica\Factory\Api\Mastodon;
23
24 use Friendica\BaseFactory;
25 use Friendica\Database\DBA;
26 use Friendica\DI;
27 use Friendica\Model\Contact;
28
29 class Conversation extends BaseFactory
30 {
31         public function CreateFromConvId(int $id)
32         {
33                 $accounts    = [];
34                 $unread      = false;
35                 $last_status = null;
36
37                 $ids = [];
38
39                 $mails = DBA::select('mail', ['id', 'from-url', 'uid', 'seen'], ['convid' => $id], ['order' => ['id' => true]]);
40                 while ($mail = DBA::fetch($mails)) {
41                         if (!$mail['seen']) {
42                                 $unread = true;
43                         }
44
45                         $id = Contact::getIdForURL($mail['from-url'], 0, false);
46                         if (in_array($id, $ids)) {
47                                 continue;
48                         }
49
50                         $ids[] = $id;
51
52                         if (empty($last_status)) {
53                                 $last_status = DI::mstdnStatus()->createFromMailId($mail['id']);
54                         }
55
56                         $accounts[] = DI::mstdnAccount()->createFromContactId($id, 0);
57                 }
58
59                 return new \Friendica\Object\Api\Mastodon\Conversation($id, $accounts, $unread, $last_status);
60         }
61 }