]> git.mxchange.org Git - friendica.git/blob - include/api.php
fe87799cc8ac18a89090511f8ad100783abbe7a5
[friendica.git] / include / api.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  * Friendica implementation of statusnet/twitter API
21  *
22  * @file include/api.php
23  * @todo Automatically detect if incoming data is HTML or BBCode
24  */
25
26 use Friendica\App;
27 use Friendica\Content\ContactSelector;
28 use Friendica\Content\Text\BBCode;
29 use Friendica\Content\Text\HTML;
30 use Friendica\Core\Hook;
31 use Friendica\Core\Logger;
32 use Friendica\Core\Protocol;
33 use Friendica\Core\Session;
34 use Friendica\Core\System;
35 use Friendica\Core\Worker;
36 use Friendica\Database\DBA;
37 use Friendica\DI;
38 use Friendica\Model\Contact;
39 use Friendica\Model\Group;
40 use Friendica\Model\Item;
41 use Friendica\Model\Mail;
42 use Friendica\Model\Notification;
43 use Friendica\Model\Photo;
44 use Friendica\Model\Post;
45 use Friendica\Model\Profile;
46 use Friendica\Model\User;
47 use Friendica\Model\Verb;
48 use Friendica\Network\HTTPException;
49 use Friendica\Network\HTTPException\BadRequestException;
50 use Friendica\Network\HTTPException\ExpectationFailedException;
51 use Friendica\Network\HTTPException\ForbiddenException;
52 use Friendica\Network\HTTPException\InternalServerErrorException;
53 use Friendica\Network\HTTPException\MethodNotAllowedException;
54 use Friendica\Network\HTTPException\NotFoundException;
55 use Friendica\Network\HTTPException\TooManyRequestsException;
56 use Friendica\Network\HTTPException\UnauthorizedException;
57 use Friendica\Object\Image;
58 use Friendica\Protocol\Activity;
59 use Friendica\Protocol\Diaspora;
60 use Friendica\Security\OAuth;
61 use Friendica\Util\DateTimeFormat;
62 use Friendica\Util\Images;
63 use Friendica\Util\Network;
64 use Friendica\Util\Strings;
65 use Friendica\Util\XML;
66
67 require_once __DIR__ . '/../mod/item.php';
68 require_once __DIR__ . '/../mod/wall_upload.php';
69
70 define('API_METHOD_ANY', '*');
71 define('API_METHOD_GET', 'GET');
72 define('API_METHOD_POST', 'POST,PUT');
73 define('API_METHOD_DELETE', 'POST,DELETE');
74
75 define('API_LOG_PREFIX', 'API {action} - ');
76
77 $API = [];
78 $called_api = [];
79
80 /**
81  * Auth API user
82  *
83  * It is not sufficient to use local_user() to check whether someone is allowed to use the API,
84  * because this will open CSRF holes (just embed an image with src=friendicasite.com/api/statuses/update?status=CSRF
85  * into a page, and visitors will post something without noticing it).
86  */
87 function api_user()
88 {
89         $user = OAuth::getCurrentUserID();
90         if (!empty($user)) {
91                 return $user;
92         }
93
94         if (!empty($_SESSION['allow_api'])) {
95                 return local_user();
96         }
97
98         return false;
99 }
100
101 /**
102  * Get source name from API client
103  *
104  * Clients can send 'source' parameter to be show in post metadata
105  * as "sent via <source>".
106  * Some clients doesn't send a source param, we support ones we know
107  * (only Twidere, atm)
108  *
109  * @return string
110  *        Client source name, default to "api" if unset/unknown
111  * @throws Exception
112  */
113 function api_source()
114 {
115         if (requestdata('source')) {
116                 return requestdata('source');
117         }
118
119         // Support for known clients that doesn't send a source name
120         if (!empty($_SERVER['HTTP_USER_AGENT'])) {
121                 if(strpos($_SERVER['HTTP_USER_AGENT'], "Twidere") !== false) {
122                         return "Twidere";
123                 }
124
125                 Logger::info(API_LOG_PREFIX . 'Unrecognized user-agent', ['module' => 'api', 'action' => 'source', 'http_user_agent' => $_SERVER['HTTP_USER_AGENT']]);
126         } else {
127                 Logger::info(API_LOG_PREFIX . 'Empty user-agent', ['module' => 'api', 'action' => 'source']);
128         }
129
130         return "api";
131 }
132
133 /**
134  * Format date for API
135  *
136  * @param string $str Source date, as UTC
137  * @return string Date in UTC formatted as "D M d H:i:s +0000 Y"
138  * @throws Exception
139  */
140 function api_date($str)
141 {
142         // Wed May 23 06:01:13 +0000 2007
143         return DateTimeFormat::utc($str, "D M d H:i:s +0000 Y");
144 }
145
146 /**
147  * Register a function to be the endpoint for defined API path.
148  *
149  * @param string $path   API URL path, relative to DI::baseUrl()
150  * @param string $func   Function name to call on path request
151  * @param bool   $auth   API need logged user
152  * @param string $method HTTP method reqiured to call this endpoint.
153  *                       One of API_METHOD_ANY, API_METHOD_GET, API_METHOD_POST.
154  *                       Default to API_METHOD_ANY
155  */
156 function api_register_func($path, $func, $auth = false, $method = API_METHOD_ANY)
157 {
158         global $API;
159
160         $API[$path] = [
161                 'func'   => $func,
162                 'auth'   => $auth,
163                 'method' => $method,
164         ];
165
166         // Workaround for hotot
167         $path = str_replace("api/", "api/1.1/", $path);
168
169         $API[$path] = [
170                 'func'   => $func,
171                 'auth'   => $auth,
172                 'method' => $method,
173         ];
174 }
175
176 /**
177  * Log in user via Simple HTTP Auth.
178  * Simple Auth allow username in form of <pre>user@server</pre>, ignoring server part
179  *
180  * @param App $a App
181  * @throws ForbiddenException
182  * @throws InternalServerErrorException
183  * @throws UnauthorizedException
184  * @hook  'authenticate'
185  *               array $addon_auth
186  *               'username' => username from login form
187  *               'password' => password from login form
188  *               'authenticated' => return status,
189  *               'user_record' => return authenticated user record
190  */
191 function api_login(App $a)
192 {
193         $_SESSION["allow_api"] = false;
194
195         // workaround for HTTP-auth in CGI mode
196         if (!empty($_SERVER['REDIRECT_REMOTE_USER'])) {
197                 $userpass = base64_decode(substr($_SERVER["REDIRECT_REMOTE_USER"], 6));
198                 if (strlen($userpass)) {
199                         list($name, $password) = explode(':', $userpass);
200                         $_SERVER['PHP_AUTH_USER'] = $name;
201                         $_SERVER['PHP_AUTH_PW'] = $password;
202                 }
203         }
204
205         if (empty($_SERVER['PHP_AUTH_USER'])) {
206                 Logger::debug(API_LOG_PREFIX . 'failed', ['module' => 'api', 'action' => 'login', 'parameters' => $_SERVER]);
207                 header('WWW-Authenticate: Basic realm="Friendica"');
208                 throw new UnauthorizedException("This API requires login");
209         }
210
211         $user = $_SERVER['PHP_AUTH_USER'] ?? '';
212         $password = $_SERVER['PHP_AUTH_PW'] ?? '';
213
214         // allow "user@server" login (but ignore 'server' part)
215         $at = strstr($user, "@", true);
216         if ($at) {
217                 $user = $at;
218         }
219
220         // next code from mod/auth.php. needs better solution
221         $record = null;
222
223         $addon_auth = [
224                 'username' => trim($user),
225                 'password' => trim($password),
226                 'authenticated' => 0,
227                 'user_record' => null,
228         ];
229
230         /*
231         * An addon indicates successful login by setting 'authenticated' to non-zero value and returning a user record
232         * Addons should never set 'authenticated' except to indicate success - as hooks may be chained
233         * and later addons should not interfere with an earlier one that succeeded.
234         */
235         Hook::callAll('authenticate', $addon_auth);
236
237         if ($addon_auth['authenticated'] && !empty($addon_auth['user_record'])) {
238                 $record = $addon_auth['user_record'];
239         } else {
240                 $user_id = User::authenticate(trim($user), trim($password), true);
241                 if ($user_id !== false) {
242                         $record = DBA::selectFirst('user', [], ['uid' => $user_id]);
243                 }
244         }
245
246         if (!DBA::isResult($record)) {
247                 Logger::debug(API_LOG_PREFIX . 'failed', ['module' => 'api', 'action' => 'login', 'parameters' => $_SERVER]);
248                 header('WWW-Authenticate: Basic realm="Friendica"');
249                 //header('HTTP/1.0 401 Unauthorized');
250                 //die('This api requires login');
251                 throw new UnauthorizedException("This API requires login");
252         }
253
254         // Don't refresh the login date more often than twice a day to spare database writes
255         $login_refresh = strcmp(DateTimeFormat::utc('now - 12 hours'), $record['login_date']) > 0;
256
257         DI::auth()->setForUser($a, $record, false, false, $login_refresh);
258
259         $_SESSION["allow_api"] = true;
260
261         Hook::callAll('logged_in', $record);
262 }
263
264 /**
265  * Check HTTP method of called API
266  *
267  * API endpoints can define which HTTP method to accept when called.
268  * This function check the current HTTP method agains endpoint
269  * registered method.
270  *
271  * @param string $method Required methods, uppercase, separated by comma
272  * @return bool
273  */
274 function api_check_method($method)
275 {
276         if ($method == "*") {
277                 return true;
278         }
279         return (stripos($method, $_SERVER['REQUEST_METHOD'] ?? 'GET') !== false);
280 }
281
282 /**
283  * Main API entry point
284  *
285  * Authenticate user, call registered API function, set HTTP headers
286  *
287  * @param App $a App
288  * @param App\Arguments $args The app arguments (optional, will retrieved by the DI-Container in case of missing)
289  * @return string|array API call result
290  * @throws Exception
291  */
292 function api_call(App $a, App\Arguments $args = null)
293 {
294         global $API, $called_api;
295
296         if ($args == null) {
297                 $args = DI::args();
298         }
299
300         $type = "json";
301         if (strpos($args->getCommand(), ".xml") > 0) {
302                 $type = "xml";
303         }
304         if (strpos($args->getCommand(), ".json") > 0) {
305                 $type = "json";
306         }
307         if (strpos($args->getCommand(), ".rss") > 0) {
308                 $type = "rss";
309         }
310         if (strpos($args->getCommand(), ".atom") > 0) {
311                 $type = "atom";
312         }
313
314         try {
315                 foreach ($API as $p => $info) {
316                         if (strpos($args->getCommand(), $p) === 0) {
317                                 if (!api_check_method($info['method'])) {
318                                         throw new MethodNotAllowedException();
319                                 }
320
321                                 $called_api = explode("/", $p);
322
323                                 if (!empty($info['auth']) && api_user() === false) {
324                                         api_login($a);
325                                         Logger::info(API_LOG_PREFIX . 'nickname {nickname}', ['module' => 'api', 'action' => 'call', 'nickname' => $a->getLoggedInUserNickname()]);
326                                 }
327
328                                 Logger::debug(API_LOG_PREFIX . 'parameters', ['module' => 'api', 'action' => 'call', 'parameters' => $_REQUEST]);
329
330                                 $stamp =  microtime(true);
331                                 $return = call_user_func($info['func'], $type);
332                                 $duration = floatval(microtime(true) - $stamp);
333
334                                 Logger::info(API_LOG_PREFIX . 'duration {duration}', ['module' => 'api', 'action' => 'call', 'duration' => round($duration, 2)]);
335
336                                 DI::profiler()->saveLog(DI::logger(), API_LOG_PREFIX . 'performance');
337
338                                 if (false === $return) {
339                                         /*
340                                                 * api function returned false withour throw an
341                                                 * exception. This should not happend, throw a 500
342                                                 */
343                                         throw new InternalServerErrorException();
344                                 }
345
346                                 switch ($type) {
347                                         case "xml":
348                                                 header("Content-Type: text/xml");
349                                                 break;
350                                         case "json":
351                                                 header("Content-Type: application/json");
352                                                 if (!empty($return)) {
353                                                         $json = json_encode(end($return));
354                                                         if (!empty($_GET['callback'])) {
355                                                                 $json = $_GET['callback'] . "(" . $json . ")";
356                                                         }
357                                                         $return = $json;
358                                                 }
359                                                 break;
360                                         case "rss":
361                                                 header("Content-Type: application/rss+xml");
362                                                 $return  = '<?xml version="1.0" encoding="UTF-8"?>' . "\n" . $return;
363                                                 break;
364                                         case "atom":
365                                                 header("Content-Type: application/atom+xml");
366                                                 $return = '<?xml version="1.0" encoding="UTF-8"?>' . "\n" . $return;
367                                                 break;
368                                 }
369                                 return $return;
370                         }
371                 }
372
373                 Logger::warning(API_LOG_PREFIX . 'not implemented', ['module' => 'api', 'action' => 'call', 'query' => DI::args()->getQueryString()]);
374                 throw new NotFoundException();
375         } catch (HTTPException $e) {
376                 header("HTTP/1.1 {$e->getCode()} {$e->httpdesc}");
377                 return api_error($type, $e, $args);
378         }
379 }
380
381 /**
382  * Format API error string
383  *
384  * @param string $type Return type (xml, json, rss, as)
385  * @param object $e    HTTPException Error object
386  * @param App\Arguments $args The App arguments
387  * @return string|array error message formatted as $type
388  */
389 function api_error($type, $e, App\Arguments $args)
390 {
391         $error = ($e->getMessage() !== "" ? $e->getMessage() : $e->httpdesc);
392         /// @TODO:  https://dev.twitter.com/overview/api/response-codes
393
394         $error = ["error" => $error,
395                         "code" => $e->getCode() . " " . $e->httpdesc,
396                         "request" => $args->getQueryString()];
397
398         $return = api_format_data('status', $type, ['status' => $error]);
399
400         switch ($type) {
401                 case "xml":
402                         header("Content-Type: text/xml");
403                         break;
404                 case "json":
405                         header("Content-Type: application/json");
406                         $return = json_encode($return);
407                         break;
408                 case "rss":
409                         header("Content-Type: application/rss+xml");
410                         break;
411                 case "atom":
412                         header("Content-Type: application/atom+xml");
413                         break;
414         }
415
416         return $return;
417 }
418
419 /**
420  * Set values for RSS template
421  *
422  * @param App   $a
423  * @param array $arr       Array to be passed to template
424  * @param array $user_info User info
425  * @return array
426  * @throws BadRequestException
427  * @throws ImagickException
428  * @throws InternalServerErrorException
429  * @throws UnauthorizedException
430  * @todo  find proper type-hints
431  */
432 function api_rss_extra(App $a, $arr, $user_info)
433 {
434         if (is_null($user_info)) {
435                 $user_info = api_get_user($a);
436         }
437
438         $arr['$user'] = $user_info;
439         $arr['$rss'] = [
440                 'alternate'    => $user_info['url'],
441                 'self'         => DI::baseUrl() . "/" . DI::args()->getQueryString(),
442                 'base'         => DI::baseUrl(),
443                 'updated'      => api_date(null),
444                 'atom_updated' => DateTimeFormat::utcNow(DateTimeFormat::ATOM),
445                 'language'     => $user_info['lang'],
446                 'logo'         => DI::baseUrl() . "/images/friendica-32.png",
447         ];
448
449         return $arr;
450 }
451
452
453 /**
454  * Unique contact to contact url.
455  *
456  * @param int $id Contact id
457  * @return bool|string
458  *                Contact url or False if contact id is unknown
459  * @throws Exception
460  */
461 function api_unique_id_to_nurl($id)
462 {
463         $r = DBA::selectFirst('contact', ['nurl'], ['id' => $id]);
464
465         if (DBA::isResult($r)) {
466                 return $r["nurl"];
467         } else {
468                 return false;
469         }
470 }
471
472 /**
473  * Get user info array.
474  *
475  * @param App        $a          App
476  * @param int|string $contact_id Contact ID or URL
477  * @return array|bool
478  * @throws BadRequestException
479  * @throws ImagickException
480  * @throws InternalServerErrorException
481  * @throws UnauthorizedException
482  */
483 function api_get_user(App $a, $contact_id = null)
484 {
485         global $called_api;
486
487         $user = null;
488         $extra_query = "";
489         $url = "";
490
491         Logger::info(API_LOG_PREFIX . 'Fetching data for user {user}', ['module' => 'api', 'action' => 'get_user', 'user' => $contact_id]);
492
493         // Searching for contact URL
494         if (!is_null($contact_id) && (intval($contact_id) == 0)) {
495                 $user = DBA::escape(Strings::normaliseLink($contact_id));
496                 $url = $user;
497                 $extra_query = "AND `contact`.`nurl` = '%s' ";
498                 if (api_user() !== false) {
499                         $extra_query .= "AND `contact`.`uid`=" . intval(api_user());
500                 }
501         }
502
503         // Searching for contact id with uid = 0
504         if (!is_null($contact_id) && (intval($contact_id) != 0)) {
505                 $user = DBA::escape(api_unique_id_to_nurl(intval($contact_id)));
506
507                 if ($user == "") {
508                         throw new BadRequestException("User ID ".$contact_id." not found.");
509                 }
510
511                 $url = $user;
512                 $extra_query = "AND `contact`.`nurl` = '%s' ";
513                 if (api_user() !== false) {
514                         $extra_query .= "AND `contact`.`uid`=" . intval(api_user());
515                 }
516         }
517
518         if (is_null($user) && !empty($_GET['user_id'])) {
519                 $user = DBA::escape(api_unique_id_to_nurl($_GET['user_id']));
520
521                 if ($user == "") {
522                         throw new BadRequestException("User ID ".$_GET['user_id']." not found.");
523                 }
524
525                 $url = $user;
526                 $extra_query = "AND `contact`.`nurl` = '%s' ";
527                 if (api_user() !== false) {
528                         $extra_query .= "AND `contact`.`uid`=" . intval(api_user());
529                 }
530         }
531         if (is_null($user) && !empty($_GET['screen_name'])) {
532                 $user = DBA::escape($_GET['screen_name']);
533                 $extra_query = "AND `contact`.`nick` = '%s' ";
534                 if (api_user() !== false) {
535                         $extra_query .= "AND `contact`.`uid`=".intval(api_user());
536                 }
537         }
538
539         if (is_null($user) && !empty($_GET['profileurl'])) {
540                 $user = DBA::escape(Strings::normaliseLink($_GET['profileurl']));
541                 $extra_query = "AND `contact`.`nurl` = '%s' ";
542                 if (api_user() !== false) {
543                         $extra_query .= "AND `contact`.`uid`=".intval(api_user());
544                 }
545         }
546
547         // $called_api is the API path exploded on / and is expected to have at least 2 elements
548         if (is_null($user) && (DI::args()->getArgc() > (count($called_api) - 1)) && (count($called_api) > 0)) {
549                 $argid = count($called_api);
550                 if (!empty(DI::args()->getArgv()[$argid])) {
551                         $data = explode(".", DI::args()->getArgv()[$argid]);
552                         if (count($data) > 1) {
553                                 list($user, $null) = $data;
554                         }
555                 }
556                 if (is_numeric($user)) {
557                         $user = DBA::escape(api_unique_id_to_nurl(intval($user)));
558
559                         if ($user != "") {
560                                 $url = $user;
561                                 $extra_query = "AND `contact`.`nurl` = '%s' ";
562                                 if (api_user() !== false) {
563                                         $extra_query .= "AND `contact`.`uid`=" . intval(api_user());
564                                 }
565                         }
566                 } else {
567                         $user = DBA::escape($user);
568                         $extra_query = "AND `contact`.`nick` = '%s' ";
569                         if (api_user() !== false) {
570                                 $extra_query .= "AND `contact`.`uid`=" . intval(api_user());
571                         }
572                 }
573         }
574
575         Logger::info(API_LOG_PREFIX . 'getting user {user}', ['module' => 'api', 'action' => 'get_user', 'user' => $user]);
576
577         if (!$user) {
578                 if (api_user() === false) {
579                         api_login($a);
580                         return false;
581                 } else {
582                         $user = api_user();
583                         $extra_query = "AND `contact`.`uid` = %d AND `contact`.`self` ";
584                 }
585         }
586
587         Logger::info(API_LOG_PREFIX . 'found user {user}', ['module' => 'api', 'action' => 'get_user', 'user' => $user, 'extra_query' => $extra_query]);
588
589         // user info
590         $uinfo = q(
591                 "SELECT *, `contact`.`id` AS `cid` FROM `contact`
592                         WHERE 1
593                 $extra_query",
594                 $user
595         );
596
597         // Selecting the id by priority, friendica first
598         if (is_array($uinfo)) {
599                 api_best_nickname($uinfo);
600         }
601
602         // if the contact wasn't found, fetch it from the contacts with uid = 0
603         if (!DBA::isResult($uinfo)) {
604                 if ($url == "") {
605                         throw new BadRequestException("User not found.");
606                 }
607
608                 $contact = DBA::selectFirst('contact', [], ['uid' => 0, 'nurl' => Strings::normaliseLink($url)]);
609
610                 if (DBA::isResult($contact)) {
611                         $ret = [
612                                 'id' => $contact["id"],
613                                 'id_str' => (string) $contact["id"],
614                                 'name' => $contact["name"],
615                                 'screen_name' => (($contact['nick']) ? $contact['nick'] : $contact['name']),
616                                 'location' => ($contact["location"] != "") ? $contact["location"] : ContactSelector::networkToName($contact['network'], $contact['url'], $contact['protocol']),
617                                 'description' => BBCode::toPlaintext($contact["about"] ?? ''),
618                                 'profile_image_url' => $contact["micro"],
619                                 'profile_image_url_https' => $contact["micro"],
620                                 'profile_image_url_profile_size' => $contact["thumb"],
621                                 'profile_image_url_large' => $contact["photo"],
622                                 'url' => $contact["url"],
623                                 'protected' => false,
624                                 'followers_count' => 0,
625                                 'friends_count' => 0,
626                                 'listed_count' => 0,
627                                 'created_at' => api_date($contact["created"]),
628                                 'favourites_count' => 0,
629                                 'utc_offset' => 0,
630                                 'time_zone' => 'UTC',
631                                 'geo_enabled' => false,
632                                 'verified' => false,
633                                 'statuses_count' => 0,
634                                 'lang' => '',
635                                 'contributors_enabled' => false,
636                                 'is_translator' => false,
637                                 'is_translation_enabled' => false,
638                                 'following' => false,
639                                 'follow_request_sent' => false,
640                                 'statusnet_blocking' => false,
641                                 'notifications' => false,
642                                 'statusnet_profile_url' => $contact["url"],
643                                 'uid' => 0,
644                                 'cid' => Contact::getIdForURL($contact["url"], api_user(), false),
645                                 'pid' => Contact::getIdForURL($contact["url"], 0, false),
646                                 'self' => 0,
647                                 'network' => $contact["network"],
648                         ];
649
650                         return $ret;
651                 } else {
652                         throw new BadRequestException("User ".$url." not found.");
653                 }
654         }
655
656         if ($uinfo[0]['self']) {
657                 if ($uinfo[0]['network'] == "") {
658                         $uinfo[0]['network'] = Protocol::DFRN;
659                 }
660
661                 $usr = DBA::selectFirst('user', ['default-location'], ['uid' => api_user()]);
662                 $profile = DBA::selectFirst('profile', ['about'], ['uid' => api_user(), 'is-default' => true]);
663         }
664         $countitems = 0;
665         $countfriends = 0;
666         $countfollowers = 0;
667         $starred = 0;
668
669         $pcontact_id  = Contact::getIdForURL($uinfo[0]['url'], 0, false);
670
671         if (!empty($profile['about'])) {
672                 $description = $profile['about'];
673         } else {
674                 $description = $uinfo[0]["about"];
675         }
676
677         if (!empty($usr['default-location'])) {
678                 $location = $usr['default-location'];
679         } elseif (!empty($uinfo[0]["location"])) {
680                 $location = $uinfo[0]["location"];
681         } else {
682                 $location = ContactSelector::networkToName($uinfo[0]['network'], $uinfo[0]['url'], $uinfo[0]['protocol']);
683         }
684
685         $ret = [
686                 'id' => intval($pcontact_id),
687                 'id_str' => (string) intval($pcontact_id),
688                 'name' => (($uinfo[0]['name']) ? $uinfo[0]['name'] : $uinfo[0]['nick']),
689                 'screen_name' => (($uinfo[0]['nick']) ? $uinfo[0]['nick'] : $uinfo[0]['name']),
690                 'location' => $location,
691                 'description' => BBCode::toPlaintext($description ?? ''),
692                 'profile_image_url' => $uinfo[0]['micro'],
693                 'profile_image_url_https' => $uinfo[0]['micro'],
694                 'profile_image_url_profile_size' => $uinfo[0]["thumb"],
695                 'profile_image_url_large' => $uinfo[0]["photo"],
696                 'url' => $uinfo[0]['url'],
697                 'protected' => false,
698                 'followers_count' => intval($countfollowers),
699                 'friends_count' => intval($countfriends),
700                 'listed_count' => 0,
701                 'created_at' => api_date($uinfo[0]['created']),
702                 'favourites_count' => intval($starred),
703                 'utc_offset' => "0",
704                 'time_zone' => 'UTC',
705                 'geo_enabled' => false,
706                 'verified' => true,
707                 'statuses_count' => intval($countitems),
708                 'lang' => '',
709                 'contributors_enabled' => false,
710                 'is_translator' => false,
711                 'is_translation_enabled' => false,
712                 'following' => (($uinfo[0]['rel'] == Contact::FOLLOWER) || ($uinfo[0]['rel'] == Contact::FRIEND)),
713                 'follow_request_sent' => false,
714                 'statusnet_blocking' => false,
715                 'notifications' => false,
716                 /// @TODO old way?
717                 //'statusnet_profile_url' => DI::baseUrl()."/contact/".$uinfo[0]['cid'],
718                 'statusnet_profile_url' => $uinfo[0]['url'],
719                 'uid' => intval($uinfo[0]['uid']),
720                 'cid' => intval($uinfo[0]['cid']),
721                 'pid' => Contact::getIdForURL($uinfo[0]["url"], 0, false),
722                 'self' => $uinfo[0]['self'],
723                 'network' => $uinfo[0]['network'],
724         ];
725
726         // If this is a local user and it uses Frio, we can get its color preferences.
727         if ($ret['self']) {
728                 $theme_info = DBA::selectFirst('user', ['theme'], ['uid' => $ret['uid']]);
729                 if ($theme_info['theme'] === 'frio') {
730                         $schema = DI::pConfig()->get($ret['uid'], 'frio', 'schema');
731
732                         if ($schema && ($schema != '---')) {
733                                 if (file_exists('view/theme/frio/schema/'.$schema.'.php')) {
734                                         $schemefile = 'view/theme/frio/schema/'.$schema.'.php';
735                                         require_once $schemefile;
736                                 }
737                         } else {
738                                 $nav_bg = DI::pConfig()->get($ret['uid'], 'frio', 'nav_bg');
739                                 $link_color = DI::pConfig()->get($ret['uid'], 'frio', 'link_color');
740                                 $bgcolor = DI::pConfig()->get($ret['uid'], 'frio', 'background_color');
741                         }
742                         if (empty($nav_bg)) {
743                                 $nav_bg = "#708fa0";
744                         }
745                         if (empty($link_color)) {
746                                 $link_color = "#6fdbe8";
747                         }
748                         if (empty($bgcolor)) {
749                                 $bgcolor = "#ededed";
750                         }
751
752                         $ret['profile_sidebar_fill_color'] = str_replace('#', '', $nav_bg);
753                         $ret['profile_link_color'] = str_replace('#', '', $link_color);
754                         $ret['profile_background_color'] = str_replace('#', '', $bgcolor);
755                 }
756         }
757
758         return $ret;
759 }
760
761 /**
762  * return api-formatted array for item's author and owner
763  *
764  * @param App   $a    App
765  * @param array $item item from db
766  * @return array(array:author, array:owner)
767  * @throws BadRequestException
768  * @throws ImagickException
769  * @throws InternalServerErrorException
770  * @throws UnauthorizedException
771  */
772 function api_item_get_user(App $a, $item)
773 {
774         $status_user = api_get_user($a, $item['author-id'] ?? null);
775
776         $author_user = $status_user;
777
778         $status_user["protected"] = isset($item['private']) && ($item['private'] == Item::PRIVATE);
779
780         if (($item['thr-parent'] ?? '') == ($item['uri'] ?? '')) {
781                 $owner_user = api_get_user($a, $item['owner-id'] ?? null);
782         } else {
783                 $owner_user = $author_user;
784         }
785
786         return ([$status_user, $author_user, $owner_user]);
787 }
788
789 /**
790  * walks recursively through an array with the possibility to change value and key
791  *
792  * @param array    $array    The array to walk through
793  * @param callable $callback The callback function
794  *
795  * @return array the transformed array
796  */
797 function api_walk_recursive(array &$array, callable $callback)
798 {
799         $new_array = [];
800
801         foreach ($array as $k => $v) {
802                 if (is_array($v)) {
803                         if ($callback($v, $k)) {
804                                 $new_array[$k] = api_walk_recursive($v, $callback);
805                         }
806                 } else {
807                         if ($callback($v, $k)) {
808                                 $new_array[$k] = $v;
809                         }
810                 }
811         }
812         $array = $new_array;
813
814         return $array;
815 }
816
817 /**
818  * Callback function to transform the array in an array that can be transformed in a XML file
819  *
820  * @param mixed  $item Array item value
821  * @param string $key  Array key
822  *
823  * @return boolean Should the array item be deleted?
824  */
825 function api_reformat_xml(&$item, &$key)
826 {
827         if (is_bool($item)) {
828                 $item = ($item ? "true" : "false");
829         }
830
831         if (substr($key, 0, 10) == "statusnet_") {
832                 $key = "statusnet:".substr($key, 10);
833         } elseif (substr($key, 0, 10) == "friendica_") {
834                 $key = "friendica:".substr($key, 10);
835         }
836         /// @TODO old-lost code?
837         //else
838         //      $key = "default:".$key;
839
840         return true;
841 }
842
843 /**
844  * Creates the XML from a JSON style array
845  *
846  * @param array  $data         JSON style array
847  * @param string $root_element Name of the root element
848  *
849  * @return string The XML data
850  */
851 function api_create_xml(array $data, $root_element)
852 {
853         $childname = key($data);
854         $data2 = array_pop($data);
855
856         $namespaces = ["" => "http://api.twitter.com",
857                                 "statusnet" => "http://status.net/schema/api/1/",
858                                 "friendica" => "http://friendi.ca/schema/api/1/",
859                                 "georss" => "http://www.georss.org/georss"];
860
861         /// @todo Auto detection of needed namespaces
862         if (in_array($root_element, ["ok", "hash", "config", "version", "ids", "notes", "photos"])) {
863                 $namespaces = [];
864         }
865
866         if (is_array($data2)) {
867                 $key = key($data2);
868                 api_walk_recursive($data2, "api_reformat_xml");
869
870                 if ($key == "0") {
871                         $data4 = [];
872                         $i = 1;
873
874                         foreach ($data2 as $item) {
875                                 $data4[$i++ . ":" . $childname] = $item;
876                         }
877
878                         $data2 = $data4;
879                 }
880         }
881
882         $data3 = [$root_element => $data2];
883
884         $ret = XML::fromArray($data3, $xml, false, $namespaces);
885         return $ret;
886 }
887
888 /**
889  * Formats the data according to the data type
890  *
891  * @param string $root_element Name of the root element
892  * @param string $type         Return type (atom, rss, xml, json)
893  * @param array  $data         JSON style array
894  *
895  * @return array|string (string|array) XML data or JSON data
896  */
897 function api_format_data($root_element, $type, $data)
898 {
899         switch ($type) {
900                 case "atom":
901                 case "rss":
902                 case "xml":
903                         $ret = api_create_xml($data, $root_element);
904                         break;
905                 case "json":
906                 default:
907                         $ret = $data;
908                         break;
909         }
910         return $ret;
911 }
912
913 /**
914  * TWITTER API
915  */
916
917 /**
918  * Returns an HTTP 200 OK response code and a representation of the requesting user if authentication was successful;
919  * returns a 401 status code and an error message if not.
920  *
921  * @see https://developer.twitter.com/en/docs/accounts-and-users/manage-account-settings/api-reference/get-account-verify_credentials
922  *
923  * @param string $type Return type (atom, rss, xml, json)
924  * @return array|string
925  * @throws BadRequestException
926  * @throws ForbiddenException
927  * @throws ImagickException
928  * @throws InternalServerErrorException
929  * @throws UnauthorizedException
930  */
931 function api_account_verify_credentials($type)
932 {
933         $a = DI::app();
934
935         if (api_user() === false) {
936                 throw new ForbiddenException();
937         }
938
939         unset($_REQUEST["user_id"]);
940         unset($_GET["user_id"]);
941
942         unset($_REQUEST["screen_name"]);
943         unset($_GET["screen_name"]);
944
945         $skip_status = $_REQUEST['skip_status'] ?? false;
946
947         $user_info = api_get_user($a);
948
949         // "verified" isn't used here in the standard
950         unset($user_info["verified"]);
951
952         // - Adding last status
953         if (!$skip_status) {
954                 $item = api_get_last_status($user_info['pid'], $user_info['uid']);
955                 if (!empty($item)) {
956                         $user_info['status'] = api_format_item($item, $type);
957                 }
958         }
959
960         // "uid" and "self" are only needed for some internal stuff, so remove it from here
961         unset($user_info["uid"]);
962         unset($user_info["self"]);
963
964         return api_format_data("user", $type, ['user' => $user_info]);
965 }
966
967 /// @TODO move to top of file or somewhere better
968 api_register_func('api/account/verify_credentials', 'api_account_verify_credentials', true);
969
970 /**
971  * Get data from $_POST or $_GET
972  *
973  * @param string $k
974  * @return null
975  */
976 function requestdata($k)
977 {
978         if (!empty($_POST[$k])) {
979                 return $_POST[$k];
980         }
981         if (!empty($_GET[$k])) {
982                 return $_GET[$k];
983         }
984         return null;
985 }
986
987 /**
988  * Deprecated function to upload media.
989  *
990  * @param string $type Return type (atom, rss, xml, json)
991  *
992  * @return array|string
993  * @throws BadRequestException
994  * @throws ForbiddenException
995  * @throws ImagickException
996  * @throws InternalServerErrorException
997  * @throws UnauthorizedException
998  */
999 function api_statuses_mediap($type)
1000 {
1001         $a = DI::app();
1002
1003         if (api_user() === false) {
1004                 Logger::log('api_statuses_update: no user');
1005                 throw new ForbiddenException();
1006         }
1007         $user_info = api_get_user($a);
1008
1009         $_REQUEST['profile_uid'] = api_user();
1010         $_REQUEST['api_source'] = true;
1011         $txt = requestdata('status') ?? '';
1012         /// @TODO old-lost code?
1013         //$txt = urldecode(requestdata('status'));
1014
1015         if ((strpos($txt, '<') !== false) || (strpos($txt, '>') !== false)) {
1016                 $txt = HTML::toBBCodeVideo($txt);
1017                 $config = HTMLPurifier_Config::createDefault();
1018                 $config->set('Cache.DefinitionImpl', null);
1019                 $purifier = new HTMLPurifier($config);
1020                 $txt = $purifier->purify($txt);
1021         }
1022         $txt = HTML::toBBCode($txt);
1023
1024         DI::args()->getArgv()[1] = $user_info['screen_name']; //should be set to username?
1025
1026         $picture = wall_upload_post($a, false);
1027
1028         // now that we have the img url in bbcode we can add it to the status and insert the wall item.
1029         $_REQUEST['body'] = $txt . "\n\n" . '[url=' . $picture["albumpage"] . '][img]' . $picture["preview"] . "[/img][/url]";
1030         $item_id = item_post($a);
1031
1032         // output the post that we just posted.
1033         return api_status_show($type, $item_id);
1034 }
1035
1036 /// @TODO move this to top of file or somewhere better!
1037 api_register_func('api/statuses/mediap', 'api_statuses_mediap', true, API_METHOD_POST);
1038
1039 /**
1040  * Updates the user’s current status.
1041  *
1042  * @param string $type Return type (atom, rss, xml, json)
1043  *
1044  * @return array|string
1045  * @throws BadRequestException
1046  * @throws ForbiddenException
1047  * @throws ImagickException
1048  * @throws InternalServerErrorException
1049  * @throws TooManyRequestsException
1050  * @throws UnauthorizedException
1051  * @see https://developer.twitter.com/en/docs/tweets/post-and-engage/api-reference/post-statuses-update
1052  */
1053 function api_statuses_update($type)
1054 {
1055         $a = DI::app();
1056
1057         if (api_user() === false) {
1058                 Logger::log('api_statuses_update: no user');
1059                 throw new ForbiddenException();
1060         }
1061
1062         api_get_user($a);
1063
1064         // convert $_POST array items to the form we use for web posts.
1065         if (requestdata('htmlstatus')) {
1066                 $txt = requestdata('htmlstatus') ?? '';
1067                 if ((strpos($txt, '<') !== false) || (strpos($txt, '>') !== false)) {
1068                         $txt = HTML::toBBCodeVideo($txt);
1069
1070                         $config = HTMLPurifier_Config::createDefault();
1071                         $config->set('Cache.DefinitionImpl', null);
1072
1073                         $purifier = new HTMLPurifier($config);
1074                         $txt = $purifier->purify($txt);
1075
1076                         $_REQUEST['body'] = HTML::toBBCode($txt);
1077                 }
1078         } else {
1079                 $_REQUEST['body'] = requestdata('status');
1080         }
1081
1082         $_REQUEST['title'] = requestdata('title');
1083
1084         $parent = requestdata('in_reply_to_status_id');
1085
1086         // Twidere sends "-1" if it is no reply ...
1087         if ($parent == -1) {
1088                 $parent = "";
1089         }
1090
1091         if (ctype_digit($parent)) {
1092                 $_REQUEST['parent'] = $parent;
1093         } else {
1094                 $_REQUEST['parent_uri'] = $parent;
1095         }
1096
1097         if (requestdata('lat') && requestdata('long')) {
1098                 $_REQUEST['coord'] = sprintf("%s %s", requestdata('lat'), requestdata('long'));
1099         }
1100         $_REQUEST['profile_uid'] = api_user();
1101
1102         if (!$parent) {
1103                 // Check for throttling (maximum posts per day, week and month)
1104                 $throttle_day = DI::config()->get('system', 'throttle_limit_day');
1105                 if ($throttle_day > 0) {
1106                         $datefrom = date(DateTimeFormat::MYSQL, time() - 24*60*60);
1107
1108                         $condition = ["`gravity` = ? AND `uid` = ? AND `wall` AND `received` > ?", GRAVITY_PARENT, api_user(), $datefrom];
1109                         $posts_day = Post::count($condition);
1110
1111                         if ($posts_day > $throttle_day) {
1112                                 Logger::log('Daily posting limit reached for user '.api_user(), Logger::DEBUG);
1113                                 // die(api_error($type, DI::l10n()->t("Daily posting limit of %d posts reached. The post was rejected.", $throttle_day));
1114                                 throw new TooManyRequestsException(DI::l10n()->tt("Daily posting limit of %d post reached. The post was rejected.", "Daily posting limit of %d posts reached. The post was rejected.", $throttle_day));
1115                         }
1116                 }
1117
1118                 $throttle_week = DI::config()->get('system', 'throttle_limit_week');
1119                 if ($throttle_week > 0) {
1120                         $datefrom = date(DateTimeFormat::MYSQL, time() - 24*60*60*7);
1121
1122                         $condition = ["`gravity` = ? AND `uid` = ? AND `wall` AND `received` > ?", GRAVITY_PARENT, api_user(), $datefrom];
1123                         $posts_week = Post::count($condition);
1124
1125                         if ($posts_week > $throttle_week) {
1126                                 Logger::log('Weekly posting limit reached for user '.api_user(), Logger::DEBUG);
1127                                 // die(api_error($type, DI::l10n()->t("Weekly posting limit of %d posts reached. The post was rejected.", $throttle_week)));
1128                                 throw new TooManyRequestsException(DI::l10n()->tt("Weekly posting limit of %d post reached. The post was rejected.", "Weekly posting limit of %d posts reached. The post was rejected.", $throttle_week));
1129                         }
1130                 }
1131
1132                 $throttle_month = DI::config()->get('system', 'throttle_limit_month');
1133                 if ($throttle_month > 0) {
1134                         $datefrom = date(DateTimeFormat::MYSQL, time() - 24*60*60*30);
1135
1136                         $condition = ["`gravity` = ? AND `uid` = ? AND `wall` AND `received` > ?", GRAVITY_PARENT, api_user(), $datefrom];
1137                         $posts_month = Post::count($condition);
1138
1139                         if ($posts_month > $throttle_month) {
1140                                 Logger::log('Monthly posting limit reached for user '.api_user(), Logger::DEBUG);
1141                                 // die(api_error($type, DI::l10n()->t("Monthly posting limit of %d posts reached. The post was rejected.", $throttle_month));
1142                                 throw new TooManyRequestsException(DI::l10n()->t("Monthly posting limit of %d post reached. The post was rejected.", "Monthly posting limit of %d posts reached. The post was rejected.", $throttle_month));
1143                         }
1144                 }
1145         }
1146
1147         if (requestdata('media_ids')) {
1148                 $ids = explode(',', requestdata('media_ids') ?? '');
1149         } elseif (!empty($_FILES['media'])) {
1150                 // upload the image if we have one
1151                 $picture = wall_upload_post($a, false);
1152                 if (is_array($picture)) {
1153                         $ids[] = $picture['id'];
1154                 }
1155         }
1156
1157         $attachments = [];
1158         $ressources = [];
1159
1160         if (!empty($ids)) {
1161                 foreach ($ids as $id) {
1162                         $media = DBA::toArray(DBA::p("SELECT `resource-id`, `scale`, `nickname`, `type`, `desc`, `filename`, `datasize`, `width`, `height` FROM `photo`
1163                                         INNER JOIN `user` ON `user`.`uid` = `photo`.`uid` WHERE `resource-id` IN
1164                                                 (SELECT `resource-id` FROM `photo` WHERE `id` = ?) AND `photo`.`uid` = ?
1165                                         ORDER BY `photo`.`width` DESC LIMIT 2", $id, api_user()));
1166
1167                         if (!empty($media)) {
1168                                 $ressources[] = $media[0]['resource-id'];
1169                                 $phototypes = Images::supportedTypes();
1170                                 $ext = $phototypes[$media[0]['type']];
1171
1172                                 $attachment = ['type' => Post\Media::IMAGE, 'mimetype' => $media[0]['type'],
1173                                         'url' => DI::baseUrl() . '/photo/' . $media[0]['resource-id'] . '-' . $media[0]['scale'] . '.' . $ext,
1174                                         'size' => $media[0]['datasize'],
1175                                         'name' => $media[0]['filename'] ?: $media[0]['resource-id'],
1176                                         'description' => $media[0]['desc'] ?? '',
1177                                         'width' => $media[0]['width'],
1178                                         'height' => $media[0]['height']];
1179
1180                                 if (count($media) > 1) {
1181                                         $attachment['preview'] = DI::baseUrl() . '/photo/' . $media[1]['resource-id'] . '-' . $media[1]['scale'] . '.' . $ext;
1182                                         $attachment['preview-width'] = $media[1]['width'];
1183                                         $attachment['preview-height'] = $media[1]['height'];
1184                                 }
1185                                 $attachments[] = $attachment;
1186                         }
1187                 }
1188
1189                 // We have to avoid that the post is rejected because of an empty body
1190                 if (empty($_REQUEST['body'])) {
1191                         $_REQUEST['body'] = '[hr]';
1192                 }
1193         }
1194
1195         if (!empty($attachments)) {
1196                 $_REQUEST['attachments'] = $attachments;
1197         }
1198
1199         // set this so that the item_post() function is quiet and doesn't redirect or emit json
1200
1201         $_REQUEST['api_source'] = true;
1202
1203         if (empty($_REQUEST['source'])) {
1204                 $_REQUEST["source"] = api_source();
1205         }
1206
1207         // call out normal post function
1208         $item_id = item_post($a);
1209
1210         if (!empty($ressources) && !empty($item_id)) {
1211                 $item = Post::selectFirst(['uri-id', 'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid'], ['id' => $item_id]);
1212                 foreach ($ressources as $ressource) {
1213                         Photo::setPermissionForRessource($ressource, api_user(), $item['allow_cid'], $item['allow_gid'], $item['deny_cid'], $item['deny_gid']);
1214                 }
1215         }
1216
1217         // output the post that we just posted.
1218         return api_status_show($type, $item_id);
1219 }
1220
1221 /// @TODO move to top of file or somewhere better
1222 api_register_func('api/statuses/update', 'api_statuses_update', true, API_METHOD_POST);
1223 api_register_func('api/statuses/update_with_media', 'api_statuses_update', true, API_METHOD_POST);
1224
1225 /**
1226  * Uploads an image to Friendica.
1227  *
1228  * @return array
1229  * @throws BadRequestException
1230  * @throws ForbiddenException
1231  * @throws ImagickException
1232  * @throws InternalServerErrorException
1233  * @throws UnauthorizedException
1234  * @see https://developer.twitter.com/en/docs/media/upload-media/api-reference/post-media-upload
1235  */
1236 function api_media_upload()
1237 {
1238         $a = DI::app();
1239
1240         if (api_user() === false) {
1241                 Logger::log('no user');
1242                 throw new ForbiddenException();
1243         }
1244
1245         api_get_user($a);
1246
1247         if (empty($_FILES['media'])) {
1248                 // Output error
1249                 throw new BadRequestException("No media.");
1250         }
1251
1252         $media = wall_upload_post($a, false);
1253         if (!$media) {
1254                 // Output error
1255                 throw new InternalServerErrorException();
1256         }
1257
1258         $returndata = [];
1259         $returndata["media_id"] = $media["id"];
1260         $returndata["media_id_string"] = (string)$media["id"];
1261         $returndata["size"] = $media["size"];
1262         $returndata["image"] = ["w" => $media["width"],
1263                                 "h" => $media["height"],
1264                                 "image_type" => $media["type"],
1265                                 "friendica_preview_url" => $media["preview"]];
1266
1267         Logger::info('Media uploaded', ['return' => $returndata]);
1268
1269         return ["media" => $returndata];
1270 }
1271
1272 /// @TODO move to top of file or somewhere better
1273 api_register_func('api/media/upload', 'api_media_upload', true, API_METHOD_POST);
1274
1275 /**
1276  * Updates media meta data (picture descriptions)
1277  *
1278  * @param string $type Return type (atom, rss, xml, json)
1279  *
1280  * @return array|string
1281  * @throws BadRequestException
1282  * @throws ForbiddenException
1283  * @throws ImagickException
1284  * @throws InternalServerErrorException
1285  * @throws TooManyRequestsException
1286  * @throws UnauthorizedException
1287  * @see https://developer.twitter.com/en/docs/tweets/post-and-engage/api-reference/post-statuses-update
1288  *
1289  * @todo Compare the corresponding Twitter function for correct return values
1290  */
1291 function api_media_metadata_create($type)
1292 {
1293         $a = DI::app();
1294
1295         if (api_user() === false) {
1296                 Logger::info('no user');
1297                 throw new ForbiddenException();
1298         }
1299
1300         api_get_user($a);
1301
1302         $postdata = Network::postdata();
1303
1304         if (empty($postdata)) {
1305                 throw new BadRequestException("No post data");
1306         }
1307
1308         $data = json_decode($postdata, true);
1309         if (empty($data)) {
1310                 throw new BadRequestException("Invalid post data");
1311         }
1312
1313         if (empty($data['media_id']) || empty($data['alt_text'])) {
1314                 throw new BadRequestException("Missing post data values");
1315         }
1316
1317         if (empty($data['alt_text']['text'])) {
1318                 throw new BadRequestException("No alt text.");
1319         }
1320
1321         Logger::info('Updating metadata', ['media_id' => $data['media_id']]);
1322
1323         $condition =  ['id' => $data['media_id'], 'uid' => api_user()];
1324         $photo = DBA::selectFirst('photo', ['resource-id'], $condition);
1325         if (!DBA::isResult($photo)) {
1326                 throw new BadRequestException("Metadata not found.");
1327         }
1328
1329         DBA::update('photo', ['desc' => $data['alt_text']['text']], ['resource-id' => $photo['resource-id']]);
1330 }
1331
1332 api_register_func('api/media/metadata/create', 'api_media_metadata_create', true, API_METHOD_POST);
1333
1334 /**
1335  * @param string $type    Return format (atom, rss, xml, json)
1336  * @param int    $item_id
1337  * @return array|string
1338  * @throws Exception
1339  */
1340 function api_status_show($type, $item_id)
1341 {
1342         Logger::info(API_LOG_PREFIX . 'Start', ['action' => 'status_show', 'type' => $type, 'item_id' => $item_id]);
1343
1344         $status_info = [];
1345
1346         $item = api_get_item(['id' => $item_id]);
1347         if (!empty($item)) {
1348                 $status_info = api_format_item($item, $type);
1349         }
1350
1351         Logger::info(API_LOG_PREFIX . 'End', ['action' => 'get_status', 'status_info' => $status_info]);
1352
1353         return api_format_data('statuses', $type, ['status' => $status_info]);
1354 }
1355
1356 /**
1357  * Retrieves the last public status of the provided user info
1358  *
1359  * @param int    $ownerId Public contact Id
1360  * @param int    $uid     User Id
1361  * @return array
1362  * @throws Exception
1363  */
1364 function api_get_last_status($ownerId, $uid)
1365 {
1366         $condition = [
1367                 'author-id'=> $ownerId,
1368                 'uid'      => $uid,
1369                 'gravity'  => [GRAVITY_PARENT, GRAVITY_COMMENT],
1370                 'private'  => [Item::PUBLIC, Item::UNLISTED]
1371         ];
1372
1373         $item = api_get_item($condition);
1374
1375         return $item;
1376 }
1377
1378 /**
1379  * Retrieves a single item record based on the provided condition and converts it for API use.
1380  *
1381  * @param array $condition Item table condition array
1382  * @return array
1383  * @throws Exception
1384  */
1385 function api_get_item(array $condition)
1386 {
1387         $item = Post::selectFirst(Item::DISPLAY_FIELDLIST, $condition, ['order' => ['id' => true]]);
1388
1389         return $item;
1390 }
1391
1392 /**
1393  * Returns extended information of a given user, specified by ID or screen name as per the required id parameter.
1394  * The author's most recent status will be returned inline.
1395  *
1396  * @param string $type Return type (atom, rss, xml, json)
1397  * @return array|string
1398  * @throws BadRequestException
1399  * @throws ImagickException
1400  * @throws InternalServerErrorException
1401  * @throws UnauthorizedException
1402  * @see https://developer.twitter.com/en/docs/accounts-and-users/follow-search-get-users/api-reference/get-users-show
1403  */
1404 function api_users_show($type)
1405 {
1406         $a = Friendica\DI::app();
1407
1408         $user_info = api_get_user($a);
1409
1410         $item = api_get_last_status($user_info['pid'], $user_info['uid']);
1411         if (!empty($item)) {
1412                 $user_info['status'] = api_format_item($item, $type);
1413         }
1414
1415         // "uid" and "self" are only needed for some internal stuff, so remove it from here
1416         unset($user_info['uid']);
1417         unset($user_info['self']);
1418
1419         return api_format_data('user', $type, ['user' => $user_info]);
1420 }
1421
1422 /// @TODO move to top of file or somewhere better
1423 api_register_func('api/users/show', 'api_users_show');
1424 api_register_func('api/externalprofile/show', 'api_users_show');
1425
1426 /**
1427  * Search a public user account.
1428  *
1429  * @param string $type Return type (atom, rss, xml, json)
1430  *
1431  * @return array|string
1432  * @throws BadRequestException
1433  * @throws ImagickException
1434  * @throws InternalServerErrorException
1435  * @throws UnauthorizedException
1436  * @see https://developer.twitter.com/en/docs/accounts-and-users/follow-search-get-users/api-reference/get-users-search
1437  */
1438 function api_users_search($type)
1439 {
1440         $a = DI::app();
1441
1442         $userlist = [];
1443
1444         if (!empty($_GET['q'])) {
1445                 $contacts = Contact::selectToArray(
1446                         ['id'],
1447                         [
1448                                 '`uid` = 0 AND (`name` = ? OR `nick` = ? OR `url` = ? OR `addr` = ?)',
1449                                 $_GET['q'],
1450                                 $_GET['q'],
1451                                 $_GET['q'],
1452                                 $_GET['q'],
1453                         ]
1454                 );
1455
1456                 if (DBA::isResult($contacts)) {
1457                         $k = 0;
1458                         foreach ($contacts as $contact) {
1459                                 $user_info = api_get_user($a, $contact['id']);
1460
1461                                 if ($type == 'xml') {
1462                                         $userlist[$k++ . ':user'] = $user_info;
1463                                 } else {
1464                                         $userlist[] = $user_info;
1465                                 }
1466                         }
1467                         $userlist = ['users' => $userlist];
1468                 } else {
1469                         throw new NotFoundException('User ' . $_GET['q'] . ' not found.');
1470                 }
1471         } else {
1472                 throw new BadRequestException('No search term specified.');
1473         }
1474
1475         return api_format_data('users', $type, $userlist);
1476 }
1477
1478 /// @TODO move to top of file or somewhere better
1479 api_register_func('api/users/search', 'api_users_search');
1480
1481 /**
1482  * Return user objects
1483  *
1484  * @see https://developer.twitter.com/en/docs/accounts-and-users/follow-search-get-users/api-reference/get-users-lookup
1485  *
1486  * @param string $type Return format: json or xml
1487  *
1488  * @return array|string
1489  * @throws BadRequestException
1490  * @throws ImagickException
1491  * @throws InternalServerErrorException
1492  * @throws NotFoundException if the results are empty.
1493  * @throws UnauthorizedException
1494  */
1495 function api_users_lookup($type)
1496 {
1497         $users = [];
1498
1499         if (!empty($_REQUEST['user_id'])) {
1500                 foreach (explode(',', $_REQUEST['user_id']) as $id) {
1501                         if (!empty($id)) {
1502                                 $users[] = api_get_user(DI::app(), $id);
1503                         }
1504                 }
1505         }
1506
1507         if (empty($users)) {
1508                 throw new NotFoundException;
1509         }
1510
1511         return api_format_data("users", $type, ['users' => $users]);
1512 }
1513
1514 /// @TODO move to top of file or somewhere better
1515 api_register_func('api/users/lookup', 'api_users_lookup', true);
1516
1517 /**
1518  * Returns statuses that match a specified query.
1519  *
1520  * @see https://developer.twitter.com/en/docs/tweets/search/api-reference/get-search-tweets
1521  *
1522  * @param string $type Return format: json, xml, atom, rss
1523  *
1524  * @return array|string
1525  * @throws BadRequestException if the "q" parameter is missing.
1526  * @throws ForbiddenException
1527  * @throws ImagickException
1528  * @throws InternalServerErrorException
1529  * @throws UnauthorizedException
1530  */
1531 function api_search($type)
1532 {
1533         $a = DI::app();
1534         $user_info = api_get_user($a);
1535
1536         if (api_user() === false || $user_info === false) {
1537                 throw new ForbiddenException();
1538         }
1539
1540         if (empty($_REQUEST['q'])) {
1541                 throw new BadRequestException('q parameter is required.');
1542         }
1543
1544         $searchTerm = trim(rawurldecode($_REQUEST['q']));
1545
1546         $data = [];
1547         $data['status'] = [];
1548         $count = 15;
1549         $exclude_replies = !empty($_REQUEST['exclude_replies']);
1550         if (!empty($_REQUEST['rpp'])) {
1551                 $count = $_REQUEST['rpp'];
1552         } elseif (!empty($_REQUEST['count'])) {
1553                 $count = $_REQUEST['count'];
1554         }
1555
1556         $since_id = $_REQUEST['since_id'] ?? 0;
1557         $max_id = $_REQUEST['max_id'] ?? 0;
1558         $page = $_REQUEST['page'] ?? 1;
1559
1560         $start = max(0, ($page - 1) * $count);
1561
1562         $params = ['order' => ['id' => true], 'limit' => [$start, $count]];
1563         if (preg_match('/^#(\w+)$/', $searchTerm, $matches) === 1 && isset($matches[1])) {
1564                 $searchTerm = $matches[1];
1565                 $condition = ["`iid` > ? AND `name` = ? AND (NOT `private` OR (`private` AND `uid` = ?))", $since_id, $searchTerm, local_user()];
1566                 $tags = DBA::select('tag-search-view', ['uri-id'], $condition);
1567                 $uriids = [];
1568                 while ($tag = DBA::fetch($tags)) {
1569                         $uriids[] = $tag['uri-id'];
1570                 }
1571                 DBA::close($tags);
1572
1573                 if (empty($uriids)) {
1574                         return api_format_data('statuses', $type, $data);
1575                 }
1576
1577                 $condition = ['uri-id' => $uriids];
1578                 if ($exclude_replies) {
1579                         $condition['gravity'] = GRAVITY_PARENT;
1580                 }
1581
1582                 $params['group_by'] = ['uri-id'];
1583         } else {
1584                 $condition = ["`id` > ?
1585                         " . ($exclude_replies ? " AND `gravity` = " . GRAVITY_PARENT : ' ') . "
1586                         AND (`uid` = 0 OR (`uid` = ? AND NOT `global`))
1587                         AND `body` LIKE CONCAT('%',?,'%')",
1588                         $since_id, api_user(), $_REQUEST['q']];
1589                 if ($max_id > 0) {
1590                         $condition[0] .= ' AND `id` <= ?';
1591                         $condition[] = $max_id;
1592                 }
1593         }
1594
1595         $statuses = [];
1596
1597         if (parse_url($searchTerm, PHP_URL_SCHEME) != '') {
1598                 $id = Item::fetchByLink($searchTerm, api_user());
1599                 if (!$id) {
1600                         // Public post
1601                         $id = Item::fetchByLink($searchTerm);
1602                 }
1603
1604                 if (!empty($id)) {
1605                         $statuses = Post::select([], ['id' => $id]);
1606                 }
1607         }
1608
1609         $statuses = $statuses ?: Post::selectForUser(api_user(), [], $condition, $params);
1610
1611         $data['status'] = api_format_items(Post::toArray($statuses), $user_info);
1612
1613         bindComments($data['status']);
1614
1615         return api_format_data('statuses', $type, $data);
1616 }
1617
1618 /// @TODO move to top of file or somewhere better
1619 api_register_func('api/search/tweets', 'api_search', true);
1620 api_register_func('api/search', 'api_search', true);
1621
1622 /**
1623  * Returns the most recent statuses posted by the user and the users they follow.
1624  *
1625  * @see  https://developer.twitter.com/en/docs/tweets/timelines/api-reference/get-statuses-home_timeline
1626  *
1627  * @param string $type Return type (atom, rss, xml, json)
1628  *
1629  * @return array|string
1630  * @throws BadRequestException
1631  * @throws ForbiddenException
1632  * @throws ImagickException
1633  * @throws InternalServerErrorException
1634  * @throws UnauthorizedException
1635  * @todo Optional parameters
1636  * @todo Add reply info
1637  */
1638 function api_statuses_home_timeline($type)
1639 {
1640         $a = DI::app();
1641         $user_info = api_get_user($a);
1642
1643         if (api_user() === false || $user_info === false) {
1644                 throw new ForbiddenException();
1645         }
1646
1647         unset($_REQUEST["user_id"]);
1648         unset($_GET["user_id"]);
1649
1650         unset($_REQUEST["screen_name"]);
1651         unset($_GET["screen_name"]);
1652
1653         // get last network messages
1654
1655         // params
1656         $count = $_REQUEST['count'] ?? 20;
1657         $page = $_REQUEST['page']?? 0;
1658         $since_id = $_REQUEST['since_id'] ?? 0;
1659         $max_id = $_REQUEST['max_id'] ?? 0;
1660         $exclude_replies = !empty($_REQUEST['exclude_replies']);
1661         $conversation_id = $_REQUEST['conversation_id'] ?? 0;
1662
1663         $start = max(0, ($page - 1) * $count);
1664
1665         $condition = ["`uid` = ? AND `gravity` IN (?, ?) AND `id` > ?",
1666                 api_user(), GRAVITY_PARENT, GRAVITY_COMMENT, $since_id];
1667
1668         if ($max_id > 0) {
1669                 $condition[0] .= " AND `id` <= ?";
1670                 $condition[] = $max_id;
1671         }
1672         if ($exclude_replies) {
1673                 $condition[0] .= ' AND `gravity` = ?';
1674                 $condition[] = GRAVITY_PARENT;
1675         }
1676         if ($conversation_id > 0) {
1677                 $condition[0] .= " AND `parent` = ?";
1678                 $condition[] = $conversation_id;
1679         }
1680
1681         $params = ['order' => ['id' => true], 'limit' => [$start, $count]];
1682         $statuses = Post::selectForUser(api_user(), [], $condition, $params);
1683
1684         $items = Post::toArray($statuses);
1685
1686         $ret = api_format_items($items, $user_info, false, $type);
1687
1688         // Set all posts from the query above to seen
1689         $idarray = [];
1690         foreach ($items as $item) {
1691                 $idarray[] = intval($item["id"]);
1692         }
1693
1694         if (!empty($idarray)) {
1695                 $unseen = Post::exists(['unseen' => true, 'id' => $idarray]);
1696                 if ($unseen) {
1697                         Item::update(['unseen' => false], ['unseen' => true, 'id' => $idarray]);
1698                 }
1699         }
1700
1701         bindComments($ret);
1702
1703         $data = ['status' => $ret];
1704         switch ($type) {
1705                 case "atom":
1706                         break;
1707                 case "rss":
1708                         $data = api_rss_extra($a, $data, $user_info);
1709                         break;
1710         }
1711
1712         return api_format_data("statuses", $type, $data);
1713 }
1714
1715
1716 /// @TODO move to top of file or somewhere better
1717 api_register_func('api/statuses/home_timeline', 'api_statuses_home_timeline', true);
1718 api_register_func('api/statuses/friends_timeline', 'api_statuses_home_timeline', true);
1719
1720 /**
1721  * Returns the most recent statuses from public users.
1722  *
1723  * @param string $type Return type (atom, rss, xml, json)
1724  *
1725  * @return array|string
1726  * @throws BadRequestException
1727  * @throws ForbiddenException
1728  * @throws ImagickException
1729  * @throws InternalServerErrorException
1730  * @throws UnauthorizedException
1731  */
1732 function api_statuses_public_timeline($type)
1733 {
1734         $a = DI::app();
1735         $user_info = api_get_user($a);
1736
1737         if (api_user() === false || $user_info === false) {
1738                 throw new ForbiddenException();
1739         }
1740
1741         // get last network messages
1742
1743         // params
1744         $count = $_REQUEST['count'] ?? 20;
1745         $page = $_REQUEST['page'] ?? 1;
1746         $since_id = $_REQUEST['since_id'] ?? 0;
1747         $max_id = $_REQUEST['max_id'] ?? 0;
1748         $exclude_replies = (!empty($_REQUEST['exclude_replies']) ? 1 : 0);
1749         $conversation_id = $_REQUEST['conversation_id'] ?? 0;
1750
1751         $start = max(0, ($page - 1) * $count);
1752
1753         if ($exclude_replies && !$conversation_id) {
1754                 $condition = ["`gravity` = ? AND `id` > ? AND `private` = ? AND `wall` AND NOT `author-hidden`",
1755                         GRAVITY_PARENT, $since_id, Item::PUBLIC];
1756
1757                 if ($max_id > 0) {
1758                         $condition[0] .= " AND `id` <= ?";
1759                         $condition[] = $max_id;
1760                 }
1761
1762                 $params = ['order' => ['id' => true], 'limit' => [$start, $count]];
1763                 $statuses = Post::selectForUser(api_user(), [], $condition, $params);
1764
1765                 $r = Post::toArray($statuses);
1766         } else {
1767                 $condition = ["`gravity` IN (?, ?) AND `id` > ? AND `private` = ? AND `wall` AND `origin` AND NOT `author-hidden`",
1768                         GRAVITY_PARENT, GRAVITY_COMMENT, $since_id, Item::PUBLIC];
1769
1770                 if ($max_id > 0) {
1771                         $condition[0] .= " AND `id` <= ?";
1772                         $condition[] = $max_id;
1773                 }
1774                 if ($conversation_id > 0) {
1775                         $condition[0] .= " AND `parent` = ?";
1776                         $condition[] = $conversation_id;
1777                 }
1778
1779                 $params = ['order' => ['id' => true], 'limit' => [$start, $count]];
1780                 $statuses = Post::selectForUser(api_user(), [], $condition, $params);
1781
1782                 $r = Post::toArray($statuses);
1783         }
1784
1785         $ret = api_format_items($r, $user_info, false, $type);
1786
1787         bindComments($ret);
1788
1789         $data = ['status' => $ret];
1790         switch ($type) {
1791                 case "atom":
1792                         break;
1793                 case "rss":
1794                         $data = api_rss_extra($a, $data, $user_info);
1795                         break;
1796         }
1797
1798         return api_format_data("statuses", $type, $data);
1799 }
1800
1801 /// @TODO move to top of file or somewhere better
1802 api_register_func('api/statuses/public_timeline', 'api_statuses_public_timeline', true);
1803
1804 /**
1805  * Returns the most recent statuses posted by users this node knows about.
1806  *
1807  * @param string $type Return format: json, xml, atom, rss
1808  * @return array|string
1809  * @throws BadRequestException
1810  * @throws ForbiddenException
1811  * @throws ImagickException
1812  * @throws InternalServerErrorException
1813  * @throws UnauthorizedException
1814  */
1815 function api_statuses_networkpublic_timeline($type)
1816 {
1817         $a = DI::app();
1818         $user_info = api_get_user($a);
1819
1820         if (api_user() === false || $user_info === false) {
1821                 throw new ForbiddenException();
1822         }
1823
1824         $since_id        = $_REQUEST['since_id'] ?? 0;
1825         $max_id          = $_REQUEST['max_id'] ?? 0;
1826
1827         // pagination
1828         $count = $_REQUEST['count'] ?? 20;
1829         $page  = $_REQUEST['page'] ?? 1;
1830
1831         $start = max(0, ($page - 1) * $count);
1832
1833         $condition = ["`uid` = 0 AND `gravity` IN (?, ?) AND `id` > ? AND `private` = ?",
1834                 GRAVITY_PARENT, GRAVITY_COMMENT, $since_id, Item::PUBLIC];
1835
1836         if ($max_id > 0) {
1837                 $condition[0] .= " AND `id` <= ?";
1838                 $condition[] = $max_id;
1839         }
1840
1841         $params = ['order' => ['id' => true], 'limit' => [$start, $count]];
1842         $statuses = Post::toArray(Post::selectForUser(api_user(), Item::DISPLAY_FIELDLIST, $condition, $params));
1843
1844         $ret = api_format_items($statuses, $user_info, false, $type);
1845
1846         bindComments($ret);
1847
1848         $data = ['status' => $ret];
1849         switch ($type) {
1850                 case "atom":
1851                         break;
1852                 case "rss":
1853                         $data = api_rss_extra($a, $data, $user_info);
1854                         break;
1855         }
1856
1857         return api_format_data("statuses", $type, $data);
1858 }
1859
1860 /// @TODO move to top of file or somewhere better
1861 api_register_func('api/statuses/networkpublic_timeline', 'api_statuses_networkpublic_timeline', true);
1862
1863 /**
1864  * Returns a single status.
1865  *
1866  * @param string $type Return type (atom, rss, xml, json)
1867  *
1868  * @return array|string
1869  * @throws BadRequestException
1870  * @throws ForbiddenException
1871  * @throws ImagickException
1872  * @throws InternalServerErrorException
1873  * @throws UnauthorizedException
1874  * @see https://developer.twitter.com/en/docs/tweets/post-and-engage/api-reference/get-statuses-show-id
1875  */
1876 function api_statuses_show($type)
1877 {
1878         $a = DI::app();
1879         $user_info = api_get_user($a);
1880
1881         if (api_user() === false || $user_info === false) {
1882                 throw new ForbiddenException();
1883         }
1884
1885         // params
1886         $id = intval(DI::args()->getArgv()[3] ?? 0);
1887
1888         if ($id == 0) {
1889                 $id = intval($_REQUEST['id'] ?? 0);
1890         }
1891
1892         // Hotot workaround
1893         if ($id == 0) {
1894                 $id = intval(DI::args()->getArgv()[4] ?? 0);
1895         }
1896
1897         Logger::log('API: api_statuses_show: ' . $id);
1898
1899         $conversation = !empty($_REQUEST['conversation']);
1900
1901         // try to fetch the item for the local user - or the public item, if there is no local one
1902         $uri_item = Post::selectFirst(['uri-id'], ['id' => $id]);
1903         if (!DBA::isResult($uri_item)) {
1904                 throw new BadRequestException(sprintf("There is no status with the id %d", $id));
1905         }
1906
1907         $item = Post::selectFirst(['id'], ['uri-id' => $uri_item['uri-id'], 'uid' => [0, api_user()]], ['order' => ['uid' => true]]);
1908         if (!DBA::isResult($item)) {
1909                 throw new BadRequestException(sprintf("There is no status with the uri-id %d for the given user.", $uri_item['uri-id']));
1910         }
1911
1912         $id = $item['id'];
1913
1914         if ($conversation) {
1915                 $condition = ['parent' => $id, 'gravity' => [GRAVITY_PARENT, GRAVITY_COMMENT]];
1916                 $params = ['order' => ['id' => true]];
1917         } else {
1918                 $condition = ['id' => $id, 'gravity' => [GRAVITY_PARENT, GRAVITY_COMMENT]];
1919                 $params = [];
1920         }
1921
1922         $statuses = Post::selectForUser(api_user(), [], $condition, $params);
1923
1924         /// @TODO How about copying this to above methods which don't check $r ?
1925         if (!DBA::isResult($statuses)) {
1926                 throw new BadRequestException(sprintf("There is no status or conversation with the id %d.", $id));
1927         }
1928
1929         $ret = api_format_items(Post::toArray($statuses), $user_info, false, $type);
1930
1931         if ($conversation) {
1932                 $data = ['status' => $ret];
1933                 return api_format_data("statuses", $type, $data);
1934         } else {
1935                 $data = ['status' => $ret[0]];
1936                 return api_format_data("status", $type, $data);
1937         }
1938 }
1939
1940 /// @TODO move to top of file or somewhere better
1941 api_register_func('api/statuses/show', 'api_statuses_show', true);
1942
1943 /**
1944  *
1945  * @param string $type Return type (atom, rss, xml, json)
1946  *
1947  * @return array|string
1948  * @throws BadRequestException
1949  * @throws ForbiddenException
1950  * @throws ImagickException
1951  * @throws InternalServerErrorException
1952  * @throws UnauthorizedException
1953  * @todo nothing to say?
1954  */
1955 function api_conversation_show($type)
1956 {
1957         $a = DI::app();
1958         $user_info = api_get_user($a);
1959
1960         if (api_user() === false || $user_info === false) {
1961                 throw new ForbiddenException();
1962         }
1963
1964         // params
1965         $id       = intval(DI::args()->getArgv()[3]           ?? 0);
1966         $since_id = intval($_REQUEST['since_id'] ?? 0);
1967         $max_id   = intval($_REQUEST['max_id']   ?? 0);
1968         $count    = intval($_REQUEST['count']    ?? 20);
1969         $page     = intval($_REQUEST['page']     ?? 1);
1970
1971         $start = max(0, ($page - 1) * $count);
1972
1973         if ($id == 0) {
1974                 $id = intval($_REQUEST['id'] ?? 0);
1975         }
1976
1977         // Hotot workaround
1978         if ($id == 0) {
1979                 $id = intval(DI::args()->getArgv()[4] ?? 0);
1980         }
1981
1982         Logger::info(API_LOG_PREFIX . '{subaction}', ['module' => 'api', 'action' => 'conversation', 'subaction' => 'show', 'id' => $id]);
1983
1984         // try to fetch the item for the local user - or the public item, if there is no local one
1985         $item = Post::selectFirst(['parent-uri-id'], ['id' => $id]);
1986         if (!DBA::isResult($item)) {
1987                 throw new BadRequestException("There is no status with this id.");
1988         }
1989
1990         $parent = Post::selectFirst(['id'], ['uri-id' => $item['parent-uri-id'], 'uid' => [0, api_user()]], ['order' => ['uid' => true]]);
1991         if (!DBA::isResult($parent)) {
1992                 throw new BadRequestException("There is no status with this id.");
1993         }
1994
1995         $id = $parent['id'];
1996
1997         $condition = ["`parent` = ? AND `uid` IN (0, ?) AND `gravity` IN (?, ?) AND `id` > ?",
1998                 $id, api_user(), GRAVITY_PARENT, GRAVITY_COMMENT, $since_id];
1999
2000         if ($max_id > 0) {
2001                 $condition[0] .= " AND `id` <= ?";
2002                 $condition[] = $max_id;
2003         }
2004
2005         $params = ['order' => ['id' => true], 'limit' => [$start, $count]];
2006         $statuses = Post::selectForUser(api_user(), [], $condition, $params);
2007
2008         if (!DBA::isResult($statuses)) {
2009                 throw new BadRequestException("There is no status with id $id.");
2010         }
2011
2012         $ret = api_format_items(Post::toArray($statuses), $user_info, false, $type);
2013
2014         $data = ['status' => $ret];
2015         return api_format_data("statuses", $type, $data);
2016 }
2017
2018 /// @TODO move to top of file or somewhere better
2019 api_register_func('api/conversation/show', 'api_conversation_show', true);
2020 api_register_func('api/statusnet/conversation', 'api_conversation_show', true);
2021
2022 /**
2023  * Repeats a status.
2024  *
2025  * @param string $type Return type (atom, rss, xml, json)
2026  *
2027  * @return array|string
2028  * @throws BadRequestException
2029  * @throws ForbiddenException
2030  * @throws ImagickException
2031  * @throws InternalServerErrorException
2032  * @throws UnauthorizedException
2033  * @see https://developer.twitter.com/en/docs/tweets/post-and-engage/api-reference/post-statuses-retweet-id
2034  */
2035 function api_statuses_repeat($type)
2036 {
2037         global $called_api;
2038
2039         $a = DI::app();
2040
2041         if (api_user() === false) {
2042                 throw new ForbiddenException();
2043         }
2044
2045         api_get_user($a);
2046
2047         // params
2048         $id = intval(DI::args()->getArgv()[3] ?? 0);
2049
2050         if ($id == 0) {
2051                 $id = intval($_REQUEST['id'] ?? 0);
2052         }
2053
2054         // Hotot workaround
2055         if ($id == 0) {
2056                 $id = intval(DI::args()->getArgv()[4] ?? 0);
2057         }
2058
2059         Logger::log('API: api_statuses_repeat: '.$id);
2060
2061         $fields = ['uri-id', 'network', 'body', 'title', 'author-name', 'author-link', 'author-avatar', 'guid', 'created', 'plink'];
2062         $item = Post::selectFirst($fields, ['id' => $id, 'private' => [Item::PUBLIC, Item::UNLISTED]]);
2063
2064         if (DBA::isResult($item) && !empty($item['body'])) {
2065                 if (in_array($item['network'], [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::TWITTER])) {
2066                         if (!Item::performActivity($id, 'announce', local_user())) {
2067                                 throw new InternalServerErrorException();
2068                         }
2069
2070                         $item_id = $id;
2071                 } else {
2072                         if (strpos($item['body'], "[/share]") !== false) {
2073                                 $pos = strpos($item['body'], "[share");
2074                                 $post = substr($item['body'], $pos);
2075                         } else {
2076                                 $post = BBCode::getShareOpeningTag($item['author-name'], $item['author-link'], $item['author-avatar'], $item['plink'], $item['created'], $item['guid']);
2077
2078                                 if (!empty($item['title'])) {
2079                                         $post .= '[h3]' . $item['title'] . "[/h3]\n";
2080                                 }
2081
2082                                 $post .= $item['body'];
2083                                 $post .= "[/share]";
2084                         }
2085                         $_REQUEST['body'] = $post;
2086                         $_REQUEST['profile_uid'] = api_user();
2087                         $_REQUEST['api_source'] = true;
2088
2089                         if (empty($_REQUEST['source'])) {
2090                                 $_REQUEST["source"] = api_source();
2091                         }
2092
2093                         $item_id = item_post($a);
2094                 }
2095         } else {
2096                 throw new ForbiddenException();
2097         }
2098
2099         // output the post that we just posted.
2100         $called_api = [];
2101         return api_status_show($type, $item_id);
2102 }
2103
2104 /// @TODO move to top of file or somewhere better
2105 api_register_func('api/statuses/retweet', 'api_statuses_repeat', true, API_METHOD_POST);
2106
2107 /**
2108  * Destroys a specific status.
2109  *
2110  * @param string $type Return type (atom, rss, xml, json)
2111  *
2112  * @return array|string
2113  * @throws BadRequestException
2114  * @throws ForbiddenException
2115  * @throws ImagickException
2116  * @throws InternalServerErrorException
2117  * @throws UnauthorizedException
2118  * @see https://developer.twitter.com/en/docs/tweets/post-and-engage/api-reference/post-statuses-destroy-id
2119  */
2120 function api_statuses_destroy($type)
2121 {
2122         $a = DI::app();
2123
2124         if (api_user() === false) {
2125                 throw new ForbiddenException();
2126         }
2127
2128         api_get_user($a);
2129
2130         // params
2131         $id = intval(DI::args()->getArgv()[3] ?? 0);
2132
2133         if ($id == 0) {
2134                 $id = intval($_REQUEST['id'] ?? 0);
2135         }
2136
2137         // Hotot workaround
2138         if ($id == 0) {
2139                 $id = intval(DI::args()->getArgv()[4] ?? 0);
2140         }
2141
2142         Logger::log('API: api_statuses_destroy: '.$id);
2143
2144         $ret = api_statuses_show($type);
2145
2146         Item::deleteForUser(['id' => $id], api_user());
2147
2148         return $ret;
2149 }
2150
2151 /// @TODO move to top of file or somewhere better
2152 api_register_func('api/statuses/destroy', 'api_statuses_destroy', true, API_METHOD_DELETE);
2153
2154 /**
2155  * Returns the most recent mentions.
2156  *
2157  * @param string $type Return type (atom, rss, xml, json)
2158  *
2159  * @return array|string
2160  * @throws BadRequestException
2161  * @throws ForbiddenException
2162  * @throws ImagickException
2163  * @throws InternalServerErrorException
2164  * @throws UnauthorizedException
2165  * @see http://developer.twitter.com/doc/get/statuses/mentions
2166  */
2167 function api_statuses_mentions($type)
2168 {
2169         $a = DI::app();
2170         $user_info = api_get_user($a);
2171
2172         if (api_user() === false || $user_info === false) {
2173                 throw new ForbiddenException();
2174         }
2175
2176         unset($_REQUEST["user_id"]);
2177         unset($_GET["user_id"]);
2178
2179         unset($_REQUEST["screen_name"]);
2180         unset($_GET["screen_name"]);
2181
2182         // get last network messages
2183
2184         // params
2185         $since_id = intval($_REQUEST['since_id'] ?? 0);
2186         $max_id   = intval($_REQUEST['max_id']   ?? 0);
2187         $count    = intval($_REQUEST['count']    ?? 20);
2188         $page     = intval($_REQUEST['page']     ?? 1);
2189
2190         $start = max(0, ($page - 1) * $count);
2191
2192         $query = "`gravity` IN (?, ?) AND `uri-id` IN
2193                 (SELECT `uri-id` FROM `post-user-notification` WHERE `uid` = ? AND `notification-type` & ? != 0 ORDER BY `uri-id`)
2194                 AND (`uid` = 0 OR (`uid` = ? AND NOT `global`)) AND `id` > ?";
2195
2196         $condition = [GRAVITY_PARENT, GRAVITY_COMMENT, api_user(),
2197                 Post\UserNotification::NOTIF_EXPLICIT_TAGGED | Post\UserNotification::NOTIF_IMPLICIT_TAGGED |
2198                 Post\UserNotification::NOTIF_THREAD_COMMENT | Post\UserNotification::NOTIF_DIRECT_COMMENT |
2199                 Post\UserNotification::NOTIF_DIRECT_THREAD_COMMENT,
2200                 api_user(), $since_id];
2201
2202         if ($max_id > 0) {
2203                 $query .= " AND `id` <= ?";
2204                 $condition[] = $max_id;
2205         }
2206
2207         array_unshift($condition, $query);
2208
2209         $params = ['order' => ['id' => true], 'limit' => [$start, $count]];
2210         $statuses = Post::selectForUser(api_user(), [], $condition, $params);
2211
2212         $ret = api_format_items(Post::toArray($statuses), $user_info, false, $type);
2213
2214         $data = ['status' => $ret];
2215         switch ($type) {
2216                 case "atom":
2217                         break;
2218                 case "rss":
2219                         $data = api_rss_extra($a, $data, $user_info);
2220                         break;
2221         }
2222
2223         return api_format_data("statuses", $type, $data);
2224 }
2225
2226 /// @TODO move to top of file or somewhere better
2227 api_register_func('api/statuses/mentions', 'api_statuses_mentions', true);
2228 api_register_func('api/statuses/replies', 'api_statuses_mentions', true);
2229
2230 /**
2231  * Returns the most recent statuses posted by the user.
2232  *
2233  * @param string $type Either "json" or "xml"
2234  * @return string|array
2235  * @throws BadRequestException
2236  * @throws ForbiddenException
2237  * @throws ImagickException
2238  * @throws InternalServerErrorException
2239  * @throws UnauthorizedException
2240  * @see   https://developer.twitter.com/en/docs/tweets/timelines/api-reference/get-statuses-user_timeline
2241  */
2242 function api_statuses_user_timeline($type)
2243 {
2244         $a = DI::app();
2245         $user_info = api_get_user($a);
2246
2247         if (api_user() === false || $user_info === false) {
2248                 throw new ForbiddenException();
2249         }
2250
2251         Logger::info('api_statuses_user_timeline', ['api_user' => api_user(), 'user_info' => $user_info, '_REQUEST' => $_REQUEST]);
2252
2253         $since_id        = $_REQUEST['since_id'] ?? 0;
2254         $max_id          = $_REQUEST['max_id'] ?? 0;
2255         $exclude_replies = !empty($_REQUEST['exclude_replies']);
2256         $conversation_id = $_REQUEST['conversation_id'] ?? 0;
2257
2258         // pagination
2259         $count = $_REQUEST['count'] ?? 20;
2260         $page  = $_REQUEST['page'] ?? 1;
2261
2262         $start = max(0, ($page - 1) * $count);
2263
2264         $condition = ["`uid` = ? AND `gravity` IN (?, ?) AND `id` > ? AND `contact-id` = ?",
2265                 api_user(), GRAVITY_PARENT, GRAVITY_COMMENT, $since_id, $user_info['cid']];
2266
2267         if ($user_info['self'] == 1) {
2268                 $condition[0] .= ' AND `wall` ';
2269         }
2270
2271         if ($exclude_replies) {
2272                 $condition[0] .= ' AND `gravity` = ?';
2273                 $condition[] = GRAVITY_PARENT;
2274         }
2275
2276         if ($conversation_id > 0) {
2277                 $condition[0] .= " AND `parent` = ?";
2278                 $condition[] = $conversation_id;
2279         }
2280
2281         if ($max_id > 0) {
2282                 $condition[0] .= " AND `id` <= ?";
2283                 $condition[] = $max_id;
2284         }
2285         $params = ['order' => ['id' => true], 'limit' => [$start, $count]];
2286         $statuses = Post::selectForUser(api_user(), [], $condition, $params);
2287
2288         $ret = api_format_items(Post::toArray($statuses), $user_info, true, $type);
2289
2290         bindComments($ret);
2291
2292         $data = ['status' => $ret];
2293         switch ($type) {
2294                 case "atom":
2295                         break;
2296                 case "rss":
2297                         $data = api_rss_extra($a, $data, $user_info);
2298                         break;
2299         }
2300
2301         return api_format_data("statuses", $type, $data);
2302 }
2303
2304 /// @TODO move to top of file or somewhere better
2305 api_register_func('api/statuses/user_timeline', 'api_statuses_user_timeline', true);
2306
2307 /**
2308  * Star/unstar an item.
2309  * param: id : id of the item
2310  *
2311  * @param string $type Return type (atom, rss, xml, json)
2312  *
2313  * @return array|string
2314  * @throws BadRequestException
2315  * @throws ForbiddenException
2316  * @throws ImagickException
2317  * @throws InternalServerErrorException
2318  * @throws UnauthorizedException
2319  * @see https://web.archive.org/web/20131019055350/https://dev.twitter.com/docs/api/1/post/favorites/create/%3Aid
2320  */
2321 function api_favorites_create_destroy($type)
2322 {
2323         $a = DI::app();
2324
2325         if (api_user() === false) {
2326                 throw new ForbiddenException();
2327         }
2328
2329         // for versioned api.
2330         /// @TODO We need a better global soluton
2331         $action_argv_id = 2;
2332         if (count(DI::args()->getArgv()) > 1 && DI::args()->getArgv()[1] == "1.1") {
2333                 $action_argv_id = 3;
2334         }
2335
2336         if (DI::args()->getArgc() <= $action_argv_id) {
2337                 throw new BadRequestException("Invalid request.");
2338         }
2339         $action = str_replace("." . $type, "", DI::args()->getArgv()[$action_argv_id]);
2340         if (DI::args()->getArgc() == $action_argv_id + 2) {
2341                 $itemid = intval(DI::args()->getArgv()[$action_argv_id + 1] ?? 0);
2342         } else {
2343                 $itemid = intval($_REQUEST['id'] ?? 0);
2344         }
2345
2346         $item = Post::selectFirstForUser(api_user(), [], ['id' => $itemid, 'uid' => api_user()]);
2347
2348         if (!DBA::isResult($item)) {
2349                 throw new BadRequestException("Invalid item.");
2350         }
2351
2352         switch ($action) {
2353                 case "create":
2354                         $item['starred'] = 1;
2355                         break;
2356                 case "destroy":
2357                         $item['starred'] = 0;
2358                         break;
2359                 default:
2360                         throw new BadRequestException("Invalid action ".$action);
2361         }
2362
2363         $r = Item::update(['starred' => $item['starred']], ['id' => $itemid]);
2364
2365         if ($r === false) {
2366                 throw new InternalServerErrorException("DB error");
2367         }
2368
2369
2370         $user_info = api_get_user($a);
2371         $rets = api_format_items([$item], $user_info, false, $type);
2372         $ret = $rets[0];
2373
2374         $data = ['status' => $ret];
2375         switch ($type) {
2376                 case "atom":
2377                         break;
2378                 case "rss":
2379                         $data = api_rss_extra($a, $data, $user_info);
2380                         break;
2381         }
2382
2383         return api_format_data("status", $type, $data);
2384 }
2385
2386 /// @TODO move to top of file or somewhere better
2387 api_register_func('api/favorites/create', 'api_favorites_create_destroy', true, API_METHOD_POST);
2388 api_register_func('api/favorites/destroy', 'api_favorites_create_destroy', true, API_METHOD_DELETE);
2389
2390 /**
2391  * Returns the most recent favorite statuses.
2392  *
2393  * @param string $type Return type (atom, rss, xml, json)
2394  *
2395  * @return string|array
2396  * @throws BadRequestException
2397  * @throws ForbiddenException
2398  * @throws ImagickException
2399  * @throws InternalServerErrorException
2400  * @throws UnauthorizedException
2401  */
2402 function api_favorites($type)
2403 {
2404         global $called_api;
2405
2406         $a = DI::app();
2407         $user_info = api_get_user($a);
2408
2409         if (api_user() === false || $user_info === false) {
2410                 throw new ForbiddenException();
2411         }
2412
2413         $called_api = [];
2414
2415         // in friendica starred item are private
2416         // return favorites only for self
2417         Logger::info(API_LOG_PREFIX . 'for {self}', ['module' => 'api', 'action' => 'favorites', 'self' => $user_info['self']]);
2418
2419         if ($user_info['self'] == 0) {
2420                 $ret = [];
2421         } else {
2422                 // params
2423                 $since_id = $_REQUEST['since_id'] ?? 0;
2424                 $max_id = $_REQUEST['max_id'] ?? 0;
2425                 $count = $_GET['count'] ?? 20;
2426                 $page = $_REQUEST['page'] ?? 1;
2427
2428                 $start = max(0, ($page - 1) * $count);
2429
2430                 $condition = ["`uid` = ? AND `gravity` IN (?, ?) AND `id` > ? AND `starred`",
2431                         api_user(), GRAVITY_PARENT, GRAVITY_COMMENT, $since_id];
2432
2433                 $params = ['order' => ['id' => true], 'limit' => [$start, $count]];
2434
2435                 if ($max_id > 0) {
2436                         $condition[0] .= " AND `id` <= ?";
2437                         $condition[] = $max_id;
2438                 }
2439
2440                 $statuses = Post::selectForUser(api_user(), [], $condition, $params);
2441
2442                 $ret = api_format_items(Post::toArray($statuses), $user_info, false, $type);
2443         }
2444
2445         bindComments($ret);
2446
2447         $data = ['status' => $ret];
2448         switch ($type) {
2449                 case "atom":
2450                         break;
2451                 case "rss":
2452                         $data = api_rss_extra($a, $data, $user_info);
2453                         break;
2454         }
2455
2456         return api_format_data("statuses", $type, $data);
2457 }
2458
2459 /// @TODO move to top of file or somewhere better
2460 api_register_func('api/favorites', 'api_favorites', true);
2461
2462 /**
2463  *
2464  * @param array $item
2465  * @param array $recipient
2466  * @param array $sender
2467  *
2468  * @return array
2469  * @throws InternalServerErrorException
2470  */
2471 function api_format_messages($item, $recipient, $sender)
2472 {
2473         // standard meta information
2474         $ret = [
2475                 'id'                    => $item['id'],
2476                 'sender_id'             => $sender['id'],
2477                 'text'                  => "",
2478                 'recipient_id'          => $recipient['id'],
2479                 'created_at'            => api_date($item['created'] ?? DateTimeFormat::utcNow()),
2480                 'sender_screen_name'    => $sender['screen_name'],
2481                 'recipient_screen_name' => $recipient['screen_name'],
2482                 'sender'                => $sender,
2483                 'recipient'             => $recipient,
2484                 'title'                 => "",
2485                 'friendica_seen'        => $item['seen'] ?? 0,
2486                 'friendica_parent_uri'  => $item['parent-uri'] ?? '',
2487         ];
2488
2489         // "uid" and "self" are only needed for some internal stuff, so remove it from here
2490         if (isset($ret['sender']['uid'])) {
2491                 unset($ret['sender']['uid']);
2492         }
2493         if (isset($ret['sender']['self'])) {
2494                 unset($ret['sender']['self']);
2495         }
2496         if (isset($ret['recipient']['uid'])) {
2497                 unset($ret['recipient']['uid']);
2498         }
2499         if (isset($ret['recipient']['self'])) {
2500                 unset($ret['recipient']['self']);
2501         }
2502
2503         //don't send title to regular StatusNET requests to avoid confusing these apps
2504         if (!empty($_GET['getText'])) {
2505                 $ret['title'] = $item['title'];
2506                 if ($_GET['getText'] == 'html') {
2507                         $ret['text'] = BBCode::convertForUriId($item['uri-id'], $item['body'], BBCode::API);
2508                 } elseif ($_GET['getText'] == 'plain') {
2509                         $ret['text'] = trim(HTML::toPlaintext(BBCode::convertForUriId($item['uri-id'], api_clean_plain_items($item['body']), BBCode::API), 0));
2510                 }
2511         } else {
2512                 $ret['text'] = $item['title'] . "\n" . HTML::toPlaintext(BBCode::convertForUriId($item['uri-id'], api_clean_plain_items($item['body']), BBCode::API), 0);
2513         }
2514         if (!empty($_GET['getUserObjects']) && $_GET['getUserObjects'] == 'false') {
2515                 unset($ret['sender']);
2516                 unset($ret['recipient']);
2517         }
2518
2519         return $ret;
2520 }
2521
2522 /**
2523  *
2524  * @param array $item
2525  *
2526  * @return array
2527  * @throws InternalServerErrorException
2528  */
2529 function api_convert_item($item)
2530 {
2531         $body = api_add_attachments_to_body($item);
2532
2533         $entities = api_get_entitities($statustext, $body, $item['uri-id']);
2534
2535         // Add pictures to the attachment array and remove them from the body
2536         $attachments = api_get_attachments($body, $item['uri-id']);
2537
2538         // Workaround for ostatus messages where the title is identically to the body
2539         $html = BBCode::convertForUriId($item['uri-id'], api_clean_plain_items($body), BBCode::API);
2540         $statusbody = trim(HTML::toPlaintext($html, 0));
2541
2542         // handle data: images
2543         $statusbody = api_format_items_embeded_images($item, $statusbody);
2544
2545         $statustitle = trim($item['title']);
2546
2547         if (($statustitle != '') && (strpos($statusbody, $statustitle) !== false)) {
2548                 $statustext = trim($statusbody);
2549         } else {
2550                 $statustext = trim($statustitle."\n\n".$statusbody);
2551         }
2552
2553         if ((($item['network'] ?? Protocol::PHANTOM) == Protocol::FEED) && (mb_strlen($statustext)> 1000)) {
2554                 $statustext = mb_substr($statustext, 0, 1000) . "... \n" . ($item['plink'] ?? '');
2555         }
2556
2557         $statushtml = BBCode::convertForUriId($item['uri-id'], BBCode::removeAttachment($body), BBCode::API);
2558
2559         // Workaround for clients with limited HTML parser functionality
2560         $search = ["<br>", "<blockquote>", "</blockquote>",
2561                         "<h1>", "</h1>", "<h2>", "</h2>",
2562                         "<h3>", "</h3>", "<h4>", "</h4>",
2563                         "<h5>", "</h5>", "<h6>", "</h6>"];
2564         $replace = ["<br>", "<br><blockquote>", "</blockquote><br>",
2565                         "<br><h1>", "</h1><br>", "<br><h2>", "</h2><br>",
2566                         "<br><h3>", "</h3><br>", "<br><h4>", "</h4><br>",
2567                         "<br><h5>", "</h5><br>", "<br><h6>", "</h6><br>"];
2568         $statushtml = str_replace($search, $replace, $statushtml);
2569
2570         if ($item['title'] != "") {
2571                 $statushtml = "<br><h4>" . BBCode::convertForUriId($item['uri-id'], $item['title']) . "</h4><br>" . $statushtml;
2572         }
2573
2574         do {
2575                 $oldtext = $statushtml;
2576                 $statushtml = str_replace("<br><br>", "<br>", $statushtml);
2577         } while ($oldtext != $statushtml);
2578
2579         if (substr($statushtml, 0, 4) == '<br>') {
2580                 $statushtml = substr($statushtml, 4);
2581         }
2582
2583         if (substr($statushtml, 0, -4) == '<br>') {
2584                 $statushtml = substr($statushtml, -4);
2585         }
2586
2587         // feeds without body should contain the link
2588         if ((($item['network'] ?? Protocol::PHANTOM) == Protocol::FEED) && (strlen($item['body']) == 0)) {
2589                 $statushtml .= BBCode::convertForUriId($item['uri-id'], $item['plink']);
2590         }
2591
2592         return [
2593                 "text" => $statustext,
2594                 "html" => $statushtml,
2595                 "attachments" => $attachments,
2596                 "entities" => $entities
2597         ];
2598 }
2599
2600 /**
2601  * Add media attachments to the body
2602  *
2603  * @param array $item
2604  * @return string body with added media
2605  */
2606 function api_add_attachments_to_body(array $item)
2607 {
2608         $body = Post\Media::addAttachmentsToBody($item['uri-id'], $item['body']);
2609
2610         if (strpos($body, '[/img]') !== false) {
2611                 return $body;
2612         }
2613
2614         foreach (Post\Media::getByURIId($item['uri-id'], [Post\Media::HTML]) as $media) {
2615                 if (!empty($media['preview'])) {
2616                         $description = $media['description'] ?: $media['name'];
2617                         if (!empty($description)) {
2618                                 $body .= "\n[img=" . $media['preview'] . ']' . $description .'[/img]';
2619                         } else {
2620                                 $body .= "\n[img]" . $media['preview'] .'[/img]';
2621                         }
2622                 }
2623         }
2624
2625         return $body;
2626 }
2627
2628 /**
2629  *
2630  * @param string $body
2631  * @param int    $uriid
2632  *
2633  * @return array
2634  * @throws InternalServerErrorException
2635  */
2636 function api_get_attachments(&$body, $uriid)
2637 {
2638         $body = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '[img]$3[/img]', $body);
2639         $body = preg_replace("/\[img\=(.*?)\](.*?)\[\/img\]/ism", '[img]$1[/img]', $body);
2640
2641         $URLSearchString = "^\[\]";
2642         if (!preg_match_all("/\[img\]([$URLSearchString]*)\[\/img\]/ism", $body, $images)) {
2643                 return [];
2644         }
2645
2646         // Remove all embedded pictures, since they are added as attachments
2647         foreach ($images[0] as $orig) {
2648                 $body = str_replace($orig, '', $body);
2649         }
2650
2651         $attachments = [];
2652
2653         foreach ($images[1] as $image) {
2654                 $imagedata = Images::getInfoFromURLCached($image);
2655
2656                 if ($imagedata) {
2657                         $attachments[] = ["url" => Post\Link::getByLink($uriid, $image), "mimetype" => $imagedata["mime"], "size" => $imagedata["size"]];
2658                 }
2659         }
2660
2661         return $attachments;
2662 }
2663
2664 /**
2665  *
2666  * @param string $text
2667  * @param string $bbcode
2668  *
2669  * @return array
2670  * @throws InternalServerErrorException
2671  * @todo Links at the first character of the post
2672  */
2673 function api_get_entitities(&$text, $bbcode, $uriid)
2674 {
2675         $include_entities = strtolower($_REQUEST['include_entities'] ?? 'false');
2676
2677         if ($include_entities != "true") {
2678                 preg_match_all("/\[img](.*?)\[\/img\]/ism", $bbcode, $images);
2679
2680                 foreach ($images[1] as $image) {
2681                         $replace = Post\Link::getByLink($uriid, $image);
2682                         $text = str_replace($image, $replace, $text);
2683                 }
2684                 return [];
2685         }
2686
2687         $bbcode = BBCode::cleanPictureLinks($bbcode);
2688
2689         // Change pure links in text to bbcode uris
2690         $bbcode = preg_replace("/([^\]\='".'"'."]|^)(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/ism", '$1[url=$2]$2[/url]', $bbcode);
2691
2692         $entities = [];
2693         $entities["hashtags"] = [];
2694         $entities["symbols"] = [];
2695         $entities["urls"] = [];
2696         $entities["user_mentions"] = [];
2697
2698         $URLSearchString = "^\[\]";
2699
2700         $bbcode = preg_replace("/#\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '#$2', $bbcode);
2701
2702         $bbcode = preg_replace("/\[bookmark\=([$URLSearchString]*)\](.*?)\[\/bookmark\]/ism", '[url=$1]$2[/url]', $bbcode);
2703         $bbcode = preg_replace("/\[video\](.*?)\[\/video\]/ism", '[url=$1]$1[/url]', $bbcode);
2704
2705         $bbcode = preg_replace(
2706                 "/\[youtube\]([A-Za-z0-9\-_=]+)(.*?)\[\/youtube\]/ism",
2707                 '[url=https://www.youtube.com/watch?v=$1]https://www.youtube.com/watch?v=$1[/url]',
2708                 $bbcode
2709         );
2710         $bbcode = preg_replace("/\[youtube\](.*?)\[\/youtube\]/ism", '[url=$1]$1[/url]', $bbcode);
2711
2712         $bbcode = preg_replace(
2713                 "/\[vimeo\]([0-9]+)(.*?)\[\/vimeo\]/ism",
2714                 '[url=https://vimeo.com/$1]https://vimeo.com/$1[/url]',
2715                 $bbcode
2716         );
2717         $bbcode = preg_replace("/\[vimeo\](.*?)\[\/vimeo\]/ism", '[url=$1]$1[/url]', $bbcode);
2718
2719         $bbcode = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '[img]$3[/img]', $bbcode);
2720
2721         preg_match_all("/\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", $bbcode, $urls);
2722
2723         $ordered_urls = [];
2724         foreach ($urls[1] as $id => $url) {
2725                 $start = iconv_strpos($text, $url, 0, "UTF-8");
2726                 if (!($start === false)) {
2727                         $ordered_urls[$start] = ["url" => $url, "title" => $urls[2][$id]];
2728                 }
2729         }
2730
2731         ksort($ordered_urls);
2732
2733         $offset = 0;
2734
2735         foreach ($ordered_urls as $url) {
2736                 if ((substr($url["title"], 0, 7) != "http://") && (substr($url["title"], 0, 8) != "https://")
2737                         && !strpos($url["title"], "http://") && !strpos($url["title"], "https://")
2738                 ) {
2739                         $display_url = $url["title"];
2740                 } else {
2741                         $display_url = str_replace(["http://www.", "https://www."], ["", ""], $url["url"]);
2742                         $display_url = str_replace(["http://", "https://"], ["", ""], $display_url);
2743
2744                         if (strlen($display_url) > 26) {
2745                                 $display_url = substr($display_url, 0, 25)."…";
2746                         }
2747                 }
2748
2749                 $start = iconv_strpos($text, $url["url"], $offset, "UTF-8");
2750                 if (!($start === false)) {
2751                         $entities["urls"][] = ["url" => $url["url"],
2752                                                         "expanded_url" => $url["url"],
2753                                                         "display_url" => $display_url,
2754                                                         "indices" => [$start, $start+strlen($url["url"])]];
2755                         $offset = $start + 1;
2756                 }
2757         }
2758
2759         preg_match_all("/\[img\=(.*?)\](.*?)\[\/img\]/ism", $bbcode, $images, PREG_SET_ORDER);
2760         $ordered_images = [];
2761         foreach ($images as $image) {
2762                 $start = iconv_strpos($text, $image[1], 0, "UTF-8");
2763                 if (!($start === false)) {
2764                         $ordered_images[$start] = ['url' => $image[1], 'alt' => $image[2]];
2765                 }
2766         }
2767
2768         preg_match_all("/\[img](.*?)\[\/img\]/ism", $bbcode, $images);
2769         foreach ($images[1] as $image) {
2770                 $start = iconv_strpos($text, $image, 0, "UTF-8");
2771                 if (!($start === false)) {
2772                         $ordered_images[$start] = ['url' => $image, 'alt' => ''];
2773                 }
2774         }
2775
2776         $offset = 0;
2777
2778         foreach ($ordered_images as $image) {
2779                 $url = $image['url'];
2780                 $ext_alt_text = $image['alt'];
2781
2782                 $display_url = str_replace(["http://www.", "https://www."], ["", ""], $url);
2783                 $display_url = str_replace(["http://", "https://"], ["", ""], $display_url);
2784
2785                 if (strlen($display_url) > 26) {
2786                         $display_url = substr($display_url, 0, 25)."…";
2787                 }
2788
2789                 $start = iconv_strpos($text, $url, $offset, "UTF-8");
2790                 if (!($start === false)) {
2791                         $image = Images::getInfoFromURLCached($url);
2792                         if ($image) {
2793                                 $media_url = Post\Link::getByLink($uriid, $url);
2794                                 $sizes["medium"] = ["w" => $image[0], "h" => $image[1], "resize" => "fit"];
2795
2796                                 $entities["media"][] = [
2797                                                         "id" => $start+1,
2798                                                         "id_str" => (string) ($start + 1),
2799                                                         "indices" => [$start, $start+strlen($url)],
2800                                                         "media_url" => Strings::normaliseLink($media_url),
2801                                                         "media_url_https" => $media_url,
2802                                                         "url" => $url,
2803                                                         "display_url" => $display_url,
2804                                                         "expanded_url" => $url,
2805                                                         "ext_alt_text" => $ext_alt_text,
2806                                                         "type" => "photo",
2807                                                         "sizes" => $sizes];
2808                         }
2809                         $offset = $start + 1;
2810                 }
2811         }
2812
2813         return $entities;
2814 }
2815
2816 /**
2817  *
2818  * @param array $item
2819  * @param string $text
2820  *
2821  * @return string
2822  */
2823 function api_format_items_embeded_images($item, $text)
2824 {
2825         $text = preg_replace_callback(
2826                 '|data:image/([^;]+)[^=]+=*|m',
2827                 function () use ($item) {
2828                         return DI::baseUrl() . '/display/' . $item['guid'];
2829                 },
2830                 $text
2831         );
2832         return $text;
2833 }
2834
2835 /**
2836  * return <a href='url'>name</a> as array
2837  *
2838  * @param string $txt text
2839  * @return array
2840  *                      'name' => 'name',
2841  *                      'url => 'url'
2842  */
2843 function api_contactlink_to_array($txt)
2844 {
2845         $match = [];
2846         $r = preg_match_all('|<a href="([^"]*)">([^<]*)</a>|', $txt, $match);
2847         if ($r && count($match)==3) {
2848                 $res = [
2849                         'name' => $match[2],
2850                         'url' => $match[1]
2851                 ];
2852         } else {
2853                 $res = [
2854                         'name' => $txt,
2855                         'url' => ""
2856                 ];
2857         }
2858         return $res;
2859 }
2860
2861
2862 /**
2863  * return likes, dislikes and attend status for item
2864  *
2865  * @param array  $item array
2866  * @param string $type Return type (atom, rss, xml, json)
2867  *
2868  * @return array
2869  *            likes => int count,
2870  *            dislikes => int count
2871  * @throws BadRequestException
2872  * @throws ImagickException
2873  * @throws InternalServerErrorException
2874  * @throws UnauthorizedException
2875  */
2876 function api_format_items_activities($item, $type = "json")
2877 {
2878         $a = DI::app();
2879
2880         $activities = [
2881                 'like' => [],
2882                 'dislike' => [],
2883                 'attendyes' => [],
2884                 'attendno' => [],
2885                 'attendmaybe' => [],
2886                 'announce' => [],
2887         ];
2888
2889         $condition = ['uid' => $item['uid'], 'thr-parent' => $item['uri'], 'gravity' => GRAVITY_ACTIVITY];
2890         $ret = Post::selectForUser($item['uid'], ['author-id', 'verb'], $condition);
2891
2892         while ($parent_item = Post::fetch($ret)) {
2893                 // not used as result should be structured like other user data
2894                 //builtin_activity_puller($i, $activities);
2895
2896                 // get user data and add it to the array of the activity
2897                 $user = api_get_user($a, $parent_item['author-id']);
2898                 switch ($parent_item['verb']) {
2899                         case Activity::LIKE:
2900                                 $activities['like'][] = $user;
2901                                 break;
2902                         case Activity::DISLIKE:
2903                                 $activities['dislike'][] = $user;
2904                                 break;
2905                         case Activity::ATTEND:
2906                                 $activities['attendyes'][] = $user;
2907                                 break;
2908                         case Activity::ATTENDNO:
2909                                 $activities['attendno'][] = $user;
2910                                 break;
2911                         case Activity::ATTENDMAYBE:
2912                                 $activities['attendmaybe'][] = $user;
2913                                 break;
2914                         case Activity::ANNOUNCE:
2915                                 $activities['announce'][] = $user;
2916                                 break;
2917                         default:
2918                                 break;
2919                 }
2920         }
2921
2922         DBA::close($ret);
2923
2924         if ($type == "xml") {
2925                 $xml_activities = [];
2926                 foreach ($activities as $k => $v) {
2927                         // change xml element from "like" to "friendica:like"
2928                         $xml_activities["friendica:".$k] = $v;
2929                         // add user data into xml output
2930                         $k_user = 0;
2931                         foreach ($v as $user) {
2932                                 $xml_activities["friendica:".$k][$k_user++.":user"] = $user;
2933                         }
2934                 }
2935                 $activities = $xml_activities;
2936         }
2937
2938         return $activities;
2939 }
2940
2941 /**
2942  * format items to be returned by api
2943  *
2944  * @param array  $items       array of items
2945  * @param array  $user_info
2946  * @param bool   $filter_user filter items by $user_info
2947  * @param string $type        Return type (atom, rss, xml, json)
2948  * @return array
2949  * @throws BadRequestException
2950  * @throws ImagickException
2951  * @throws InternalServerErrorException
2952  * @throws UnauthorizedException
2953  */
2954 function api_format_items($items, $user_info, $filter_user = false, $type = "json")
2955 {
2956         $a = Friendica\DI::app();
2957
2958         $ret = [];
2959
2960         if (empty($items)) {
2961                 return $ret;
2962         }
2963
2964         foreach ((array)$items as $item) {
2965                 list($status_user, $author_user, $owner_user) = api_item_get_user($a, $item);
2966
2967                 // Look if the posts are matching if they should be filtered by user id
2968                 if ($filter_user && ($status_user["id"] != $user_info["id"])) {
2969                         continue;
2970                 }
2971
2972                 $status = api_format_item($item, $type, $status_user, $author_user, $owner_user);
2973
2974                 $ret[] = $status;
2975         }
2976
2977         return $ret;
2978 }
2979
2980 /**
2981  * @param array  $item       Item record
2982  * @param string $type       Return format (atom, rss, xml, json)
2983  * @param array $status_user User record of the item author, can be provided by api_item_get_user()
2984  * @param array $author_user User record of the item author, can be provided by api_item_get_user()
2985  * @param array $owner_user  User record of the item owner, can be provided by api_item_get_user()
2986  * @return array API-formatted status
2987  * @throws BadRequestException
2988  * @throws ImagickException
2989  * @throws InternalServerErrorException
2990  * @throws UnauthorizedException
2991  */
2992 function api_format_item($item, $type = "json", $status_user = null, $author_user = null, $owner_user = null)
2993 {
2994         $a = Friendica\DI::app();
2995
2996         if (empty($status_user) || empty($author_user) || empty($owner_user)) {
2997                 list($status_user, $author_user, $owner_user) = api_item_get_user($a, $item);
2998         }
2999
3000         DI::contentItem()->localize($item);
3001
3002         $in_reply_to = api_in_reply_to($item);
3003
3004         $converted = api_convert_item($item);
3005
3006         if ($type == "xml") {
3007                 $geo = "georss:point";
3008         } else {
3009                 $geo = "geo";
3010         }
3011
3012         $status = [
3013                 'text'          => $converted["text"],
3014                 'truncated' => false,
3015                 'created_at'=> api_date($item['created']),
3016                 'in_reply_to_status_id' => $in_reply_to['status_id'],
3017                 'in_reply_to_status_id_str' => $in_reply_to['status_id_str'],
3018                 'source'    => (($item['app']) ? $item['app'] : 'web'),
3019                 'id'            => intval($item['id']),
3020                 'id_str'        => (string) intval($item['id']),
3021                 'in_reply_to_user_id' => $in_reply_to['user_id'],
3022                 'in_reply_to_user_id_str' => $in_reply_to['user_id_str'],
3023                 'in_reply_to_screen_name' => $in_reply_to['screen_name'],
3024                 $geo => null,
3025                 'favorited' => $item['starred'] ? true : false,
3026                 'user' =>  $status_user,
3027                 'friendica_author' => $author_user,
3028                 'friendica_owner' => $owner_user,
3029                 'friendica_private' => $item['private'] == Item::PRIVATE,
3030                 //'entities' => NULL,
3031                 'statusnet_html' => $converted["html"],
3032                 'statusnet_conversation_id' => $item['parent'],
3033                 'external_url' => DI::baseUrl() . "/display/" . $item['guid'],
3034                 'friendica_activities' => api_format_items_activities($item, $type),
3035                 'friendica_title' => $item['title'],
3036                 'friendica_html' => BBCode::convertForUriId($item['uri-id'], $item['body'], BBCode::EXTERNAL)
3037         ];
3038
3039         if (count($converted["attachments"]) > 0) {
3040                 $status["attachments"] = $converted["attachments"];
3041         }
3042
3043         if (count($converted["entities"]) > 0) {
3044                 $status["entities"] = $converted["entities"];
3045         }
3046
3047         if ($status["source"] == 'web') {
3048                 $status["source"] = ContactSelector::networkToName($item['author-network'], $item['author-link'], $item['network']);
3049         } elseif (ContactSelector::networkToName($item['author-network'], $item['author-link'], $item['network']) != $status["source"]) {
3050                 $status["source"] = trim($status["source"].' ('.ContactSelector::networkToName($item['author-network'], $item['author-link'], $item['network']).')');
3051         }
3052
3053         $retweeted_item = [];
3054         $quoted_item = [];
3055
3056         if (empty($retweeted_item) && ($item['owner-id'] == $item['author-id'])) {
3057                 $announce = api_get_announce($item);
3058                 if (!empty($announce)) {
3059                         $retweeted_item = $item;
3060                         $item = $announce;
3061                         $status['friendica_owner'] = api_get_user($a, $announce['author-id']);
3062                 }
3063         }
3064
3065         if (!empty($quoted_item)) {
3066                 if ($quoted_item['id'] != $item['id']) {
3067                         $quoted_status = api_format_item($quoted_item);
3068                         /// @todo Only remove the attachments that are also contained in the quotes status
3069                         unset($status['attachments']);
3070                         unset($status['entities']);
3071                 } else {
3072                         $conv_quoted = api_convert_item($quoted_item);
3073                         $quoted_status = $status;
3074                         unset($quoted_status['attachments']);
3075                         unset($quoted_status['entities']);
3076                         unset($quoted_status['statusnet_conversation_id']);
3077                         $quoted_status['text'] = $conv_quoted['text'];
3078                         $quoted_status['statusnet_html'] = $conv_quoted['html'];
3079                         try {
3080                                 $quoted_status["user"] = api_get_user($a, $quoted_item["author-id"]);
3081                         } catch (BadRequestException $e) {
3082                                 // user not found. should be found?
3083                                 /// @todo check if the user should be always found
3084                                 $quoted_status["user"] = [];
3085                         }
3086                 }
3087                 unset($quoted_status['friendica_author']);
3088                 unset($quoted_status['friendica_owner']);
3089                 unset($quoted_status['friendica_activities']);
3090                 unset($quoted_status['friendica_private']);
3091         }
3092
3093         if (!empty($retweeted_item)) {
3094                 $retweeted_status = $status;
3095                 unset($retweeted_status['friendica_author']);
3096                 unset($retweeted_status['friendica_owner']);
3097                 unset($retweeted_status['friendica_activities']);
3098                 unset($retweeted_status['friendica_private']);
3099                 unset($retweeted_status['statusnet_conversation_id']);
3100                 $status['user'] = $status['friendica_owner'];
3101                 try {
3102                         $retweeted_status["user"] = api_get_user($a, $retweeted_item["author-id"]);
3103                 } catch (BadRequestException $e) {
3104                         // user not found. should be found?
3105                         /// @todo check if the user should be always found
3106                         $retweeted_status["user"] = [];
3107                 }
3108
3109                 $rt_converted = api_convert_item($retweeted_item);
3110
3111                 $retweeted_status['text'] = $rt_converted["text"];
3112                 $retweeted_status['statusnet_html'] = $rt_converted["html"];
3113                 $retweeted_status['friendica_html'] = $rt_converted["html"];
3114                 $retweeted_status['created_at'] =  api_date($retweeted_item['created']);
3115
3116                 if (!empty($quoted_status)) {
3117                         $retweeted_status['quoted_status'] = $quoted_status;
3118                 }
3119
3120                 $status['friendica_author'] = $retweeted_status['user'];
3121                 $status['retweeted_status'] = $retweeted_status;
3122         } elseif (!empty($quoted_status)) {
3123                 $root_status = api_convert_item($item);
3124
3125                 $status['text'] = $root_status["text"];
3126                 $status['statusnet_html'] = $root_status["html"];
3127                 $status['quoted_status'] = $quoted_status;
3128         }
3129
3130         // "uid" and "self" are only needed for some internal stuff, so remove it from here
3131         unset($status["user"]["uid"]);
3132         unset($status["user"]["self"]);
3133
3134         if ($item["coord"] != "") {
3135                 $coords = explode(' ', $item["coord"]);
3136                 if (count($coords) == 2) {
3137                         if ($type == "json") {
3138                                 $status["geo"] = ['type' => 'Point',
3139                                         'coordinates' => [(float) $coords[0],
3140                                                 (float) $coords[1]]];
3141                         } else {// Not sure if this is the official format - if someone founds a documentation we can check
3142                                 $status["georss:point"] = $item["coord"];
3143                         }
3144                 }
3145         }
3146
3147         return $status;
3148 }
3149
3150 /**
3151  * Returns the remaining number of API requests available to the user before the API limit is reached.
3152  *
3153  * @param string $type Return type (atom, rss, xml, json)
3154  *
3155  * @return array|string
3156  * @throws Exception
3157  */
3158 function api_account_rate_limit_status($type)
3159 {
3160         if ($type == "xml") {
3161                 $hash = [
3162                                 'remaining-hits' => '150',
3163                                 '@attributes' => ["type" => "integer"],
3164                                 'hourly-limit' => '150',
3165                                 '@attributes2' => ["type" => "integer"],
3166                                 'reset-time' => DateTimeFormat::utc('now + 1 hour', DateTimeFormat::ATOM),
3167                                 '@attributes3' => ["type" => "datetime"],
3168                                 'reset_time_in_seconds' => strtotime('now + 1 hour'),
3169                                 '@attributes4' => ["type" => "integer"],
3170                         ];
3171         } else {
3172                 $hash = [
3173                                 'reset_time_in_seconds' => strtotime('now + 1 hour'),
3174                                 'remaining_hits' => '150',
3175                                 'hourly_limit' => '150',
3176                                 'reset_time' => api_date(DateTimeFormat::utc('now + 1 hour', DateTimeFormat::ATOM)),
3177                         ];
3178         }
3179
3180         return api_format_data('hash', $type, ['hash' => $hash]);
3181 }
3182
3183 /// @TODO move to top of file or somewhere better
3184 api_register_func('api/account/rate_limit_status', 'api_account_rate_limit_status', true);
3185
3186 /**
3187  * Returns the string "ok" in the requested format with a 200 OK HTTP status code.
3188  *
3189  * @param string $type Return type (atom, rss, xml, json)
3190  *
3191  * @return array|string
3192  */
3193 function api_help_test($type)
3194 {
3195         if ($type == 'xml') {
3196                 $ok = "true";
3197         } else {
3198                 $ok = "ok";
3199         }
3200
3201         return api_format_data('ok', $type, ["ok" => $ok]);
3202 }
3203
3204 /// @TODO move to top of file or somewhere better
3205 api_register_func('api/help/test', 'api_help_test', false);
3206
3207 /**
3208  * Returns all lists the user subscribes to.
3209  *
3210  * @param string $type Return type (atom, rss, xml, json)
3211  *
3212  * @return array|string
3213  * @see https://developer.twitter.com/en/docs/accounts-and-users/create-manage-lists/api-reference/get-lists-list
3214  */
3215 function api_lists_list($type)
3216 {
3217         $ret = [];
3218         /// @TODO $ret is not filled here?
3219         return api_format_data('lists', $type, ["lists_list" => $ret]);
3220 }
3221
3222 /// @TODO move to top of file or somewhere better
3223 api_register_func('api/lists/list', 'api_lists_list', true);
3224 api_register_func('api/lists/subscriptions', 'api_lists_list', true);
3225
3226 /**
3227  * Returns all groups the user owns.
3228  *
3229  * @param string $type Return type (atom, rss, xml, json)
3230  *
3231  * @return array|string
3232  * @throws BadRequestException
3233  * @throws ForbiddenException
3234  * @throws ImagickException
3235  * @throws InternalServerErrorException
3236  * @throws UnauthorizedException
3237  * @see https://developer.twitter.com/en/docs/accounts-and-users/create-manage-lists/api-reference/get-lists-ownerships
3238  */
3239 function api_lists_ownerships($type)
3240 {
3241         $a = DI::app();
3242
3243         if (api_user() === false) {
3244                 throw new ForbiddenException();
3245         }
3246
3247         // params
3248         $user_info = api_get_user($a);
3249         $uid = $user_info['uid'];
3250
3251         $groups = DBA::select('group', [], ['deleted' => 0, 'uid' => $uid]);
3252
3253         // loop through all groups
3254         $lists = [];
3255         foreach ($groups as $group) {
3256                 if ($group['visible']) {
3257                         $mode = 'public';
3258                 } else {
3259                         $mode = 'private';
3260                 }
3261                 $lists[] = [
3262                         'name' => $group['name'],
3263                         'id' => intval($group['id']),
3264                         'id_str' => (string) $group['id'],
3265                         'user' => $user_info,
3266                         'mode' => $mode
3267                 ];
3268         }
3269         return api_format_data("lists", $type, ['lists' => ['lists' => $lists]]);
3270 }
3271
3272 /// @TODO move to top of file or somewhere better
3273 api_register_func('api/lists/ownerships', 'api_lists_ownerships', true);
3274
3275 /**
3276  * Returns recent statuses from users in the specified group.
3277  *
3278  * @param string $type Return type (atom, rss, xml, json)
3279  *
3280  * @return array|string
3281  * @throws BadRequestException
3282  * @throws ForbiddenException
3283  * @throws ImagickException
3284  * @throws InternalServerErrorException
3285  * @throws UnauthorizedException
3286  * @see https://developer.twitter.com/en/docs/accounts-and-users/create-manage-lists/api-reference/get-lists-ownerships
3287  */
3288 function api_lists_statuses($type)
3289 {
3290         $a = DI::app();
3291
3292         $user_info = api_get_user($a);
3293         if (api_user() === false || $user_info === false) {
3294                 throw new ForbiddenException();
3295         }
3296
3297         unset($_REQUEST["user_id"]);
3298         unset($_GET["user_id"]);
3299
3300         unset($_REQUEST["screen_name"]);
3301         unset($_GET["screen_name"]);
3302
3303         if (empty($_REQUEST['list_id'])) {
3304                 throw new BadRequestException('list_id not specified');
3305         }
3306
3307         // params
3308         $count = $_REQUEST['count'] ?? 20;
3309         $page = $_REQUEST['page'] ?? 1;
3310         $since_id = $_REQUEST['since_id'] ?? 0;
3311         $max_id = $_REQUEST['max_id'] ?? 0;
3312         $exclude_replies = (!empty($_REQUEST['exclude_replies']) ? 1 : 0);
3313         $conversation_id = $_REQUEST['conversation_id'] ?? 0;
3314
3315         $start = max(0, ($page - 1) * $count);
3316
3317         $groups = DBA::selectToArray('group_member', ['contact-id'], ['gid' => 1]);
3318         $gids = array_column($groups, 'contact-id');
3319         $condition = ['uid' => api_user(), 'gravity' => [GRAVITY_PARENT, GRAVITY_COMMENT], 'group-id' => $gids];
3320         $condition = DBA::mergeConditions($condition, ["`id` > ?", $since_id]);
3321
3322         if ($max_id > 0) {
3323                 $condition[0] .= " AND `id` <= ?";
3324                 $condition[] = $max_id;
3325         }
3326         if ($exclude_replies > 0) {
3327                 $condition[0] .= ' AND `gravity` = ?';
3328                 $condition[] = GRAVITY_PARENT;
3329         }
3330         if ($conversation_id > 0) {
3331                 $condition[0] .= " AND `parent` = ?";
3332                 $condition[] = $conversation_id;
3333         }
3334
3335         $params = ['order' => ['id' => true], 'limit' => [$start, $count]];
3336         $statuses = Post::selectForUser(api_user(), [], $condition, $params);
3337
3338         $items = api_format_items(Post::toArray($statuses), $user_info, false, $type);
3339
3340         $data = ['status' => $items];
3341         switch ($type) {
3342                 case "atom":
3343                         break;
3344                 case "rss":
3345                         $data = api_rss_extra($a, $data, $user_info);
3346                         break;
3347         }
3348
3349         return api_format_data("statuses", $type, $data);
3350 }
3351
3352 /// @TODO move to top of file or somewhere better
3353 api_register_func('api/lists/statuses', 'api_lists_statuses', true);
3354
3355 /**
3356  * Returns either the friends of the follower list
3357  *
3358  * Considers friends and followers lists to be private and won't return
3359  * anything if any user_id parameter is passed.
3360  *
3361  * @param string $qtype Either "friends" or "followers"
3362  * @return boolean|array
3363  * @throws BadRequestException
3364  * @throws ForbiddenException
3365  * @throws ImagickException
3366  * @throws InternalServerErrorException
3367  * @throws UnauthorizedException
3368  */
3369 function api_statuses_f($qtype)
3370 {
3371         $a = DI::app();
3372
3373         if (api_user() === false) {
3374                 throw new ForbiddenException();
3375         }
3376
3377         // pagination
3378         $count = $_GET['count'] ?? 20;
3379         $page = $_GET['page'] ?? 1;
3380
3381         $start = max(0, ($page - 1) * $count);
3382
3383         $user_info = api_get_user($a);
3384
3385         if (!empty($_GET['cursor']) && $_GET['cursor'] == 'undefined') {
3386                 /* this is to stop Hotot to load friends multiple times
3387                 *  I'm not sure if I'm missing return something or
3388                 *  is a bug in hotot. Workaround, meantime
3389                 */
3390
3391                 /*$ret=Array();
3392                 return array('$users' => $ret);*/
3393                 return false;
3394         }
3395
3396         $sql_extra = '';
3397         if ($qtype == 'friends') {
3398                 $sql_extra = sprintf(" AND ( `rel` = %d OR `rel` = %d ) ", intval(Contact::SHARING), intval(Contact::FRIEND));
3399         } elseif ($qtype == 'followers') {
3400                 $sql_extra = sprintf(" AND ( `rel` = %d OR `rel` = %d ) ", intval(Contact::FOLLOWER), intval(Contact::FRIEND));
3401         }
3402
3403         // friends and followers only for self
3404         if ($user_info['self'] == 0) {
3405                 $sql_extra = " AND false ";
3406         }
3407
3408         if ($qtype == 'blocks') {
3409                 $sql_filter = 'AND `blocked` AND NOT `pending`';
3410         } elseif ($qtype == 'incoming') {
3411                 $sql_filter = 'AND `pending`';
3412         } else {
3413                 $sql_filter = 'AND (NOT `blocked` OR `pending`)';
3414         }
3415
3416         $r = q(
3417                 "SELECT `nurl`
3418                 FROM `contact`
3419                 WHERE `uid` = %d
3420                 AND NOT `self`
3421                 $sql_filter
3422                 $sql_extra
3423                 ORDER BY `nick`
3424                 LIMIT %d, %d",
3425                 intval(api_user()),
3426                 intval($start),
3427                 intval($count)
3428         );
3429
3430         $ret = [];
3431         foreach ($r as $cid) {
3432                 $user = api_get_user($a, $cid['nurl']);
3433                 // "uid" and "self" are only needed for some internal stuff, so remove it from here
3434                 unset($user["uid"]);
3435                 unset($user["self"]);
3436
3437                 if ($user) {
3438                         $ret[] = $user;
3439                 }
3440         }
3441
3442         return ['user' => $ret];
3443 }
3444
3445
3446 /**
3447  * Returns the list of friends of the provided user
3448  *
3449  * @deprecated By Twitter API in favor of friends/list
3450  *
3451  * @param string $type Either "json" or "xml"
3452  * @return boolean|string|array
3453  * @throws BadRequestException
3454  * @throws ForbiddenException
3455  */
3456 function api_statuses_friends($type)
3457 {
3458         $data =  api_statuses_f("friends");
3459         if ($data === false) {
3460                 return false;
3461         }
3462         return api_format_data("users", $type, $data);
3463 }
3464
3465 /**
3466  * Returns the list of followers of the provided user
3467  *
3468  * @deprecated By Twitter API in favor of friends/list
3469  *
3470  * @param string $type Either "json" or "xml"
3471  * @return boolean|string|array
3472  * @throws BadRequestException
3473  * @throws ForbiddenException
3474  */
3475 function api_statuses_followers($type)
3476 {
3477         $data = api_statuses_f("followers");
3478         if ($data === false) {
3479                 return false;
3480         }
3481         return api_format_data("users", $type, $data);
3482 }
3483
3484 /// @TODO move to top of file or somewhere better
3485 api_register_func('api/statuses/friends', 'api_statuses_friends', true);
3486 api_register_func('api/statuses/followers', 'api_statuses_followers', true);
3487
3488 /**
3489  * Returns the list of blocked users
3490  *
3491  * @see https://developer.twitter.com/en/docs/accounts-and-users/mute-block-report-users/api-reference/get-blocks-list
3492  *
3493  * @param string $type Either "json" or "xml"
3494  *
3495  * @return boolean|string|array
3496  * @throws BadRequestException
3497  * @throws ForbiddenException
3498  */
3499 function api_blocks_list($type)
3500 {
3501         $data =  api_statuses_f('blocks');
3502         if ($data === false) {
3503                 return false;
3504         }
3505         return api_format_data("users", $type, $data);
3506 }
3507
3508 /// @TODO move to top of file or somewhere better
3509 api_register_func('api/blocks/list', 'api_blocks_list', true);
3510
3511 /**
3512  * Returns the list of pending users IDs
3513  *
3514  * @see https://developer.twitter.com/en/docs/accounts-and-users/follow-search-get-users/api-reference/get-friendships-incoming
3515  *
3516  * @param string $type Either "json" or "xml"
3517  *
3518  * @return boolean|string|array
3519  * @throws BadRequestException
3520  * @throws ForbiddenException
3521  */
3522 function api_friendships_incoming($type)
3523 {
3524         $data =  api_statuses_f('incoming');
3525         if ($data === false) {
3526                 return false;
3527         }
3528
3529         $ids = [];
3530         foreach ($data['user'] as $user) {
3531                 $ids[] = $user['id'];
3532         }
3533
3534         return api_format_data("ids", $type, ['id' => $ids]);
3535 }
3536
3537 /// @TODO move to top of file or somewhere better
3538 api_register_func('api/friendships/incoming', 'api_friendships_incoming', true);
3539
3540 /**
3541  * Returns the instance's configuration information.
3542  *
3543  * @param string $type Return type (atom, rss, xml, json)
3544  *
3545  * @return array|string
3546  * @throws InternalServerErrorException
3547  */
3548 function api_statusnet_config($type)
3549 {
3550         $name      = DI::config()->get('config', 'sitename');
3551         $server    = DI::baseUrl()->getHostname();
3552         $logo      = DI::baseUrl() . '/images/friendica-64.png';
3553         $email     = DI::config()->get('config', 'admin_email');
3554         $closed    = intval(DI::config()->get('config', 'register_policy')) === \Friendica\Module\Register::CLOSED ? 'true' : 'false';
3555         $private   = DI::config()->get('system', 'block_public') ? 'true' : 'false';
3556         $textlimit = (string) DI::config()->get('config', 'api_import_size', DI::config()->get('config', 'max_import_size', 200000));
3557         $ssl       = DI::config()->get('system', 'have_ssl') ? 'true' : 'false';
3558         $sslserver = DI::config()->get('system', 'have_ssl') ? str_replace('http:', 'https:', DI::baseUrl()) : '';
3559
3560         $config = [
3561                 'site' => ['name' => $name,'server' => $server, 'theme' => 'default', 'path' => '',
3562                         'logo' => $logo, 'fancy' => true, 'language' => 'en', 'email' => $email, 'broughtby' => '',
3563                         'broughtbyurl' => '', 'timezone' => 'UTC', 'closed' => $closed, 'inviteonly' => false,
3564                         'private' => $private, 'textlimit' => $textlimit, 'sslserver' => $sslserver, 'ssl' => $ssl,
3565                         'shorturllength' => '30',
3566                         'friendica' => [
3567                                         'FRIENDICA_PLATFORM' => FRIENDICA_PLATFORM,
3568                                         'FRIENDICA_VERSION' => FRIENDICA_VERSION,
3569                                         'DFRN_PROTOCOL_VERSION' => DFRN_PROTOCOL_VERSION,
3570                                         'DB_UPDATE_VERSION' => DB_UPDATE_VERSION
3571                                         ]
3572                 ],
3573         ];
3574
3575         return api_format_data('config', $type, ['config' => $config]);
3576 }
3577
3578 /// @TODO move to top of file or somewhere better
3579 api_register_func('api/gnusocial/config', 'api_statusnet_config', false);
3580 api_register_func('api/statusnet/config', 'api_statusnet_config', false);
3581
3582 /**
3583  *
3584  * @param string $type Return type (atom, rss, xml, json)
3585  *
3586  * @return array|string
3587  */
3588 function api_statusnet_version($type)
3589 {
3590         // liar
3591         $fake_statusnet_version = "0.9.7";
3592
3593         return api_format_data('version', $type, ['version' => $fake_statusnet_version]);
3594 }
3595
3596 /// @TODO move to top of file or somewhere better
3597 api_register_func('api/gnusocial/version', 'api_statusnet_version', false);
3598 api_register_func('api/statusnet/version', 'api_statusnet_version', false);
3599
3600 /**
3601  * Sends a new direct message.
3602  *
3603  * @param string $type Return type (atom, rss, xml, json)
3604  *
3605  * @return array|string
3606  * @throws BadRequestException
3607  * @throws ForbiddenException
3608  * @throws ImagickException
3609  * @throws InternalServerErrorException
3610  * @throws NotFoundException
3611  * @throws UnauthorizedException
3612  * @see https://developer.twitter.com/en/docs/direct-messages/sending-and-receiving/api-reference/new-message
3613  */
3614 function api_direct_messages_new($type)
3615 {
3616         $a = DI::app();
3617
3618         if (api_user() === false) {
3619                 throw new ForbiddenException();
3620         }
3621
3622         if (empty($_POST["text"]) || empty($_POST["screen_name"]) && empty($_POST["user_id"])) {
3623                 return;
3624         }
3625
3626         $sender = api_get_user($a);
3627
3628         $recipient = null;
3629         if (!empty($_POST['screen_name'])) {
3630                 $r = q(
3631                         "SELECT `id`, `nurl`, `network` FROM `contact` WHERE `uid`=%d AND `nick`='%s'",
3632                         intval(api_user()),
3633                         DBA::escape($_POST['screen_name'])
3634                 );
3635
3636                 if (DBA::isResult($r)) {
3637                         // Selecting the id by priority, friendica first
3638                         api_best_nickname($r);
3639
3640                         $recipient = api_get_user($a, $r[0]['nurl']);
3641                 }
3642         } else {
3643                 $recipient = api_get_user($a, $_POST['user_id']);
3644         }
3645
3646         if (empty($recipient)) {
3647                 throw new NotFoundException('Recipient not found');
3648         }
3649
3650         $replyto = '';
3651         if (!empty($_REQUEST['replyto'])) {
3652                 $r = q(
3653                         'SELECT `parent-uri`, `title` FROM `mail` WHERE `uid`=%d AND `id`=%d',
3654                         intval(api_user()),
3655                         intval($_REQUEST['replyto'])
3656                 );
3657                 $replyto = $r[0]['parent-uri'];
3658                 $sub     = $r[0]['title'];
3659         } else {
3660                 if (!empty($_REQUEST['title'])) {
3661                         $sub = $_REQUEST['title'];
3662                 } else {
3663                         $sub = ((strlen($_POST['text'])>10) ? substr($_POST['text'], 0, 10)."...":$_POST['text']);
3664                 }
3665         }
3666
3667         $id = Mail::send($recipient['cid'], $_POST['text'], $sub, $replyto);
3668
3669         if ($id > -1) {
3670                 $r = q("SELECT * FROM `mail` WHERE id=%d", intval($id));
3671                 $ret = api_format_messages($r[0], $recipient, $sender);
3672         } else {
3673                 $ret = ["error"=>$id];
3674         }
3675
3676         $data = ['direct_message'=>$ret];
3677
3678         switch ($type) {
3679                 case "atom":
3680                         break;
3681                 case "rss":
3682                         $data = api_rss_extra($a, $data, $sender);
3683                         break;
3684         }
3685
3686         return api_format_data("direct-messages", $type, $data);
3687 }
3688
3689 /// @TODO move to top of file or somewhere better
3690 api_register_func('api/direct_messages/new', 'api_direct_messages_new', true, API_METHOD_POST);
3691
3692 /**
3693  * delete a direct_message from mail table through api
3694  *
3695  * @param string $type Known types are 'atom', 'rss', 'xml' and 'json'
3696  * @return string|array
3697  * @throws BadRequestException
3698  * @throws ForbiddenException
3699  * @throws ImagickException
3700  * @throws InternalServerErrorException
3701  * @throws UnauthorizedException
3702  * @see   https://developer.twitter.com/en/docs/direct-messages/sending-and-receiving/api-reference/delete-message
3703  */
3704 function api_direct_messages_destroy($type)
3705 {
3706         $a = DI::app();
3707
3708         if (api_user() === false) {
3709                 throw new ForbiddenException();
3710         }
3711
3712         // params
3713         $user_info = api_get_user($a);
3714         //required
3715         $id = $_REQUEST['id'] ?? 0;
3716         // optional
3717         $parenturi = $_REQUEST['friendica_parenturi'] ?? '';
3718         $verbose = (!empty($_GET['friendica_verbose']) ? strtolower($_GET['friendica_verbose']) : "false");
3719         /// @todo optional parameter 'include_entities' from Twitter API not yet implemented
3720
3721         $uid = $user_info['uid'];
3722         // error if no id or parenturi specified (for clients posting parent-uri as well)
3723         if ($verbose == "true" && ($id == 0 || $parenturi == "")) {
3724                 $answer = ['result' => 'error', 'message' => 'message id or parenturi not specified'];
3725                 return api_format_data("direct_messages_delete", $type, ['$result' => $answer]);
3726         }
3727
3728         // BadRequestException if no id specified (for clients using Twitter API)
3729         if ($id == 0) {
3730                 throw new BadRequestException('Message id not specified');
3731         }
3732
3733         // add parent-uri to sql command if specified by calling app
3734         $sql_extra = ($parenturi != "" ? " AND `parent-uri` = '" . DBA::escape($parenturi) . "'" : "");
3735
3736         // get data of the specified message id
3737         $r = q(
3738                 "SELECT `id` FROM `mail` WHERE `uid` = %d AND `id` = %d" . $sql_extra,
3739                 intval($uid),
3740                 intval($id)
3741         );
3742
3743         // error message if specified id is not in database
3744         if (!DBA::isResult($r)) {
3745                 if ($verbose == "true") {
3746                         $answer = ['result' => 'error', 'message' => 'message id not in database'];
3747                         return api_format_data("direct_messages_delete", $type, ['$result' => $answer]);
3748                 }
3749                 /// @todo BadRequestException ok for Twitter API clients?
3750                 throw new BadRequestException('message id not in database');
3751         }
3752
3753         // delete message
3754         $result = q(
3755                 "DELETE FROM `mail` WHERE `uid` = %d AND `id` = %d" . $sql_extra,
3756                 intval($uid),
3757                 intval($id)
3758         );
3759
3760         if ($verbose == "true") {
3761                 if ($result) {
3762                         // return success
3763                         $answer = ['result' => 'ok', 'message' => 'message deleted'];
3764                         return api_format_data("direct_message_delete", $type, ['$result' => $answer]);
3765                 } else {
3766                         $answer = ['result' => 'error', 'message' => 'unknown error'];
3767                         return api_format_data("direct_messages_delete", $type, ['$result' => $answer]);
3768                 }
3769         }
3770         /// @todo return JSON data like Twitter API not yet implemented
3771 }
3772
3773 /// @TODO move to top of file or somewhere better
3774 api_register_func('api/direct_messages/destroy', 'api_direct_messages_destroy', true, API_METHOD_DELETE);
3775
3776 /**
3777  * Unfollow Contact
3778  *
3779  * @param string $type Known types are 'atom', 'rss', 'xml' and 'json'
3780  * @return string|array
3781  * @throws HTTPException\BadRequestException
3782  * @throws HTTPException\ExpectationFailedException
3783  * @throws HTTPException\ForbiddenException
3784  * @throws HTTPException\InternalServerErrorException
3785  * @throws HTTPException\NotFoundException
3786  * @see   https://developer.twitter.com/en/docs/accounts-and-users/follow-search-get-users/api-reference/post-friendships-destroy.html
3787  */
3788 function api_friendships_destroy($type)
3789 {
3790         $uid = api_user();
3791
3792         if ($uid === false) {
3793                 throw new HTTPException\ForbiddenException();
3794         }
3795
3796         $owner = User::getOwnerDataById($uid);
3797         if (!$owner) {
3798                 Logger::notice(API_LOG_PREFIX . 'No owner {uid} found', ['module' => 'api', 'action' => 'friendships_destroy', 'uid' => $uid]);
3799                 throw new HTTPException\NotFoundException('Error Processing Request');
3800         }
3801
3802         $contact_id = $_REQUEST['user_id'] ?? 0;
3803
3804         if (empty($contact_id)) {
3805                 Logger::notice(API_LOG_PREFIX . 'No user_id specified', ['module' => 'api', 'action' => 'friendships_destroy']);
3806                 throw new HTTPException\BadRequestException('no user_id specified');
3807         }
3808
3809         // Get Contact by given id
3810         $contact = DBA::selectFirst('contact', ['url'], ['id' => $contact_id, 'uid' => 0, 'self' => false]);
3811
3812         if(!DBA::isResult($contact)) {
3813                 Logger::notice(API_LOG_PREFIX . 'No public contact found for ID {contact}', ['module' => 'api', 'action' => 'friendships_destroy', 'contact' => $contact_id]);
3814                 throw new HTTPException\NotFoundException('no contact found to given ID');
3815         }
3816
3817         $url = $contact['url'];
3818
3819         $condition = ["`uid` = ? AND (`rel` = ? OR `rel` = ?) AND (`nurl` = ? OR `alias` = ? OR `alias` = ?)",
3820                         $uid, Contact::SHARING, Contact::FRIEND, Strings::normaliseLink($url),
3821                         Strings::normaliseLink($url), $url];
3822         $contact = DBA::selectFirst('contact', [], $condition);
3823
3824         if (!DBA::isResult($contact)) {
3825                 Logger::notice(API_LOG_PREFIX . 'Not following contact', ['module' => 'api', 'action' => 'friendships_destroy']);
3826                 throw new HTTPException\NotFoundException('Not following Contact');
3827         }
3828
3829         $dissolve = ($contact['rel'] == Contact::SHARING);
3830
3831         try {
3832                 $result = Contact::terminateFriendship($owner, $contact, $dissolve);
3833
3834                 if ($result === null) {
3835                         Logger::notice(API_LOG_PREFIX . 'Not supported for {network}', ['module' => 'api', 'action' => 'friendships_destroy', 'network' => $contact['network']]);
3836                         throw new HTTPException\ExpectationFailedException('Unfollowing is currently not supported by this contact\'s network.');
3837                 }
3838
3839                 if ($result === false) {
3840                         throw new HTTPException\ServiceUnavailableException('Unable to unfollow this contact, please retry in a few minutes or contact your administrator.');
3841                 }
3842         } catch (Exception $e) {
3843                 Logger::error(API_LOG_PREFIX . $e->getMessage(), ['owner' => $owner, 'contact' => $contact, 'dissolve' => $dissolve]);
3844                 throw new HTTPException\InternalServerErrorException('Unable to unfollow this contact, please contact your administrator');
3845         }
3846
3847         // "uid" and "self" are only needed for some internal stuff, so remove it from here
3848         unset($contact['uid']);
3849         unset($contact['self']);
3850
3851         // Set screen_name since Twidere requests it
3852         $contact['screen_name'] = $contact['nick'];
3853
3854         return api_format_data('friendships-destroy', $type, ['user' => $contact]);
3855 }
3856 api_register_func('api/friendships/destroy', 'api_friendships_destroy', true, API_METHOD_POST);
3857
3858 /**
3859  *
3860  * @param string $type Return type (atom, rss, xml, json)
3861  * @param string $box
3862  * @param string $verbose
3863  *
3864  * @return array|string
3865  * @throws BadRequestException
3866  * @throws ForbiddenException
3867  * @throws ImagickException
3868  * @throws InternalServerErrorException
3869  * @throws UnauthorizedException
3870  */
3871 function api_direct_messages_box($type, $box, $verbose)
3872 {
3873         $a = DI::app();
3874         if (api_user() === false) {
3875                 throw new ForbiddenException();
3876         }
3877         // params
3878         $count = $_GET['count'] ?? 20;
3879         $page = $_REQUEST['page'] ?? 1;
3880
3881         $since_id = $_REQUEST['since_id'] ?? 0;
3882         $max_id = $_REQUEST['max_id'] ?? 0;
3883
3884         $user_id = $_REQUEST['user_id'] ?? '';
3885         $screen_name = $_REQUEST['screen_name'] ?? '';
3886
3887         //  caller user info
3888         unset($_REQUEST["user_id"]);
3889         unset($_GET["user_id"]);
3890
3891         unset($_REQUEST["screen_name"]);
3892         unset($_GET["screen_name"]);
3893
3894         $user_info = api_get_user($a);
3895         if ($user_info === false) {
3896                 throw new ForbiddenException();
3897         }
3898         $profile_url = $user_info["url"];
3899
3900         // pagination
3901         $start = max(0, ($page - 1) * $count);
3902
3903         $sql_extra = "";
3904
3905         // filters
3906         if ($box=="sentbox") {
3907                 $sql_extra = "`mail`.`from-url`='" . DBA::escape($profile_url) . "'";
3908         } elseif ($box == "conversation") {
3909                 $sql_extra = "`mail`.`parent-uri`='" . DBA::escape($_GET['uri'] ?? '')  . "'";
3910         } elseif ($box == "all") {
3911                 $sql_extra = "true";
3912         } elseif ($box == "inbox") {
3913                 $sql_extra = "`mail`.`from-url`!='" . DBA::escape($profile_url) . "'";
3914         }
3915
3916         if ($max_id > 0) {
3917                 $sql_extra .= ' AND `mail`.`id` <= ' . intval($max_id);
3918         }
3919
3920         if ($user_id != "") {
3921                 $sql_extra .= ' AND `mail`.`contact-id` = ' . intval($user_id);
3922         } elseif ($screen_name !="") {
3923                 $sql_extra .= " AND `contact`.`nick` = '" . DBA::escape($screen_name). "'";
3924         }
3925
3926         $r = q(
3927                 "SELECT `mail`.*, `contact`.`nurl` AS `contact-url` FROM `mail`,`contact` WHERE `mail`.`contact-id` = `contact`.`id` AND `mail`.`uid`=%d AND $sql_extra AND `mail`.`id` > %d ORDER BY `mail`.`id` DESC LIMIT %d,%d",
3928                 intval(api_user()),
3929                 intval($since_id),
3930                 intval($start),
3931                 intval($count)
3932         );
3933         if ($verbose == "true" && !DBA::isResult($r)) {
3934                 $answer = ['result' => 'error', 'message' => 'no mails available'];
3935                 return api_format_data("direct_messages_all", $type, ['$result' => $answer]);
3936         }
3937
3938         $ret = [];
3939         foreach ($r as $item) {
3940                 if ($box == "inbox" || $item['from-url'] != $profile_url) {
3941                         $recipient = $user_info;
3942                         $sender = api_get_user($a, Strings::normaliseLink($item['contact-url']));
3943                 } elseif ($box == "sentbox" || $item['from-url'] == $profile_url) {
3944                         $recipient = api_get_user($a, Strings::normaliseLink($item['contact-url']));
3945                         $sender = $user_info;
3946                 }
3947
3948                 if (isset($recipient) && isset($sender)) {
3949                         $ret[] = api_format_messages($item, $recipient, $sender);
3950                 }
3951         }
3952
3953
3954         $data = ['direct_message' => $ret];
3955         switch ($type) {
3956                 case "atom":
3957                         break;
3958                 case "rss":
3959                         $data = api_rss_extra($a, $data, $user_info);
3960                         break;
3961         }
3962
3963         return api_format_data("direct-messages", $type, $data);
3964 }
3965
3966 /**
3967  * Returns the most recent direct messages sent by the user.
3968  *
3969  * @param string $type Return type (atom, rss, xml, json)
3970  *
3971  * @return array|string
3972  * @throws BadRequestException
3973  * @throws ForbiddenException
3974  * @see https://developer.twitter.com/en/docs/direct-messages/sending-and-receiving/api-reference/get-sent-message
3975  */
3976 function api_direct_messages_sentbox($type)
3977 {
3978         $verbose = !empty($_GET['friendica_verbose']) ? strtolower($_GET['friendica_verbose']) : "false";
3979         return api_direct_messages_box($type, "sentbox", $verbose);
3980 }
3981
3982 /**
3983  * Returns the most recent direct messages sent to the user.
3984  *
3985  * @param string $type Return type (atom, rss, xml, json)
3986  *
3987  * @return array|string
3988  * @throws BadRequestException
3989  * @throws ForbiddenException
3990  * @see https://developer.twitter.com/en/docs/direct-messages/sending-and-receiving/api-reference/get-messages
3991  */
3992 function api_direct_messages_inbox($type)
3993 {
3994         $verbose = !empty($_GET['friendica_verbose']) ? strtolower($_GET['friendica_verbose']) : "false";
3995         return api_direct_messages_box($type, "inbox", $verbose);
3996 }
3997
3998 /**
3999  *
4000  * @param string $type Return type (atom, rss, xml, json)
4001  *
4002  * @return array|string
4003  * @throws BadRequestException
4004  * @throws ForbiddenException
4005  */
4006 function api_direct_messages_all($type)
4007 {
4008         $verbose = !empty($_GET['friendica_verbose']) ? strtolower($_GET['friendica_verbose']) : "false";
4009         return api_direct_messages_box($type, "all", $verbose);
4010 }
4011
4012 /**
4013  *
4014  * @param string $type Return type (atom, rss, xml, json)
4015  *
4016  * @return array|string
4017  * @throws BadRequestException
4018  * @throws ForbiddenException
4019  */
4020 function api_direct_messages_conversation($type)
4021 {
4022         $verbose = !empty($_GET['friendica_verbose']) ? strtolower($_GET['friendica_verbose']) : "false";
4023         return api_direct_messages_box($type, "conversation", $verbose);
4024 }
4025
4026 /// @TODO move to top of file or somewhere better
4027 api_register_func('api/direct_messages/conversation', 'api_direct_messages_conversation', true);
4028 api_register_func('api/direct_messages/all', 'api_direct_messages_all', true);
4029 api_register_func('api/direct_messages/sent', 'api_direct_messages_sentbox', true);
4030 api_register_func('api/direct_messages', 'api_direct_messages_inbox', true);
4031
4032 /**
4033  * delete a complete photoalbum with all containing photos from database through api
4034  *
4035  * @param string $type Known types are 'atom', 'rss', 'xml' and 'json'
4036  * @return string|array
4037  * @throws BadRequestException
4038  * @throws ForbiddenException
4039  * @throws InternalServerErrorException
4040  */
4041 function api_fr_photoalbum_delete($type)
4042 {
4043         if (api_user() === false) {
4044                 throw new ForbiddenException();
4045         }
4046         // input params
4047         $album = $_REQUEST['album'] ?? '';
4048
4049         // we do not allow calls without album string
4050         if ($album == "") {
4051                 throw new BadRequestException("no albumname specified");
4052         }
4053         // check if album is existing
4054
4055         $photos = DBA::selectToArray('photo', ['resource-id'], ['uid' => api_user(), 'album' => $album], ['group_by' => ['resource-id']]);
4056         if (!DBA::isResult($photos)) {
4057                 throw new BadRequestException("album not available");
4058         }
4059
4060         $resourceIds = array_column($photos, 'resource-id');
4061
4062         // function for setting the items to "deleted = 1" which ensures that comments, likes etc. are not shown anymore
4063         // to the user and the contacts of the users (drop_items() performs the federation of the deletion to other networks
4064         $condition = ['uid' => api_user(), 'resource-id' => $resourceIds, 'type' => 'photo'];
4065         Item::deleteForUser($condition, api_user());
4066
4067         // now let's delete all photos from the album
4068         $result = Photo::delete(['uid' => api_user(), 'album' => $album]);
4069
4070         // return success of deletion or error message
4071         if ($result) {
4072                 $answer = ['result' => 'deleted', 'message' => 'album `' . $album . '` with all containing photos has been deleted.'];
4073                 return api_format_data("photoalbum_delete", $type, ['$result' => $answer]);
4074         } else {
4075                 throw new InternalServerErrorException("unknown error - deleting from database failed");
4076         }
4077 }
4078
4079 /**
4080  * update the name of the album for all photos of an album
4081  *
4082  * @param string $type Known types are 'atom', 'rss', 'xml' and 'json'
4083  * @return string|array
4084  * @throws BadRequestException
4085  * @throws ForbiddenException
4086  * @throws InternalServerErrorException
4087  */
4088 function api_fr_photoalbum_update($type)
4089 {
4090         if (api_user() === false) {
4091                 throw new ForbiddenException();
4092         }
4093         // input params
4094         $album = $_REQUEST['album'] ?? '';
4095         $album_new = $_REQUEST['album_new'] ?? '';
4096
4097         // we do not allow calls without album string
4098         if ($album == "") {
4099                 throw new BadRequestException("no albumname specified");
4100         }
4101         if ($album_new == "") {
4102                 throw new BadRequestException("no new albumname specified");
4103         }
4104         // check if album is existing
4105         if (!Photo::exists(['uid' => api_user(), 'album' => $album])) {
4106                 throw new BadRequestException("album not available");
4107         }
4108         // now let's update all photos to the albumname
4109         $result = Photo::update(['album' => $album_new], ['uid' => api_user(), 'album' => $album]);
4110
4111         // return success of updating or error message
4112         if ($result) {
4113                 $answer = ['result' => 'updated', 'message' => 'album `' . $album . '` with all containing photos has been renamed to `' . $album_new . '`.'];
4114                 return api_format_data("photoalbum_update", $type, ['$result' => $answer]);
4115         } else {
4116                 throw new InternalServerErrorException("unknown error - updating in database failed");
4117         }
4118 }
4119
4120
4121 /**
4122  * list all photos of the authenticated user
4123  *
4124  * @param string $type Known types are 'atom', 'rss', 'xml' and 'json'
4125  * @return string|array
4126  * @throws ForbiddenException
4127  * @throws InternalServerErrorException
4128  */
4129 function api_fr_photos_list($type)
4130 {
4131         if (api_user() === false) {
4132                 throw new ForbiddenException();
4133         }
4134         $r = q(
4135                 "SELECT `resource-id`, MAX(scale) AS `scale`, `album`, `filename`, `type`, MAX(`created`) AS `created`,
4136                 MAX(`edited`) AS `edited`, MAX(`desc`) AS `desc` FROM `photo`
4137                 WHERE `uid` = %d AND `album` != 'Contact Photos' GROUP BY `resource-id`, `album`, `filename`, `type`",
4138                 intval(local_user())
4139         );
4140         $typetoext = [
4141                 'image/jpeg' => 'jpg',
4142                 'image/png' => 'png',
4143                 'image/gif' => 'gif'
4144         ];
4145         $data = ['photo'=>[]];
4146         if (DBA::isResult($r)) {
4147                 foreach ($r as $rr) {
4148                         $photo = [];
4149                         $photo['id'] = $rr['resource-id'];
4150                         $photo['album'] = $rr['album'];
4151                         $photo['filename'] = $rr['filename'];
4152                         $photo['type'] = $rr['type'];
4153                         $thumb = DI::baseUrl() . "/photo/" . $rr['resource-id'] . "-" . $rr['scale'] . "." . $typetoext[$rr['type']];
4154                         $photo['created'] = $rr['created'];
4155                         $photo['edited'] = $rr['edited'];
4156                         $photo['desc'] = $rr['desc'];
4157
4158                         if ($type == "xml") {
4159                                 $data['photo'][] = ["@attributes" => $photo, "1" => $thumb];
4160                         } else {
4161                                 $photo['thumb'] = $thumb;
4162                                 $data['photo'][] = $photo;
4163                         }
4164                 }
4165         }
4166         return api_format_data("photos", $type, $data);
4167 }
4168
4169 /**
4170  * upload a new photo or change an existing photo
4171  *
4172  * @param string $type Known types are 'atom', 'rss', 'xml' and 'json'
4173  * @return string|array
4174  * @throws BadRequestException
4175  * @throws ForbiddenException
4176  * @throws ImagickException
4177  * @throws InternalServerErrorException
4178  * @throws NotFoundException
4179  */
4180 function api_fr_photo_create_update($type)
4181 {
4182         if (api_user() === false) {
4183                 throw new ForbiddenException();
4184         }
4185         // input params
4186         $photo_id  = $_REQUEST['photo_id']  ?? null;
4187         $desc      = $_REQUEST['desc']      ?? null;
4188         $album     = $_REQUEST['album']     ?? null;
4189         $album_new = $_REQUEST['album_new'] ?? null;
4190         $allow_cid = $_REQUEST['allow_cid'] ?? null;
4191         $deny_cid  = $_REQUEST['deny_cid' ] ?? null;
4192         $allow_gid = $_REQUEST['allow_gid'] ?? null;
4193         $deny_gid  = $_REQUEST['deny_gid' ] ?? null;
4194         $visibility = !$allow_cid && !$deny_cid && !$allow_gid && !$deny_gid;
4195
4196         // do several checks on input parameters
4197         // we do not allow calls without album string
4198         if ($album == null) {
4199                 throw new BadRequestException("no albumname specified");
4200         }
4201         // if photo_id == null --> we are uploading a new photo
4202         if ($photo_id == null) {
4203                 $mode = "create";
4204
4205                 // error if no media posted in create-mode
4206                 if (empty($_FILES['media'])) {
4207                         // Output error
4208                         throw new BadRequestException("no media data submitted");
4209                 }
4210
4211                 // album_new will be ignored in create-mode
4212                 $album_new = "";
4213         } else {
4214                 $mode = "update";
4215
4216                 // check if photo is existing in databasei
4217                 if (!Photo::exists(['resource-id' => $photo_id, 'uid' => api_user(), 'album' => $album])) {
4218                         throw new BadRequestException("photo not available");
4219                 }
4220         }
4221
4222         // checks on acl strings provided by clients
4223         $acl_input_error = false;
4224         $acl_input_error |= check_acl_input($allow_cid);
4225         $acl_input_error |= check_acl_input($deny_cid);
4226         $acl_input_error |= check_acl_input($allow_gid);
4227         $acl_input_error |= check_acl_input($deny_gid);
4228         if ($acl_input_error) {
4229                 throw new BadRequestException("acl data invalid");
4230         }
4231         // now let's upload the new media in create-mode
4232         if ($mode == "create") {
4233                 $media = $_FILES['media'];
4234                 $data = save_media_to_database("photo", $media, $type, $album, trim($allow_cid), trim($deny_cid), trim($allow_gid), trim($deny_gid), $desc, $visibility);
4235
4236                 // return success of updating or error message
4237                 if (!is_null($data)) {
4238                         return api_format_data("photo_create", $type, $data);
4239                 } else {
4240                         throw new InternalServerErrorException("unknown error - uploading photo failed, see Friendica log for more information");
4241                 }
4242         }
4243
4244         // now let's do the changes in update-mode
4245         if ($mode == "update") {
4246                 $updated_fields = [];
4247
4248                 if (!is_null($desc)) {
4249                         $updated_fields['desc'] = $desc;
4250                 }
4251
4252                 if (!is_null($album_new)) {
4253                         $updated_fields['album'] = $album_new;
4254                 }
4255
4256                 if (!is_null($allow_cid)) {
4257                         $allow_cid = trim($allow_cid);
4258                         $updated_fields['allow_cid'] = $allow_cid;
4259                 }
4260
4261                 if (!is_null($deny_cid)) {
4262                         $deny_cid = trim($deny_cid);
4263                         $updated_fields['deny_cid'] = $deny_cid;
4264                 }
4265
4266                 if (!is_null($allow_gid)) {
4267                         $allow_gid = trim($allow_gid);
4268                         $updated_fields['allow_gid'] = $allow_gid;
4269                 }
4270
4271                 if (!is_null($deny_gid)) {
4272                         $deny_gid = trim($deny_gid);
4273                         $updated_fields['deny_gid'] = $deny_gid;
4274                 }
4275
4276                 $result = false;
4277                 if (count($updated_fields) > 0) {
4278                         $nothingtodo = false;
4279                         $result = Photo::update($updated_fields, ['uid' => api_user(), 'resource-id' => $photo_id, 'album' => $album]);
4280                 } else {
4281                         $nothingtodo = true;
4282                 }
4283
4284                 if (!empty($_FILES['media'])) {
4285                         $nothingtodo = false;
4286                         $media = $_FILES['media'];
4287                         $data = save_media_to_database("photo", $media, $type, $album, $allow_cid, $deny_cid, $allow_gid, $deny_gid, $desc, 0, $visibility, $photo_id);
4288                         if (!is_null($data)) {
4289                                 return api_format_data("photo_update", $type, $data);
4290                         }
4291                 }
4292
4293                 // return success of updating or error message
4294                 if ($result) {
4295                         $answer = ['result' => 'updated', 'message' => 'Image id `' . $photo_id . '` has been updated.'];
4296                         return api_format_data("photo_update", $type, ['$result' => $answer]);
4297                 } else {
4298                         if ($nothingtodo) {
4299                                 $answer = ['result' => 'cancelled', 'message' => 'Nothing to update for image id `' . $photo_id . '`.'];
4300                                 return api_format_data("photo_update", $type, ['$result' => $answer]);
4301                         }
4302                         throw new InternalServerErrorException("unknown error - update photo entry in database failed");
4303                 }
4304         }
4305         throw new InternalServerErrorException("unknown error - this error on uploading or updating a photo should never happen");
4306 }
4307
4308 /**
4309  * delete a single photo from the database through api
4310  *
4311  * @param string $type Known types are 'atom', 'rss', 'xml' and 'json'
4312  * @return string|array
4313  * @throws BadRequestException
4314  * @throws ForbiddenException
4315  * @throws InternalServerErrorException
4316  */
4317 function api_fr_photo_delete($type)
4318 {
4319         if (api_user() === false) {
4320                 throw new ForbiddenException();
4321         }
4322
4323         // input params
4324         $photo_id = $_REQUEST['photo_id'] ?? null;
4325
4326         // do several checks on input parameters
4327         // we do not allow calls without photo id
4328         if ($photo_id == null) {
4329                 throw new BadRequestException("no photo_id specified");
4330         }
4331
4332         // check if photo is existing in database
4333         if (!Photo::exists(['resource-id' => $photo_id, 'uid' => api_user()])) {
4334                 throw new BadRequestException("photo not available");
4335         }
4336
4337         // now we can perform on the deletion of the photo
4338         $result = Photo::delete(['uid' => api_user(), 'resource-id' => $photo_id]);
4339
4340         // return success of deletion or error message
4341         if ($result) {
4342                 // function for setting the items to "deleted = 1" which ensures that comments, likes etc. are not shown anymore
4343                 // to the user and the contacts of the users (drop_items() do all the necessary magic to avoid orphans in database and federate deletion)
4344                 $condition = ['uid' => api_user(), 'resource-id' => $photo_id, 'type' => 'photo'];
4345                 Item::deleteForUser($condition, api_user());
4346
4347                 $result = ['result' => 'deleted', 'message' => 'photo with id `' . $photo_id . '` has been deleted from server.'];
4348                 return api_format_data("photo_delete", $type, ['$result' => $result]);
4349         } else {
4350                 throw new InternalServerErrorException("unknown error on deleting photo from database table");
4351         }
4352 }
4353
4354
4355 /**
4356  * returns the details of a specified photo id, if scale is given, returns the photo data in base 64
4357  *
4358  * @param string $type Known types are 'atom', 'rss', 'xml' and 'json'
4359  * @return string|array
4360  * @throws BadRequestException
4361  * @throws ForbiddenException
4362  * @throws InternalServerErrorException
4363  * @throws NotFoundException
4364  */
4365 function api_fr_photo_detail($type)
4366 {
4367         if (api_user() === false) {
4368                 throw new ForbiddenException();
4369         }
4370         if (empty($_REQUEST['photo_id'])) {
4371                 throw new BadRequestException("No photo id.");
4372         }
4373
4374         $scale = (!empty($_REQUEST['scale']) ? intval($_REQUEST['scale']) : false);
4375         $photo_id = $_REQUEST['photo_id'];
4376
4377         // prepare json/xml output with data from database for the requested photo
4378         $data = prepare_photo_data($type, $scale, $photo_id);
4379
4380         return api_format_data("photo_detail", $type, $data);
4381 }
4382
4383
4384 /**
4385  * updates the profile image for the user (either a specified profile or the default profile)
4386  *
4387  * @param string $type Known types are 'atom', 'rss', 'xml' and 'json'
4388  *
4389  * @return string|array
4390  * @throws BadRequestException
4391  * @throws ForbiddenException
4392  * @throws ImagickException
4393  * @throws InternalServerErrorException
4394  * @throws NotFoundException
4395  * @see   https://developer.twitter.com/en/docs/accounts-and-users/manage-account-settings/api-reference/post-account-update_profile_image
4396  */
4397 function api_account_update_profile_image($type)
4398 {
4399         if (api_user() === false) {
4400                 throw new ForbiddenException();
4401         }
4402         // input params
4403         $profile_id = $_REQUEST['profile_id'] ?? 0;
4404
4405         // error if image data is missing
4406         if (empty($_FILES['image'])) {
4407                 throw new BadRequestException("no media data submitted");
4408         }
4409
4410         // check if specified profile id is valid
4411         if ($profile_id != 0) {
4412                 $profile = DBA::selectFirst('profile', ['is-default'], ['uid' => api_user(), 'id' => $profile_id]);
4413                 // error message if specified profile id is not in database
4414                 if (!DBA::isResult($profile)) {
4415                         throw new BadRequestException("profile_id not available");
4416                 }
4417                 $is_default_profile = $profile['is-default'];
4418         } else {
4419                 $is_default_profile = 1;
4420         }
4421
4422         // get mediadata from image or media (Twitter call api/account/update_profile_image provides image)
4423         $media = null;
4424         if (!empty($_FILES['image'])) {
4425                 $media = $_FILES['image'];
4426         } elseif (!empty($_FILES['media'])) {
4427                 $media = $_FILES['media'];
4428         }
4429         // save new profile image
4430         $data = save_media_to_database("profileimage", $media, $type, DI::l10n()->t('Profile Photos'), "", "", "", "", "", $is_default_profile);
4431
4432         // get filetype
4433         if (is_array($media['type'])) {
4434                 $filetype = $media['type'][0];
4435         } else {
4436                 $filetype = $media['type'];
4437         }
4438         if ($filetype == "image/jpeg") {
4439                 $fileext = "jpg";
4440         } elseif ($filetype == "image/png") {
4441                 $fileext = "png";
4442         } else {
4443                 throw new InternalServerErrorException('Unsupported filetype');
4444         }
4445
4446         // change specified profile or all profiles to the new resource-id
4447         if ($is_default_profile) {
4448                 $condition = ["`profile` AND `resource-id` != ? AND `uid` = ?", $data['photo']['id'], api_user()];
4449                 Photo::update(['profile' => false], $condition);
4450         } else {
4451                 $fields = ['photo' => DI::baseUrl() . '/photo/' . $data['photo']['id'] . '-4.' . $fileext,
4452                         'thumb' => DI::baseUrl() . '/photo/' . $data['photo']['id'] . '-5.' . $fileext];
4453                 DBA::update('profile', $fields, ['id' => $_REQUEST['profile'], 'uid' => api_user()]);
4454         }
4455
4456         Contact::updateSelfFromUserID(api_user(), true);
4457
4458         // Update global directory in background
4459         Profile::publishUpdate(api_user());
4460
4461         // output for client
4462         if ($data) {
4463                 return api_account_verify_credentials($type);
4464         } else {
4465                 // SaveMediaToDatabase failed for some reason
4466                 throw new InternalServerErrorException("image upload failed");
4467         }
4468 }
4469
4470 // place api-register for photoalbum calls before 'api/friendica/photo', otherwise this function is never reached
4471 api_register_func('api/friendica/photoalbum/delete', 'api_fr_photoalbum_delete', true, API_METHOD_DELETE);
4472 api_register_func('api/friendica/photoalbum/update', 'api_fr_photoalbum_update', true, API_METHOD_POST);
4473 api_register_func('api/friendica/photos/list', 'api_fr_photos_list', true);
4474 api_register_func('api/friendica/photo/create', 'api_fr_photo_create_update', true, API_METHOD_POST);
4475 api_register_func('api/friendica/photo/update', 'api_fr_photo_create_update', true, API_METHOD_POST);
4476 api_register_func('api/friendica/photo/delete', 'api_fr_photo_delete', true, API_METHOD_DELETE);
4477 api_register_func('api/friendica/photo', 'api_fr_photo_detail', true);
4478 api_register_func('api/account/update_profile_image', 'api_account_update_profile_image', true, API_METHOD_POST);
4479
4480 /**
4481  * Update user profile
4482  *
4483  * @param string $type Known types are 'atom', 'rss', 'xml' and 'json'
4484  *
4485  * @return array|string
4486  * @throws BadRequestException
4487  * @throws ForbiddenException
4488  * @throws ImagickException
4489  * @throws InternalServerErrorException
4490  * @throws UnauthorizedException
4491  */
4492 function api_account_update_profile($type)
4493 {
4494         $local_user = api_user();
4495         $api_user = api_get_user(DI::app());
4496
4497         if (!empty($_POST['name'])) {
4498                 DBA::update('profile', ['name' => $_POST['name']], ['uid' => $local_user]);
4499                 DBA::update('user', ['username' => $_POST['name']], ['uid' => $local_user]);
4500                 Contact::update(['name' => $_POST['name']], ['uid' => $local_user, 'self' => 1]);
4501                 Contact::update(['name' => $_POST['name']], ['id' => $api_user['id']]);
4502         }
4503
4504         if (isset($_POST['description'])) {
4505                 DBA::update('profile', ['about' => $_POST['description']], ['uid' => $local_user]);
4506                 Contact::update(['about' => $_POST['description']], ['uid' => $local_user, 'self' => 1]);
4507                 Contact::update(['about' => $_POST['description']], ['id' => $api_user['id']]);
4508         }
4509
4510         Profile::publishUpdate($local_user);
4511
4512         return api_account_verify_credentials($type);
4513 }
4514
4515 /// @TODO move to top of file or somewhere better
4516 api_register_func('api/account/update_profile', 'api_account_update_profile', true, API_METHOD_POST);
4517
4518 /**
4519  *
4520  * @param string $acl_string
4521  * @return bool
4522  * @throws Exception
4523  */
4524 function check_acl_input($acl_string)
4525 {
4526         if (empty($acl_string)) {
4527                 return false;
4528         }
4529
4530         $contact_not_found = false;
4531
4532         // split <x><y><z> into array of cid's
4533         preg_match_all("/<[A-Za-z0-9]+>/", $acl_string, $array);
4534
4535         // check for each cid if it is available on server
4536         $cid_array = $array[0];
4537         foreach ($cid_array as $cid) {
4538                 $cid = str_replace("<", "", $cid);
4539                 $cid = str_replace(">", "", $cid);
4540                 $condition = ['id' => $cid, 'uid' => api_user()];
4541                 $contact_not_found |= !DBA::exists('contact', $condition);
4542         }
4543         return $contact_not_found;
4544 }
4545
4546 /**
4547  * @param string  $mediatype
4548  * @param array   $media
4549  * @param string  $type
4550  * @param string  $album
4551  * @param string  $allow_cid
4552  * @param string  $deny_cid
4553  * @param string  $allow_gid
4554  * @param string  $deny_gid
4555  * @param string  $desc
4556  * @param integer $profile
4557  * @param boolean $visibility
4558  * @param string  $photo_id
4559  * @return array
4560  * @throws BadRequestException
4561  * @throws ForbiddenException
4562  * @throws ImagickException
4563  * @throws InternalServerErrorException
4564  * @throws NotFoundException
4565  * @throws UnauthorizedException
4566  */
4567 function save_media_to_database($mediatype, $media, $type, $album, $allow_cid, $deny_cid, $allow_gid, $deny_gid, $desc, $profile = 0, $visibility = false, $photo_id = null)
4568 {
4569         $visitor   = 0;
4570         $src = "";
4571         $filetype = "";
4572         $filename = "";
4573         $filesize = 0;
4574
4575         if (is_array($media)) {
4576                 if (is_array($media['tmp_name'])) {
4577                         $src = $media['tmp_name'][0];
4578                 } else {
4579                         $src = $media['tmp_name'];
4580                 }
4581                 if (is_array($media['name'])) {
4582                         $filename = basename($media['name'][0]);
4583                 } else {
4584                         $filename = basename($media['name']);
4585                 }
4586                 if (is_array($media['size'])) {
4587                         $filesize = intval($media['size'][0]);
4588                 } else {
4589                         $filesize = intval($media['size']);
4590                 }
4591                 if (is_array($media['type'])) {
4592                         $filetype = $media['type'][0];
4593                 } else {
4594                         $filetype = $media['type'];
4595                 }
4596         }
4597
4598         $filetype = Images::getMimeTypeBySource($src, $filename, $filetype);
4599
4600         Logger::log(
4601                 "File upload src: " . $src . " - filename: " . $filename .
4602                 " - size: " . $filesize . " - type: " . $filetype,
4603                 Logger::DEBUG
4604         );
4605
4606         // check if there was a php upload error
4607         if ($filesize == 0 && $media['error'] == 1) {
4608                 throw new InternalServerErrorException("image size exceeds PHP config settings, file was rejected by server");
4609         }
4610         // check against max upload size within Friendica instance
4611         $maximagesize = DI::config()->get('system', 'maximagesize');
4612         if ($maximagesize && ($filesize > $maximagesize)) {
4613                 $formattedBytes = Strings::formatBytes($maximagesize);
4614                 throw new InternalServerErrorException("image size exceeds Friendica config setting (uploaded size: $formattedBytes)");
4615         }
4616
4617         // create Photo instance with the data of the image
4618         $imagedata = @file_get_contents($src);
4619         $Image = new Image($imagedata, $filetype);
4620         if (!$Image->isValid()) {
4621                 throw new InternalServerErrorException("unable to process image data");
4622         }
4623
4624         // check orientation of image
4625         $Image->orient($src);
4626         @unlink($src);
4627
4628         // check max length of images on server
4629         $max_length = DI::config()->get('system', 'max_image_length');
4630         if (!$max_length) {
4631                 $max_length = MAX_IMAGE_LENGTH;
4632         }
4633         if ($max_length > 0) {
4634                 $Image->scaleDown($max_length);
4635                 Logger::log("File upload: Scaling picture to new size " . $max_length, Logger::DEBUG);
4636         }
4637         $width = $Image->getWidth();
4638         $height = $Image->getHeight();
4639
4640         // create a new resource-id if not already provided
4641         $resource_id = ($photo_id == null) ? Photo::newResource() : $photo_id;
4642
4643         if ($mediatype == "photo") {
4644                 // upload normal image (scales 0, 1, 2)
4645                 Logger::log("photo upload: starting new photo upload", Logger::DEBUG);
4646
4647                 $r = Photo::store($Image, local_user(), $visitor, $resource_id, $filename, $album, 0, 0, $allow_cid, $allow_gid, $deny_cid, $deny_gid, $desc);
4648                 if (!$r) {
4649                         Logger::log("photo upload: image upload with scale 0 (original size) failed");
4650                 }
4651                 if ($width > 640 || $height > 640) {
4652                         $Image->scaleDown(640);
4653                         $r = Photo::store($Image, local_user(), $visitor, $resource_id, $filename, $album, 1, 0, $allow_cid, $allow_gid, $deny_cid, $deny_gid, $desc);
4654                         if (!$r) {
4655                                 Logger::log("photo upload: image upload with scale 1 (640x640) failed");
4656                         }
4657                 }
4658
4659                 if ($width > 320 || $height > 320) {
4660                         $Image->scaleDown(320);
4661                         $r = Photo::store($Image, local_user(), $visitor, $resource_id, $filename, $album, 2, 0, $allow_cid, $allow_gid, $deny_cid, $deny_gid, $desc);
4662                         if (!$r) {
4663                                 Logger::log("photo upload: image upload with scale 2 (320x320) failed");
4664                         }
4665                 }
4666                 Logger::log("photo upload: new photo upload ended", Logger::DEBUG);
4667         } elseif ($mediatype == "profileimage") {
4668                 // upload profile image (scales 4, 5, 6)
4669                 Logger::log("photo upload: starting new profile image upload", Logger::DEBUG);
4670
4671                 if ($width > 300 || $height > 300) {
4672                         $Image->scaleDown(300);
4673                         $r = Photo::store($Image, local_user(), $visitor, $resource_id, $filename, $album, 4, $profile, $allow_cid, $allow_gid, $deny_cid, $deny_gid, $desc);
4674                         if (!$r) {
4675                                 Logger::log("photo upload: profile image upload with scale 4 (300x300) failed");
4676                         }
4677                 }
4678
4679                 if ($width > 80 || $height > 80) {
4680                         $Image->scaleDown(80);
4681                         $r = Photo::store($Image, local_user(), $visitor, $resource_id, $filename, $album, 5, $profile, $allow_cid, $allow_gid, $deny_cid, $deny_gid, $desc);
4682                         if (!$r) {
4683                                 Logger::log("photo upload: profile image upload with scale 5 (80x80) failed");
4684                         }
4685                 }
4686
4687                 if ($width > 48 || $height > 48) {
4688                         $Image->scaleDown(48);
4689                         $r = Photo::store($Image, local_user(), $visitor, $resource_id, $filename, $album, 6, $profile, $allow_cid, $allow_gid, $deny_cid, $deny_gid, $desc);
4690                         if (!$r) {
4691                                 Logger::log("photo upload: profile image upload with scale 6 (48x48) failed");
4692                         }
4693                 }
4694                 $Image->__destruct();
4695                 Logger::log("photo upload: new profile image upload ended", Logger::DEBUG);
4696         }
4697
4698         if (!empty($r)) {
4699                 // create entry in 'item'-table on new uploads to enable users to comment/like/dislike the photo
4700                 if ($photo_id == null && $mediatype == "photo") {
4701                         post_photo_item($resource_id, $allow_cid, $deny_cid, $allow_gid, $deny_gid, $filetype, $visibility);
4702                 }
4703                 // on success return image data in json/xml format (like /api/friendica/photo does when no scale is given)
4704                 return prepare_photo_data($type, false, $resource_id);
4705         } else {
4706                 throw new InternalServerErrorException("image upload failed");
4707         }
4708 }
4709
4710 /**
4711  *
4712  * @param string  $hash
4713  * @param string  $allow_cid
4714  * @param string  $deny_cid
4715  * @param string  $allow_gid
4716  * @param string  $deny_gid
4717  * @param string  $filetype
4718  * @param boolean $visibility
4719  * @throws InternalServerErrorException
4720  */
4721 function post_photo_item($hash, $allow_cid, $deny_cid, $allow_gid, $deny_gid, $filetype, $visibility = false)
4722 {
4723         // get data about the api authenticated user
4724         $uri = Item::newURI(intval(api_user()));
4725         $owner_record = DBA::selectFirst('contact', [], ['uid' => api_user(), 'self' => true]);
4726
4727         $arr = [];
4728         $arr['guid']          = System::createUUID();
4729         $arr['uid']           = intval(api_user());
4730         $arr['uri']           = $uri;
4731         $arr['type']          = 'photo';
4732         $arr['wall']          = 1;
4733         $arr['resource-id']   = $hash;
4734         $arr['contact-id']    = $owner_record['id'];
4735         $arr['owner-name']    = $owner_record['name'];
4736         $arr['owner-link']    = $owner_record['url'];
4737         $arr['owner-avatar']  = $owner_record['thumb'];
4738         $arr['author-name']   = $owner_record['name'];
4739         $arr['author-link']   = $owner_record['url'];
4740         $arr['author-avatar'] = $owner_record['thumb'];
4741         $arr['title']         = "";
4742         $arr['allow_cid']     = $allow_cid;
4743         $arr['allow_gid']     = $allow_gid;
4744         $arr['deny_cid']      = $deny_cid;
4745         $arr['deny_gid']      = $deny_gid;
4746         $arr['visible']       = $visibility;
4747         $arr['origin']        = 1;
4748
4749         $typetoext = [
4750                         'image/jpeg' => 'jpg',
4751                         'image/png' => 'png',
4752                         'image/gif' => 'gif'
4753                         ];
4754
4755         // adds link to the thumbnail scale photo
4756         $arr['body'] = '[url=' . DI::baseUrl() . '/photos/' . $owner_record['nick'] . '/image/' . $hash . ']'
4757                                 . '[img]' . DI::baseUrl() . '/photo/' . $hash . '-' . "2" . '.'. $typetoext[$filetype] . '[/img]'
4758                                 . '[/url]';
4759
4760         // do the magic for storing the item in the database and trigger the federation to other contacts
4761         Item::insert($arr);
4762 }
4763
4764 /**
4765  *
4766  * @param string $type
4767  * @param int    $scale
4768  * @param string $photo_id
4769  *
4770  * @return array
4771  * @throws BadRequestException
4772  * @throws ForbiddenException
4773  * @throws ImagickException
4774  * @throws InternalServerErrorException
4775  * @throws NotFoundException
4776  * @throws UnauthorizedException
4777  */
4778 function prepare_photo_data($type, $scale, $photo_id)
4779 {
4780         $a = DI::app();
4781         $user_info = api_get_user($a);
4782
4783         if ($user_info === false) {
4784                 throw new ForbiddenException();
4785         }
4786
4787         $scale_sql = ($scale === false ? "" : sprintf("AND scale=%d", intval($scale)));
4788         $data_sql = ($scale === false ? "" : "data, ");
4789
4790         // added allow_cid, allow_gid, deny_cid, deny_gid to output as string like stored in database
4791         // clients needs to convert this in their way for further processing
4792         $r = q(
4793                 "SELECT %s `resource-id`, `created`, `edited`, `title`, `desc`, `album`, `filename`,
4794                                         `type`, `height`, `width`, `datasize`, `profile`, `allow_cid`, `deny_cid`, `allow_gid`, `deny_gid`,
4795                                         MIN(`scale`) AS `minscale`, MAX(`scale`) AS `maxscale`
4796                         FROM `photo` WHERE `uid` = %d AND `resource-id` = '%s' %s GROUP BY
4797                                `resource-id`, `created`, `edited`, `title`, `desc`, `album`, `filename`,
4798                                `type`, `height`, `width`, `datasize`, `profile`, `allow_cid`, `deny_cid`, `allow_gid`, `deny_gid`",
4799                 $data_sql,
4800                 intval(local_user()),
4801                 DBA::escape($photo_id),
4802                 $scale_sql
4803         );
4804
4805         $typetoext = [
4806                 'image/jpeg' => 'jpg',
4807                 'image/png' => 'png',
4808                 'image/gif' => 'gif'
4809         ];
4810
4811         // prepare output data for photo
4812         if (DBA::isResult($r)) {
4813                 $data = ['photo' => $r[0]];
4814                 $data['photo']['id'] = $data['photo']['resource-id'];
4815                 if ($scale !== false) {
4816                         $data['photo']['data'] = base64_encode($data['photo']['data']);
4817                 } else {
4818                         unset($data['photo']['datasize']); //needed only with scale param
4819                 }
4820                 if ($type == "xml") {
4821                         $data['photo']['links'] = [];
4822                         for ($k = intval($data['photo']['minscale']); $k <= intval($data['photo']['maxscale']); $k++) {
4823                                 $data['photo']['links'][$k . ":link"]["@attributes"] = ["type" => $data['photo']['type'],
4824                                                                                 "scale" => $k,
4825                                                                                 "href" => DI::baseUrl() . "/photo/" . $data['photo']['resource-id'] . "-" . $k . "." . $typetoext[$data['photo']['type']]];
4826                         }
4827                 } else {
4828                         $data['photo']['link'] = [];
4829                         // when we have profile images we could have only scales from 4 to 6, but index of array always needs to start with 0
4830                         $i = 0;
4831                         for ($k = intval($data['photo']['minscale']); $k <= intval($data['photo']['maxscale']); $k++) {
4832                                 $data['photo']['link'][$i] = DI::baseUrl() . "/photo/" . $data['photo']['resource-id'] . "-" . $k . "." . $typetoext[$data['photo']['type']];
4833                                 $i++;
4834                         }
4835                 }
4836                 unset($data['photo']['resource-id']);
4837                 unset($data['photo']['minscale']);
4838                 unset($data['photo']['maxscale']);
4839         } else {
4840                 throw new NotFoundException();
4841         }
4842
4843         // retrieve item element for getting activities (like, dislike etc.) related to photo
4844         $condition = ['uid' => api_user(), 'resource-id' => $photo_id];
4845         $item = Post::selectFirst(['id', 'uid', 'uri', 'parent', 'allow_cid', 'deny_cid', 'allow_gid', 'deny_gid'], $condition);
4846         if (!DBA::isResult($item)) {
4847                 throw new NotFoundException('Photo-related item not found.');
4848         }
4849
4850         $data['photo']['friendica_activities'] = api_format_items_activities($item, $type);
4851
4852         // retrieve comments on photo
4853         $condition = ["`parent` = ? AND `uid` = ? AND `gravity` IN (?, ?)",
4854                 $item['parent'], api_user(), GRAVITY_PARENT, GRAVITY_COMMENT];
4855
4856         $statuses = Post::selectForUser(api_user(), [], $condition);
4857
4858         // prepare output of comments
4859         $commentData = api_format_items(Post::toArray($statuses), $user_info, false, $type);
4860         $comments = [];
4861         if ($type == "xml") {
4862                 $k = 0;
4863                 foreach ($commentData as $comment) {
4864                         $comments[$k++ . ":comment"] = $comment;
4865                 }
4866         } else {
4867                 foreach ($commentData as $comment) {
4868                         $comments[] = $comment;
4869                 }
4870         }
4871         $data['photo']['friendica_comments'] = $comments;
4872
4873         // include info if rights on photo and rights on item are mismatching
4874         $rights_mismatch = $data['photo']['allow_cid'] != $item['allow_cid'] ||
4875                 $data['photo']['deny_cid'] != $item['deny_cid'] ||
4876                 $data['photo']['allow_gid'] != $item['allow_gid'] ||
4877                 $data['photo']['deny_gid'] != $item['deny_gid'];
4878         $data['photo']['rights_mismatch'] = $rights_mismatch;
4879
4880         return $data;
4881 }
4882
4883 /**
4884  * Return an item with announcer data if it had been announced
4885  *
4886  * @param array $item Item array
4887  * @return array Item array with announce data
4888  */
4889 function api_get_announce($item)
4890 {
4891         // Quit if the item already has got a different owner and author
4892         if ($item['owner-id'] != $item['author-id']) {
4893                 return [];
4894         }
4895
4896         // Don't change original or Diaspora posts
4897         if ($item['origin'] || in_array($item['network'], [Protocol::DIASPORA])) {
4898                 return [];
4899         }
4900
4901         // Quit if we do now the original author and it had been a post from a native network
4902         if (!empty($item['contact-uid']) && in_array($item['network'], Protocol::NATIVE_SUPPORT)) {
4903                 return [];
4904         }
4905
4906         $fields = ['author-id', 'author-name', 'author-link', 'author-avatar'];
4907         $condition = ['parent-uri' => $item['uri'], 'gravity' => GRAVITY_ACTIVITY, 'uid' => [0, $item['uid']], 'vid' => Verb::getID(Activity::ANNOUNCE)];
4908         $announce = Post::selectFirstForUser($item['uid'], $fields, $condition, ['order' => ['received' => true]]);
4909         if (!DBA::isResult($announce)) {
4910                 return [];
4911         }
4912
4913         return array_merge($item, $announce);
4914 }
4915
4916 /**
4917  *
4918  * @param array $item
4919  *
4920  * @return array
4921  * @throws Exception
4922  */
4923 function api_in_reply_to($item)
4924 {
4925         $in_reply_to = [];
4926
4927         $in_reply_to['status_id'] = null;
4928         $in_reply_to['user_id'] = null;
4929         $in_reply_to['status_id_str'] = null;
4930         $in_reply_to['user_id_str'] = null;
4931         $in_reply_to['screen_name'] = null;
4932
4933         if (($item['thr-parent'] != $item['uri']) && ($item['gravity'] != GRAVITY_PARENT)) {
4934                 $parent = Post::selectFirst(['id'], ['uid' => $item['uid'], 'uri' => $item['thr-parent']]);
4935                 if (DBA::isResult($parent)) {
4936                         $in_reply_to['status_id'] = intval($parent['id']);
4937                 } else {
4938                         $in_reply_to['status_id'] = intval($item['parent']);
4939                 }
4940
4941                 $in_reply_to['status_id_str'] = (string) intval($in_reply_to['status_id']);
4942
4943                 $fields = ['author-nick', 'author-name', 'author-id', 'author-link'];
4944                 $parent = Post::selectFirst($fields, ['id' => $in_reply_to['status_id']]);
4945
4946                 if (DBA::isResult($parent)) {
4947                         $in_reply_to['screen_name'] = (($parent['author-nick']) ? $parent['author-nick'] : $parent['author-name']);
4948                         $in_reply_to['user_id'] = intval($parent['author-id']);
4949                         $in_reply_to['user_id_str'] = (string) intval($parent['author-id']);
4950                 }
4951
4952                 // There seems to be situation, where both fields are identical:
4953                 // https://github.com/friendica/friendica/issues/1010
4954                 // This is a bugfix for that.
4955                 if (intval($in_reply_to['status_id']) == intval($item['id'])) {
4956                         Logger::warning(API_LOG_PREFIX . 'ID {id} is similar to reply-to {reply-to}', ['module' => 'api', 'action' => 'in_reply_to', 'id' => $item['id'], 'reply-to' => $in_reply_to['status_id']]);
4957                         $in_reply_to['status_id'] = null;
4958                         $in_reply_to['user_id'] = null;
4959                         $in_reply_to['status_id_str'] = null;
4960                         $in_reply_to['user_id_str'] = null;
4961                         $in_reply_to['screen_name'] = null;
4962                 }
4963         }
4964
4965         return $in_reply_to;
4966 }
4967
4968 /**
4969  *
4970  * @param string $text
4971  *
4972  * @return string
4973  * @throws InternalServerErrorException
4974  */
4975 function api_clean_plain_items($text)
4976 {
4977         $include_entities = strtolower($_REQUEST['include_entities'] ?? 'false');
4978
4979         $text = BBCode::cleanPictureLinks($text);
4980         $URLSearchString = "^\[\]";
4981
4982         $text = preg_replace("/([!#@])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '$1$3', $text);
4983
4984         if ($include_entities == "true") {
4985                 $text = preg_replace("/\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '[url=$1]$1[/url]', $text);
4986         }
4987
4988         // Simplify "attachment" element
4989         $text = BBCode::removeAttachment($text);
4990
4991         return $text;
4992 }
4993
4994 /**
4995  *
4996  * @param array $contacts
4997  *
4998  * @return void
4999  */
5000 function api_best_nickname(&$contacts)
5001 {
5002         $best_contact = [];
5003
5004         if (count($contacts) == 0) {
5005                 return;
5006         }
5007
5008         foreach ($contacts as $contact) {
5009                 if ($contact["network"] == "") {
5010                         $contact["network"] = "dfrn";
5011                         $best_contact = [$contact];
5012                 }
5013         }
5014
5015         if (sizeof($best_contact) == 0) {
5016                 foreach ($contacts as $contact) {
5017                         if ($contact["network"] == "dfrn") {
5018                                 $best_contact = [$contact];
5019                         }
5020                 }
5021         }
5022
5023         if (sizeof($best_contact) == 0) {
5024                 foreach ($contacts as $contact) {
5025                         if ($contact["network"] == "dspr") {
5026                                 $best_contact = [$contact];
5027                         }
5028                 }
5029         }
5030
5031         if (sizeof($best_contact) == 0) {
5032                 foreach ($contacts as $contact) {
5033                         if ($contact["network"] == "stat") {
5034                                 $best_contact = [$contact];
5035                         }
5036                 }
5037         }
5038
5039         if (sizeof($best_contact) == 0) {
5040                 foreach ($contacts as $contact) {
5041                         if ($contact["network"] == "pump") {
5042                                 $best_contact = [$contact];
5043                         }
5044                 }
5045         }
5046
5047         if (sizeof($best_contact) == 0) {
5048                 foreach ($contacts as $contact) {
5049                         if ($contact["network"] == "twit") {
5050                                 $best_contact = [$contact];
5051                         }
5052                 }
5053         }
5054
5055         if (sizeof($best_contact) == 1) {
5056                 $contacts = $best_contact;
5057         } else {
5058                 $contacts = [$contacts[0]];
5059         }
5060 }
5061
5062 /**
5063  * Return all or a specified group of the user with the containing contacts.
5064  *
5065  * @param string $type Return type (atom, rss, xml, json)
5066  *
5067  * @return array|string
5068  * @throws BadRequestException
5069  * @throws ForbiddenException
5070  * @throws ImagickException
5071  * @throws InternalServerErrorException
5072  * @throws UnauthorizedException
5073  */
5074 function api_friendica_group_show($type)
5075 {
5076         $a = DI::app();
5077
5078         if (api_user() === false) {
5079                 throw new ForbiddenException();
5080         }
5081
5082         // params
5083         $user_info = api_get_user($a);
5084         $gid = $_REQUEST['gid'] ?? 0;
5085         $uid = $user_info['uid'];
5086
5087         // get data of the specified group id or all groups if not specified
5088         if ($gid != 0) {
5089                 $r = q(
5090                         "SELECT * FROM `group` WHERE `deleted` = 0 AND `uid` = %d AND `id` = %d",
5091                         intval($uid),
5092                         intval($gid)
5093                 );
5094                 // error message if specified gid is not in database
5095                 if (!DBA::isResult($r)) {
5096                         throw new BadRequestException("gid not available");
5097                 }
5098         } else {
5099                 $r = q(
5100                         "SELECT * FROM `group` WHERE `deleted` = 0 AND `uid` = %d",
5101                         intval($uid)
5102                 );
5103         }
5104
5105         // loop through all groups and retrieve all members for adding data in the user array
5106         $grps = [];
5107         foreach ($r as $rr) {
5108                 $members = Contact\Group::getById($rr['id']);
5109                 $users = [];
5110
5111                 if ($type == "xml") {
5112                         $user_element = "users";
5113                         $k = 0;
5114                         foreach ($members as $member) {
5115                                 $user = api_get_user($a, $member['nurl']);
5116                                 $users[$k++.":user"] = $user;
5117                         }
5118                 } else {
5119                         $user_element = "user";
5120                         foreach ($members as $member) {
5121                                 $user = api_get_user($a, $member['nurl']);
5122                                 $users[] = $user;
5123                         }
5124                 }
5125                 $grps[] = ['name' => $rr['name'], 'gid' => $rr['id'], $user_element => $users];
5126         }
5127         return api_format_data("groups", $type, ['group' => $grps]);
5128 }
5129 api_register_func('api/friendica/group_show', 'api_friendica_group_show', true);
5130
5131
5132 /**
5133  * Delete the specified group of the user.
5134  *
5135  * @param string $type Return type (atom, rss, xml, json)
5136  *
5137  * @return array|string
5138  * @throws BadRequestException
5139  * @throws ForbiddenException
5140  * @throws ImagickException
5141  * @throws InternalServerErrorException
5142  * @throws UnauthorizedException
5143  */
5144 function api_friendica_group_delete($type)
5145 {
5146         $a = DI::app();
5147
5148         if (api_user() === false) {
5149                 throw new ForbiddenException();
5150         }
5151
5152         // params
5153         $user_info = api_get_user($a);
5154         $gid = $_REQUEST['gid'] ?? 0;
5155         $name = $_REQUEST['name'] ?? '';
5156         $uid = $user_info['uid'];
5157
5158         // error if no gid specified
5159         if ($gid == 0 || $name == "") {
5160                 throw new BadRequestException('gid or name not specified');
5161         }
5162
5163         // get data of the specified group id
5164         $r = q(
5165                 "SELECT * FROM `group` WHERE `uid` = %d AND `id` = %d",
5166                 intval($uid),
5167                 intval($gid)
5168         );
5169         // error message if specified gid is not in database
5170         if (!DBA::isResult($r)) {
5171                 throw new BadRequestException('gid not available');
5172         }
5173
5174         // get data of the specified group id and group name
5175         $rname = q(
5176                 "SELECT * FROM `group` WHERE `uid` = %d AND `id` = %d AND `name` = '%s'",
5177                 intval($uid),
5178                 intval($gid),
5179                 DBA::escape($name)
5180         );
5181         // error message if specified gid is not in database
5182         if (!DBA::isResult($rname)) {
5183                 throw new BadRequestException('wrong group name');
5184         }
5185
5186         // delete group
5187         $ret = Group::removeByName($uid, $name);
5188         if ($ret) {
5189                 // return success
5190                 $success = ['success' => $ret, 'gid' => $gid, 'name' => $name, 'status' => 'deleted', 'wrong users' => []];
5191                 return api_format_data("group_delete", $type, ['result' => $success]);
5192         } else {
5193                 throw new BadRequestException('other API error');
5194         }
5195 }
5196 api_register_func('api/friendica/group_delete', 'api_friendica_group_delete', true, API_METHOD_DELETE);
5197
5198 /**
5199  * Delete a group.
5200  *
5201  * @param string $type Return type (atom, rss, xml, json)
5202  *
5203  * @return array|string
5204  * @throws BadRequestException
5205  * @throws ForbiddenException
5206  * @throws ImagickException
5207  * @throws InternalServerErrorException
5208  * @throws UnauthorizedException
5209  * @see https://developer.twitter.com/en/docs/accounts-and-users/create-manage-lists/api-reference/post-lists-destroy
5210  */
5211 function api_lists_destroy($type)
5212 {
5213         $a = DI::app();
5214
5215         if (api_user() === false) {
5216                 throw new ForbiddenException();
5217         }
5218
5219         // params
5220         $user_info = api_get_user($a);
5221         $gid = $_REQUEST['list_id'] ?? 0;
5222         $uid = $user_info['uid'];
5223
5224         // error if no gid specified
5225         if ($gid == 0) {
5226                 throw new BadRequestException('gid not specified');
5227         }
5228
5229         // get data of the specified group id
5230         $group = DBA::selectFirst('group', [], ['uid' => $uid, 'id' => $gid]);
5231         // error message if specified gid is not in database
5232         if (!$group) {
5233                 throw new BadRequestException('gid not available');
5234         }
5235
5236         if (Group::remove($gid)) {
5237                 $list = [
5238                         'name' => $group['name'],
5239                         'id' => intval($gid),
5240                         'id_str' => (string) $gid,
5241                         'user' => $user_info
5242                 ];
5243
5244                 return api_format_data("lists", $type, ['lists' => $list]);
5245         }
5246 }
5247 api_register_func('api/lists/destroy', 'api_lists_destroy', true, API_METHOD_DELETE);
5248
5249 /**
5250  * Add a new group to the database.
5251  *
5252  * @param  string $name  Group name
5253  * @param  int    $uid   User ID
5254  * @param  array  $users List of users to add to the group
5255  *
5256  * @return array
5257  * @throws BadRequestException
5258  */
5259 function group_create($name, $uid, $users = [])
5260 {
5261         // error if no name specified
5262         if ($name == "") {
5263                 throw new BadRequestException('group name not specified');
5264         }
5265
5266         // get data of the specified group name
5267         $rname = q(
5268                 "SELECT * FROM `group` WHERE `uid` = %d AND `name` = '%s' AND `deleted` = 0",
5269                 intval($uid),
5270                 DBA::escape($name)
5271         );
5272         // error message if specified group name already exists
5273         if (DBA::isResult($rname)) {
5274                 throw new BadRequestException('group name already exists');
5275         }
5276
5277         // check if specified group name is a deleted group
5278         $rname = q(
5279                 "SELECT * FROM `group` WHERE `uid` = %d AND `name` = '%s' AND `deleted` = 1",
5280                 intval($uid),
5281                 DBA::escape($name)
5282         );
5283         // error message if specified group name already exists
5284         if (DBA::isResult($rname)) {
5285                 $reactivate_group = true;
5286         }
5287
5288         // create group
5289         $ret = Group::create($uid, $name);
5290         if ($ret) {
5291                 $gid = Group::getIdByName($uid, $name);
5292         } else {
5293                 throw new BadRequestException('other API error');
5294         }
5295
5296         // add members
5297         $erroraddinguser = false;
5298         $errorusers = [];
5299         foreach ($users as $user) {
5300                 $cid = $user['cid'];
5301                 // check if user really exists as contact
5302                 $contact = q(
5303                         "SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d",
5304                         intval($cid),
5305                         intval($uid)
5306                 );
5307                 if (count($contact)) {
5308                         Group::addMember($gid, $cid);
5309                 } else {
5310                         $erroraddinguser = true;
5311                         $errorusers[] = $cid;
5312                 }
5313         }
5314
5315         // return success message incl. missing users in array
5316         $status = ($erroraddinguser ? "missing user" : ((isset($reactivate_group) && $reactivate_group) ? "reactivated" : "ok"));
5317
5318         return ['success' => true, 'gid' => $gid, 'name' => $name, 'status' => $status, 'wrong users' => $errorusers];
5319 }
5320
5321 /**
5322  * Create the specified group with the posted array of contacts.
5323  *
5324  * @param string $type Return type (atom, rss, xml, json)
5325  *
5326  * @return array|string
5327  * @throws BadRequestException
5328  * @throws ForbiddenException
5329  * @throws ImagickException
5330  * @throws InternalServerErrorException
5331  * @throws UnauthorizedException
5332  */
5333 function api_friendica_group_create($type)
5334 {
5335         $a = DI::app();
5336
5337         if (api_user() === false) {
5338                 throw new ForbiddenException();
5339         }
5340
5341         // params
5342         $user_info = api_get_user($a);
5343         $name = $_REQUEST['name'] ?? '';
5344         $uid = $user_info['uid'];
5345         $json = json_decode($_POST['json'], true);
5346         $users = $json['user'];
5347
5348         $success = group_create($name, $uid, $users);
5349
5350         return api_format_data("group_create", $type, ['result' => $success]);
5351 }
5352 api_register_func('api/friendica/group_create', 'api_friendica_group_create', true, API_METHOD_POST);
5353
5354 /**
5355  * Create a new group.
5356  *
5357  * @param string $type Return type (atom, rss, xml, json)
5358  *
5359  * @return array|string
5360  * @throws BadRequestException
5361  * @throws ForbiddenException
5362  * @throws ImagickException
5363  * @throws InternalServerErrorException
5364  * @throws UnauthorizedException
5365  * @see https://developer.twitter.com/en/docs/accounts-and-users/create-manage-lists/api-reference/post-lists-create
5366  */
5367 function api_lists_create($type)
5368 {
5369         $a = DI::app();
5370
5371         if (api_user() === false) {
5372                 throw new ForbiddenException();
5373         }
5374
5375         // params
5376         $user_info = api_get_user($a);
5377         $name = $_REQUEST['name'] ?? '';
5378         $uid = $user_info['uid'];
5379
5380         $success = group_create($name, $uid);
5381         if ($success['success']) {
5382                 $grp = [
5383                         'name' => $success['name'],
5384                         'id' => intval($success['gid']),
5385                         'id_str' => (string) $success['gid'],
5386                         'user' => $user_info
5387                 ];
5388
5389                 return api_format_data("lists", $type, ['lists'=>$grp]);
5390         }
5391 }
5392 api_register_func('api/lists/create', 'api_lists_create', true, API_METHOD_POST);
5393
5394 /**
5395  * Update the specified group with the posted array of contacts.
5396  *
5397  * @param string $type Return type (atom, rss, xml, json)
5398  *
5399  * @return array|string
5400  * @throws BadRequestException
5401  * @throws ForbiddenException
5402  * @throws ImagickException
5403  * @throws InternalServerErrorException
5404  * @throws UnauthorizedException
5405  */
5406 function api_friendica_group_update($type)
5407 {
5408         $a = DI::app();
5409
5410         if (api_user() === false) {
5411                 throw new ForbiddenException();
5412         }
5413
5414         // params
5415         $user_info = api_get_user($a);
5416         $uid = $user_info['uid'];
5417         $gid = $_REQUEST['gid'] ?? 0;
5418         $name = $_REQUEST['name'] ?? '';
5419         $json = json_decode($_POST['json'], true);
5420         $users = $json['user'];
5421
5422         // error if no name specified
5423         if ($name == "") {
5424                 throw new BadRequestException('group name not specified');
5425         }
5426
5427         // error if no gid specified
5428         if ($gid == "") {
5429                 throw new BadRequestException('gid not specified');
5430         }
5431
5432         // remove members
5433         $members = Contact\Group::getById($gid);
5434         foreach ($members as $member) {
5435                 $cid = $member['id'];
5436                 foreach ($users as $user) {
5437                         $found = ($user['cid'] == $cid ? true : false);
5438                 }
5439                 if (!isset($found) || !$found) {
5440                         Group::removeMemberByName($uid, $name, $cid);
5441                 }
5442         }
5443
5444         // add members
5445         $erroraddinguser = false;
5446         $errorusers = [];
5447         foreach ($users as $user) {
5448                 $cid = $user['cid'];
5449                 // check if user really exists as contact
5450                 $contact = q(
5451                         "SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d",
5452                         intval($cid),
5453                         intval($uid)
5454                 );
5455
5456                 if (count($contact)) {
5457                         Group::addMember($gid, $cid);
5458                 } else {
5459                         $erroraddinguser = true;
5460                         $errorusers[] = $cid;
5461                 }
5462         }
5463
5464         // return success message incl. missing users in array
5465         $status = ($erroraddinguser ? "missing user" : "ok");
5466         $success = ['success' => true, 'gid' => $gid, 'name' => $name, 'status' => $status, 'wrong users' => $errorusers];
5467         return api_format_data("group_update", $type, ['result' => $success]);
5468 }
5469
5470 api_register_func('api/friendica/group_update', 'api_friendica_group_update', true, API_METHOD_POST);
5471
5472 /**
5473  * Update information about a group.
5474  *
5475  * @param string $type Return type (atom, rss, xml, json)
5476  *
5477  * @return array|string
5478  * @throws BadRequestException
5479  * @throws ForbiddenException
5480  * @throws ImagickException
5481  * @throws InternalServerErrorException
5482  * @throws UnauthorizedException
5483  * @see https://developer.twitter.com/en/docs/accounts-and-users/create-manage-lists/api-reference/post-lists-update
5484  */
5485 function api_lists_update($type)
5486 {
5487         $a = DI::app();
5488
5489         if (api_user() === false) {
5490                 throw new ForbiddenException();
5491         }
5492
5493         // params
5494         $user_info = api_get_user($a);
5495         $gid = $_REQUEST['list_id'] ?? 0;
5496         $name = $_REQUEST['name'] ?? '';
5497         $uid = $user_info['uid'];
5498
5499         // error if no gid specified
5500         if ($gid == 0) {
5501                 throw new BadRequestException('gid not specified');
5502         }
5503
5504         // get data of the specified group id
5505         $group = DBA::selectFirst('group', [], ['uid' => $uid, 'id' => $gid]);
5506         // error message if specified gid is not in database
5507         if (!$group) {
5508                 throw new BadRequestException('gid not available');
5509         }
5510
5511         if (Group::update($gid, $name)) {
5512                 $list = [
5513                         'name' => $name,
5514                         'id' => intval($gid),
5515                         'id_str' => (string) $gid,
5516                         'user' => $user_info
5517                 ];
5518
5519                 return api_format_data("lists", $type, ['lists' => $list]);
5520         }
5521 }
5522
5523 api_register_func('api/lists/update', 'api_lists_update', true, API_METHOD_POST);
5524
5525 /**
5526  *
5527  * @param string $type Return type (atom, rss, xml, json)
5528  *
5529  * @return array|string
5530  * @throws BadRequestException
5531  * @throws ForbiddenException
5532  * @throws ImagickException
5533  * @throws InternalServerErrorException
5534  */
5535 function api_friendica_activity($type)
5536 {
5537         $a = DI::app();
5538
5539         if (api_user() === false) {
5540                 throw new ForbiddenException();
5541         }
5542         $verb = strtolower(DI::args()->getArgv()[3]);
5543         $verb = preg_replace("|\..*$|", "", $verb);
5544
5545         $id = $_REQUEST['id'] ?? 0;
5546
5547         $res = Item::performActivity($id, $verb, api_user());
5548
5549         if ($res) {
5550                 if ($type == "xml") {
5551                         $ok = "true";
5552                 } else {
5553                         $ok = "ok";
5554                 }
5555                 return api_format_data('ok', $type, ['ok' => $ok]);
5556         } else {
5557                 throw new BadRequestException('Error adding activity');
5558         }
5559 }
5560
5561 /// @TODO move to top of file or somewhere better
5562 api_register_func('api/friendica/activity/like', 'api_friendica_activity', true, API_METHOD_POST);
5563 api_register_func('api/friendica/activity/dislike', 'api_friendica_activity', true, API_METHOD_POST);
5564 api_register_func('api/friendica/activity/attendyes', 'api_friendica_activity', true, API_METHOD_POST);
5565 api_register_func('api/friendica/activity/attendno', 'api_friendica_activity', true, API_METHOD_POST);
5566 api_register_func('api/friendica/activity/attendmaybe', 'api_friendica_activity', true, API_METHOD_POST);
5567 api_register_func('api/friendica/activity/unlike', 'api_friendica_activity', true, API_METHOD_POST);
5568 api_register_func('api/friendica/activity/undislike', 'api_friendica_activity', true, API_METHOD_POST);
5569 api_register_func('api/friendica/activity/unattendyes', 'api_friendica_activity', true, API_METHOD_POST);
5570 api_register_func('api/friendica/activity/unattendno', 'api_friendica_activity', true, API_METHOD_POST);
5571 api_register_func('api/friendica/activity/unattendmaybe', 'api_friendica_activity', true, API_METHOD_POST);
5572
5573 /**
5574  * Returns notifications
5575  *
5576  * @param string $type Known types are 'atom', 'rss', 'xml' and 'json'
5577  *
5578  * @return string|array
5579  * @throws ForbiddenException
5580  * @throws BadRequestException
5581  * @throws Exception
5582  */
5583 function api_friendica_notification($type)
5584 {
5585         $a = DI::app();
5586
5587         if (api_user() === false) {
5588                 throw new ForbiddenException();
5589         }
5590         if (DI::args()->getArgc()!==3) {
5591                 throw new BadRequestException("Invalid argument count");
5592         }
5593
5594         $notifications = DI::notification()->getApiList(local_user());
5595
5596         if ($type == "xml") {
5597                 $xmlnotes = false;
5598                 if (!empty($notifications)) {
5599                         foreach ($notifications as $notification) {
5600                                 $xmlnotes[] = ["@attributes" => $notification->toArray()];
5601                         }
5602                 }
5603
5604                 $result = $xmlnotes;
5605         } elseif (count($notifications) > 0) {
5606                 $result = $notifications->getArrayCopy();
5607         } else {
5608                 $result = false;
5609         }
5610
5611         return api_format_data("notes", $type, ['note' => $result]);
5612 }
5613
5614 /**
5615  * Set notification as seen and returns associated item (if possible)
5616  *
5617  * POST request with 'id' param as notification id
5618  *
5619  * @param string $type Known types are 'atom', 'rss', 'xml' and 'json'
5620  * @return string|array
5621  * @throws BadRequestException
5622  * @throws ForbiddenException
5623  * @throws ImagickException
5624  * @throws InternalServerErrorException
5625  * @throws UnauthorizedException
5626  */
5627 function api_friendica_notification_seen($type)
5628 {
5629         $a         = DI::app();
5630         $user_info = api_get_user($a);
5631
5632         if (api_user() === false || $user_info === false) {
5633                 throw new ForbiddenException();
5634         }
5635         if (DI::args()->getArgc() !== 4) {
5636                 throw new BadRequestException("Invalid argument count");
5637         }
5638
5639         $id = (!empty($_REQUEST['id']) ? intval($_REQUEST['id']) : 0);
5640
5641         try {
5642                 $notify = DI::notify()->getByID($id, api_user());
5643                 DI::notify()->setSeen(true, $notify);
5644
5645                 if ($notify->otype === Notification\ObjectType::ITEM) {
5646                         $item = Post::selectFirstForUser(api_user(), [], ['id' => $notify->iid, 'uid' => api_user()]);
5647                         if (DBA::isResult($item)) {
5648                                 // we found the item, return it to the user
5649                                 $ret  = api_format_items([$item], $user_info, false, $type);
5650                                 $data = ['status' => $ret];
5651                                 return api_format_data("status", $type, $data);
5652                         }
5653                         // the item can't be found, but we set the notification as seen, so we count this as a success
5654                 }
5655                 return api_format_data('result', $type, ['result' => "success"]);
5656         } catch (NotFoundException $e) {
5657                 throw new BadRequestException('Invalid argument', $e);
5658         } catch (Exception $e) {
5659                 throw new InternalServerErrorException('Internal Server exception', $e);
5660         }
5661 }
5662
5663 /// @TODO move to top of file or somewhere better
5664 api_register_func('api/friendica/notification/seen', 'api_friendica_notification_seen', true, API_METHOD_POST);
5665 api_register_func('api/friendica/notification', 'api_friendica_notification', true, API_METHOD_GET);
5666
5667 /**
5668  * update a direct_message to seen state
5669  *
5670  * @param string $type Known types are 'atom', 'rss', 'xml' and 'json'
5671  * @return string|array (success result=ok, error result=error with error message)
5672  * @throws BadRequestException
5673  * @throws ForbiddenException
5674  * @throws ImagickException
5675  * @throws InternalServerErrorException
5676  * @throws UnauthorizedException
5677  */
5678 function api_friendica_direct_messages_setseen($type)
5679 {
5680         $a = DI::app();
5681         if (api_user() === false) {
5682                 throw new ForbiddenException();
5683         }
5684
5685         // params
5686         $user_info = api_get_user($a);
5687         $uid = $user_info['uid'];
5688         $id = $_REQUEST['id'] ?? 0;
5689
5690         // return error if id is zero
5691         if ($id == "") {
5692                 $answer = ['result' => 'error', 'message' => 'message id not specified'];
5693                 return api_format_data("direct_messages_setseen", $type, ['$result' => $answer]);
5694         }
5695
5696         // error message if specified id is not in database
5697         if (!DBA::exists('mail', ['id' => $id, 'uid' => $uid])) {
5698                 $answer = ['result' => 'error', 'message' => 'message id not in database'];
5699                 return api_format_data("direct_messages_setseen", $type, ['$result' => $answer]);
5700         }
5701
5702         // update seen indicator
5703         $result = DBA::update('mail', ['seen' => true], ['id' => $id]);
5704
5705         if ($result) {
5706                 // return success
5707                 $answer = ['result' => 'ok', 'message' => 'message set to seen'];
5708                 return api_format_data("direct_message_setseen", $type, ['$result' => $answer]);
5709         } else {
5710                 $answer = ['result' => 'error', 'message' => 'unknown error'];
5711                 return api_format_data("direct_messages_setseen", $type, ['$result' => $answer]);
5712         }
5713 }
5714
5715 /// @TODO move to top of file or somewhere better
5716 api_register_func('api/friendica/direct_messages_setseen', 'api_friendica_direct_messages_setseen', true);
5717
5718 /**
5719  * search for direct_messages containing a searchstring through api
5720  *
5721  * @param string $type      Known types are 'atom', 'rss', 'xml' and 'json'
5722  * @param string $box
5723  * @return string|array (success: success=true if found and search_result contains found messages,
5724  *                          success=false if nothing was found, search_result='nothing found',
5725  *                          error: result=error with error message)
5726  * @throws BadRequestException
5727  * @throws ForbiddenException
5728  * @throws ImagickException
5729  * @throws InternalServerErrorException
5730  * @throws UnauthorizedException
5731  */
5732 function api_friendica_direct_messages_search($type, $box = "")
5733 {
5734         $a = DI::app();
5735
5736         if (api_user() === false) {
5737                 throw new ForbiddenException();
5738         }
5739
5740         // params
5741         $user_info = api_get_user($a);
5742         $searchstring = $_REQUEST['searchstring'] ?? '';
5743         $uid = $user_info['uid'];
5744
5745         // error if no searchstring specified
5746         if ($searchstring == "") {
5747                 $answer = ['result' => 'error', 'message' => 'searchstring not specified'];
5748                 return api_format_data("direct_messages_search", $type, ['$result' => $answer]);
5749         }
5750
5751         // get data for the specified searchstring
5752         $r = q(
5753                 "SELECT `mail`.*, `contact`.`nurl` AS `contact-url` FROM `mail`,`contact` WHERE `mail`.`contact-id` = `contact`.`id` AND `mail`.`uid`=%d AND `body` LIKE '%s' ORDER BY `mail`.`id` DESC",
5754                 intval($uid),
5755                 DBA::escape('%'.$searchstring.'%')
5756         );
5757
5758         $profile_url = $user_info["url"];
5759
5760         // message if nothing was found
5761         if (!DBA::isResult($r)) {
5762                 $success = ['success' => false, 'search_results' => 'problem with query'];
5763         } elseif (count($r) == 0) {
5764                 $success = ['success' => false, 'search_results' => 'nothing found'];
5765         } else {
5766                 $ret = [];
5767                 foreach ($r as $item) {
5768                         if ($box == "inbox" || $item['from-url'] != $profile_url) {
5769                                 $recipient = $user_info;
5770                                 $sender = api_get_user($a, Strings::normaliseLink($item['contact-url']));
5771                         } elseif ($box == "sentbox" || $item['from-url'] == $profile_url) {
5772                                 $recipient = api_get_user($a, Strings::normaliseLink($item['contact-url']));
5773                                 $sender = $user_info;
5774                         }
5775
5776                         if (isset($recipient) && isset($sender)) {
5777                                 $ret[] = api_format_messages($item, $recipient, $sender);
5778                         }
5779                 }
5780                 $success = ['success' => true, 'search_results' => $ret];
5781         }
5782
5783         return api_format_data("direct_message_search", $type, ['$result' => $success]);
5784 }
5785
5786 /// @TODO move to top of file or somewhere better
5787 api_register_func('api/friendica/direct_messages_search', 'api_friendica_direct_messages_search', true);
5788
5789 /**
5790  * Returns a list of saved searches.
5791  *
5792  * @see https://developer.twitter.com/en/docs/accounts-and-users/manage-account-settings/api-reference/get-saved_searches-list
5793  *
5794  * @param  string $type Return format: json or xml
5795  *
5796  * @return string|array
5797  * @throws Exception
5798  */
5799 function api_saved_searches_list($type)
5800 {
5801         $terms = DBA::select('search', ['id', 'term'], ['uid' => local_user()]);
5802
5803         $result = [];
5804         while ($term = DBA::fetch($terms)) {
5805                 $result[] = [
5806                         'created_at' => api_date(time()),
5807                         'id' => intval($term['id']),
5808                         'id_str' => $term['id'],
5809                         'name' => $term['term'],
5810                         'position' => null,
5811                         'query' => $term['term']
5812                 ];
5813         }
5814
5815         DBA::close($terms);
5816
5817         return api_format_data("terms", $type, ['terms' => $result]);
5818 }
5819
5820 /// @TODO move to top of file or somewhere better
5821 api_register_func('api/saved_searches/list', 'api_saved_searches_list', true);
5822
5823 /*
5824  * Number of comments
5825  *
5826  * Bind comment numbers(friendica_comments: Int) on each statuses page of *_timeline / favorites / search
5827  *
5828  * @param object $data [Status, Status]
5829  *
5830  * @return void
5831  */
5832 function bindComments(&$data)
5833 {
5834         if (count($data) == 0) {
5835                 return;
5836         }
5837
5838         $ids = [];
5839         $comments = [];
5840         foreach ($data as $item) {
5841                 $ids[] = $item['id'];
5842         }
5843
5844         $idStr = DBA::escape(implode(', ', $ids));
5845         $sql = "SELECT `parent`, COUNT(*) as comments FROM `post-user-view` WHERE `parent` IN ($idStr) AND `deleted` = ? AND `gravity`= ? GROUP BY `parent`";
5846         $items = DBA::p($sql, 0, GRAVITY_COMMENT);
5847         $itemsData = DBA::toArray($items);
5848
5849         foreach ($itemsData as $item) {
5850                 $comments[$item['parent']] = $item['comments'];
5851         }
5852
5853         foreach ($data as $idx => $item) {
5854                 $id = $item['id'];
5855                 $data[$idx]['friendica_comments'] = isset($comments[$id]) ? $comments[$id] : 0;
5856         }
5857 }
5858
5859 /*
5860 @TODO Maybe open to implement?
5861 To.Do:
5862         [pagename] => api/1.1/statuses/lookup.json
5863         [id] => 605138389168451584
5864         [include_cards] => true
5865         [cards_platform] => Android-12
5866         [include_entities] => true
5867         [include_my_retweet] => 1
5868         [include_rts] => 1
5869         [include_reply_count] => true
5870         [include_descendent_reply_count] => true
5871 (?)
5872
5873
5874 Not implemented by now:
5875 statuses/retweets_of_me
5876 friendships/create
5877 friendships/destroy
5878 friendships/exists
5879 friendships/show
5880 account/update_location
5881 account/update_profile_background_image
5882 blocks/create
5883 blocks/destroy
5884 friendica/profile/update
5885 friendica/profile/create
5886 friendica/profile/delete
5887
5888 Not implemented in status.net:
5889 statuses/retweeted_to_me
5890 statuses/retweeted_by_me
5891 direct_messages/destroy
5892 account/end_session
5893 account/update_delivery_device
5894 notifications/follow
5895 notifications/leave
5896 blocks/exists
5897 blocks/blocking
5898 lists
5899 */