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