]> git.mxchange.org Git - friendica.git/blob - src/Module/Api/Twitter/DirectMessagesEndpoint.php
Merge remote-tracking branch 'upstream/2021.12-rc' into api-direct-messages
[friendica.git] / src / Module / Api / Twitter / DirectMessagesEndpoint.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\Module\Api\Twitter;
23
24 use Friendica\Database\DBA;
25 use Friendica\DI;
26 use Friendica\Model\Contact;
27 use Friendica\Module\BaseApi;
28
29 abstract class DirectMessagesEndpoint extends BaseApi
30 {
31         /**
32          * Handles a direct messages endpoint with the given condition
33          *
34          * @param array $request
35          * @param int   $uid
36          * @param array $condition
37          */
38         protected function getMessages(array $request, int $uid, array $condition)
39         {
40                 // params
41                 $count    = filter_var($request['count'] ?? 20,                FILTER_VALIDATE_INT, ['options' => ['max_range' => 100]]);
42                 $page     = filter_var($request['page'] ?? 1,                  FILTER_VALIDATE_INT, ['options' => ['min_range' => 1]]);
43                 $since_id = filter_var($request['since_id'] ?? 0,              FILTER_VALIDATE_INT);
44                 $max_id   = filter_var($request['max_id'] ?? 0,                FILTER_VALIDATE_INT);
45                 $min_id   = filter_var($request['min_id'] ?? 0,                FILTER_VALIDATE_INT);
46                 $verbose  = filter_var($request['friendica_verbose'] ?? false, FILTER_VALIDATE_BOOLEAN);
47
48                 // pagination
49                 $start = max(0, ($page - 1) * $count);
50
51                 $params = ['order' => ['id' => true], 'limit' => [$start, $count]];
52
53                 if (!empty($max_id)) {
54                         $condition = DBA::mergeConditions($condition, ["`id` < ?", $max_id]);
55                 }
56
57                 if (!empty($since_id)) {
58                         $condition = DBA::mergeConditions($condition, ["`id` > ?", $since_id]);
59                 }
60
61                 if (!empty($min_id)) {
62                         $condition = DBA::mergeConditions($condition, ["`id` > ?", $min_id]);
63
64                         $params['order'] = ['id'];
65                 }
66
67                 $cid = BaseApi::getContactIDForSearchterm($_REQUEST['screen_name'] ?? '', $_REQUEST['profileurl'] ?? '', $_REQUEST['user_id'] ?? 0, 0);
68                 if (!empty($cid)) {
69                         $cdata = Contact::getPublicAndUserContactID($cid, $uid);
70                         if (!empty($cdata['user'])) {
71                                 $condition = DBA::mergeConditions($condition, ["`contact-id` = ?", $cdata['user']]);
72                         }
73                 }
74
75                 $condition = DBA::mergeConditions($condition, ["`uid` = ?", $uid]);
76
77                 $mails = DBA::selectToArray('mail', ['id'], $condition, $params);
78                 if ($verbose && !DBA::isResult($mails)) {
79                         $answer = ['result' => 'error', 'message' => 'no mails available'];
80                         $this->response->exit('direct-messages', ['direct_message' => $answer], $this->parameters['extension'] ?? null);
81                         exit;
82                 }
83
84                 $ids = array_column($mails, 'id');
85
86                 if (!empty($min_id)) {
87                         $ids = array_reverse($ids);
88                 }
89
90                 $ret = [];
91                 foreach ($ids as $id) {
92                         $ret[] = DI::twitterDirectMessage()->createFromMailId($id, $uid, $request['getText'] ?? '');
93                 }
94
95                 self::setLinkHeader();
96
97                 $this->response->exit('direct-messages', ['direct_message' => $ret], $this->parameters['extension'] ?? null, Contact::getPublicIdByUserId($uid));
98         }
99 }