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