]> git.mxchange.org Git - friendica.git/blob - include/api.php
Merge remote-tracking branch 'sebastian/master'
[friendica.git] / include / api.php
1 <?php
2         require_once("bbcode.php");
3         require_once("datetime.php");
4         require_once("conversation.php");
5         require_once("oauth.php");
6         require_once("html2plain.php");
7         /*
8          * Twitter-Like API
9          *
10          */
11
12         $API = Array();
13         $called_api = Null;
14
15         function api_date($str){
16                 //Wed May 23 06:01:13 +0000 2007
17                 return datetime_convert('UTC', 'UTC', $str, "D M d H:i:s +0000 Y" );
18         }
19
20
21         function api_register_func($path, $func, $auth=false){
22                 global $API;
23                 $API[$path] = array('func'=>$func,
24                                                         'auth'=>$auth);
25         }
26
27         /**
28          * Simple HTTP Login
29          */
30
31         function api_login(&$a){
32                 // login with oauth
33                 try{
34                         $oauth = new FKOAuth1();
35                         list($consumer,$token) = $oauth->verify_request(OAuthRequest::from_request());
36                         if (!is_null($token)){
37                                 $oauth->loginUser($token->uid);
38                                 call_hooks('logged_in', $a->user);
39                                 return;
40                         }
41                         echo __file__.__line__.__function__."<pre>"; var_dump($consumer, $token); die();
42                 }catch(Exception $e){
43                         logger(__file__.__line__.__function__."\n".$e);
44                         //die(__file__.__line__.__function__."<pre>".$e); die();
45                 }
46
47                 
48                 
49                 // workaround for HTTP-auth in CGI mode
50                 if(x($_SERVER,'REDIRECT_REMOTE_USER')) {
51                         $userpass = base64_decode(substr($_SERVER["REDIRECT_REMOTE_USER"],6)) ;
52                         if(strlen($userpass)) {
53                                 list($name, $password) = explode(':', $userpass);
54                                 $_SERVER['PHP_AUTH_USER'] = $name;
55                                 $_SERVER['PHP_AUTH_PW'] = $password;
56                         }
57                 }
58
59                 if (!isset($_SERVER['PHP_AUTH_USER'])) {
60                    logger('API_login: ' . print_r($_SERVER,true), LOGGER_DEBUG);
61                     header('WWW-Authenticate: Basic realm="Friendica"');
62                     header('HTTP/1.0 401 Unauthorized');
63                     die('This api requires login');
64                 }
65                 
66                 $user = $_SERVER['PHP_AUTH_USER'];
67                 $encrypted = hash('whirlpool',trim($_SERVER['PHP_AUTH_PW']));
68                 
69                 
70                         /**
71                          *  next code from mod/auth.php. needs better solution
72                          */
73                         
74                 // process normal login request
75
76                 $r = q("SELECT * FROM `user` WHERE ( `email` = '%s' OR `nickname` = '%s' ) 
77                         AND `password` = '%s' AND `blocked` = 0 AND `account_expired` = 0 AND `verified` = 1 LIMIT 1",
78                         dbesc(trim($user)),
79                         dbesc(trim($user)),
80                         dbesc($encrypted)
81                 );
82                 if(count($r)){
83                         $record = $r[0];
84                 } else {
85                    logger('API_login failure: ' . print_r($_SERVER,true), LOGGER_DEBUG);
86                     header('WWW-Authenticate: Basic realm="Friendica"');
87                     header('HTTP/1.0 401 Unauthorized');
88                     die('This api requires login');
89                 }
90
91                 require_once('include/security.php');
92                 authenticate_success($record);
93
94                 call_hooks('logged_in', $a->user);
95
96         }
97         
98         /**************************
99          *  MAIN API ENTRY POINT  *
100          **************************/
101         function api_call(&$a){
102                 GLOBAL $API, $called_api;
103
104                 // preset
105                 $type="json";
106
107                 foreach ($API as $p=>$info){
108                         if (strpos($a->query_string, $p)===0){
109                                 $called_api= explode("/",$p);
110                                 //unset($_SERVER['PHP_AUTH_USER']);
111                                 if ($info['auth']===true && local_user()===false) {
112                                                 api_login($a);
113                                 }
114
115                                 load_contact_links(local_user());
116
117                                 logger('API call for ' . $a->user['username'] . ': ' . $a->query_string);
118                                 logger('API parameters: ' . print_r($_REQUEST,true));
119                                 $type="json";
120                                 if (strpos($a->query_string, ".xml")>0) $type="xml";
121                                 if (strpos($a->query_string, ".json")>0) $type="json";
122                                 if (strpos($a->query_string, ".rss")>0) $type="rss";
123                                 if (strpos($a->query_string, ".atom")>0) $type="atom";
124                                 if (strpos($a->query_string, ".as")>0) $type="as";
125
126                                 $r = call_user_func($info['func'], $a, $type);
127                                 if ($r===false) return;
128
129                                 switch($type){
130                                         case "xml":
131                                                 $r = mb_convert_encoding($r, "UTF-8",mb_detect_encoding($r));
132                                                 header ("Content-Type: text/xml");
133                                                 return '<?xml version="1.0" encoding="UTF-8"?>'."\n".$r;
134                                                 break;
135                                         case "json":
136                                                 //header ("Content-Type: application/json");
137                                                 foreach($r as $rr)
138                                                     return json_encode($rr);
139                                                 break;
140                                         case "rss":
141                                                 header ("Content-Type: application/rss+xml");
142                                                 return '<?xml version="1.0" encoding="UTF-8"?>'."\n".$r;
143                                                 break;
144                                         case "atom":
145                                                 header ("Content-Type: application/atom+xml");
146                                                 return '<?xml version="1.0" encoding="UTF-8"?>'."\n".$r;
147                                                 break;
148                                         case "as":
149                                                 //header ("Content-Type: application/json");
150                                                 //foreach($r as $rr)
151                                                 //    return json_encode($rr);
152                                                 return json_encode($r);
153                                                 break;
154
155                                 }
156                                 //echo "<pre>"; var_dump($r); die();
157                         }
158                 }
159                 logger('API call not implemented: '.$a->query_string." - ".print_r($_REQUEST,true));
160                 $r = '<status><error>not implemented</error></status>';
161                 switch($type){
162                         case "xml":
163                                 header ("Content-Type: text/xml");
164                                 return '<?xml version="1.0" encoding="UTF-8"?>'."\n".$r;
165                                 break;
166                         case "json":
167                                 header ("Content-Type: application/json");
168                             return json_encode(array('error' => 'not implemented'));
169                                 break;
170                         case "rss":
171                                 header ("Content-Type: application/rss+xml");
172                                 return '<?xml version="1.0" encoding="UTF-8"?>'."\n".$r;
173                                 break;
174                         case "atom":
175                                 header ("Content-Type: application/atom+xml");
176                                 return '<?xml version="1.0" encoding="UTF-8"?>'."\n".$r;
177                                 break;
178                 }
179         }
180
181         /**
182          * RSS extra info
183          */
184         function api_rss_extra(&$a, $arr, $user_info){
185                 if (is_null($user_info)) $user_info = api_get_user($a);
186                 $arr['$user'] = $user_info;
187                 $arr['$rss'] = array(
188                         'alternate' => $user_info['url'],
189                         'self' => $a->get_baseurl(). "/". $a->query_string,
190                         'base' => $a->get_baseurl(),
191                         'updated' => api_date(null),
192                         'atom_updated' => datetime_convert('UTC','UTC','now',ATOM_TIME),
193                         'language' => $user_info['language'],
194                         'logo'  => $a->get_baseurl()."/images/friendica-32.png",
195                 );
196                 
197                 return $arr;
198         }
199          
200         /**
201          * Returns user info array.
202          */
203         function api_get_user(&$a, $contact_id = Null){
204                 global $called_api;
205                 $user = null;
206                 $extra_query = "";
207
208
209                 if(!is_null($contact_id)){
210                         $user=$contact_id;
211                         $extra_query = "AND `contact`.`id` = %d ";
212                 }
213                 
214                 if(is_null($user) && x($_GET, 'user_id')) {
215                         $user = intval($_GET['user_id']);       
216                         $extra_query = "AND `contact`.`id` = %d ";
217                 }
218                 if(is_null($user) && x($_GET, 'screen_name')) {
219                         $user = dbesc($_GET['screen_name']);    
220                         $extra_query = "AND `contact`.`nick` = '%s' ";
221                         if (local_user()!==false)  $extra_query .= "AND `contact`.`uid`=".intval(local_user());
222                         
223                 }
224                 
225                 if (is_null($user) && $a->argc > (count($called_api)-1)){
226                         $argid = count($called_api);
227                         list($user, $null) = explode(".",$a->argv[$argid]);
228                         if(is_numeric($user)){
229                                 $user = intval($user);
230                                 $extra_query = "AND `contact`.`id` = %d ";
231                         } else {
232                                 $user = dbesc($user);
233                                 $extra_query = "AND `contact`.`nick` = '%s' ";
234                                 if (local_user()!==false)  $extra_query .= "AND `contact`.`uid`=".intval(local_user());
235                         }
236                 }
237                 
238                 if (! $user) {
239                         if (local_user()===false) {
240                                 api_login($a); return False;
241                         } else {
242                                 $user = $_SESSION['uid'];
243                                 $extra_query = "AND `contact`.`uid` = %d AND `contact`.`self` = 1 ";
244                         }
245                         
246                 }
247                 
248                 logger('api_user: ' . $extra_query . ', user: ' . $user);
249                 // user info            
250                 $uinfo = q("SELECT *, `contact`.`id` as `cid` FROM `contact`
251                                 WHERE 1
252                                 $extra_query",
253                                 $user
254                 );
255                 if (count($uinfo)==0) {
256                         return False;
257                 }
258                 
259                 if($uinfo[0]['self']) {
260                         $usr = q("select * from user where uid = %d limit 1",
261                                 intval(local_user())
262                         );
263                         $profile = q("select * from profile where uid = %d and `is-default` = 1 limit 1",
264                                 intval(local_user())
265                         );
266
267                         // count public wall messages
268                         $r = q("SELECT COUNT(`id`) as `count` FROM `item`
269                                         WHERE  `uid` = %d
270                                         AND `type`='wall' 
271                                         AND `allow_cid`='' AND `allow_gid`='' AND `deny_cid`='' AND `deny_gid`=''",
272                                         intval($uinfo[0]['uid'])
273                         );
274                         $countitms = $r[0]['count'];
275                 }
276                 else {
277                         $r = q("SELECT COUNT(`id`) as `count` FROM `item`
278                                         WHERE  `contact-id` = %d
279                                         AND `allow_cid`='' AND `allow_gid`='' AND `deny_cid`='' AND `deny_gid`=''",
280                                         intval($uinfo[0]['id'])
281                         );
282                         $countitms = $r[0]['count'];
283                 }
284
285                 // count friends
286                 $r = q("SELECT COUNT(`id`) as `count` FROM `contact`
287                                 WHERE  `uid` = %d AND `rel` IN ( %d, %d )
288                                 AND `self`=0 AND `blocked`=0 AND `pending`=0 AND `hidden`=0", 
289                                 intval($uinfo[0]['uid']),
290                                 intval(CONTACT_IS_SHARING),
291                                 intval(CONTACT_IS_FRIEND)
292                 );
293                 $countfriends = $r[0]['count'];
294
295                 $r = q("SELECT COUNT(`id`) as `count` FROM `contact`
296                                 WHERE  `uid` = %d AND `rel` IN ( %d, %d )
297                                 AND `self`=0 AND `blocked`=0 AND `pending`=0 AND `hidden`=0", 
298                                 intval($uinfo[0]['uid']),
299                                 intval(CONTACT_IS_FOLLOWER),
300                                 intval(CONTACT_IS_FRIEND)
301                 );
302                 $countfollowers = $r[0]['count'];
303
304                 $r = q("SELECT count(`id`) as `count` FROM item where starred = 1 and uid = %d and deleted = 0",
305                         intval($uinfo[0]['uid'])
306                 );
307                 $starred = $r[0]['count'];
308         
309
310                 if(! $uinfo[0]['self']) {
311                         $countfriends = 0;
312                         $countfollowers = 0;
313                         $starred = 0;
314                 }
315
316                 $ret = Array(
317                         'id' => intval($uinfo[0]['cid']),
318                         'self' => intval($uinfo[0]['self']),
319                         'uid' => intval($uinfo[0]['uid']),
320                         'name' => (($uinfo[0]['name']) ? $uinfo[0]['name'] : $uinfo[0]['nick']),
321                         'screen_name' => (($uinfo[0]['nick']) ? $uinfo[0]['nick'] : $uinfo[0]['name']),
322                         'location' => ($usr) ? $usr[0]['default-location'] : '',
323                         'profile_image_url' => $uinfo[0]['micro'],
324                         'url' => $uinfo[0]['url'],
325                         'contact_url' => $a->get_baseurl()."/contacts/".$uinfo[0]['cid'],
326                         'protected' => false,   
327                         'friends_count' => intval($countfriends),
328                         'created_at' => api_date($uinfo[0]['name-date']),
329                         'utc_offset' => "+00:00",
330                         'time_zone' => 'UTC', //$uinfo[0]['timezone'],
331                         'geo_enabled' => false,
332                         'statuses_count' => intval($countitms), #XXX: fix me 
333                         'lang' => 'en', #XXX: fix me
334                         'description' => (($profile) ? $profile[0]['pdesc'] : ''),
335                         'followers_count' => intval($countfollowers),
336                         'favourites_count' => intval($starred),
337                         'contributors_enabled' => false,
338                         'follow_request_sent' => true,
339                         'profile_background_color' => 'cfe8f6',
340                         'profile_text_color' => '000000',
341                         'profile_link_color' => 'FF8500',
342                         'profile_sidebar_fill_color' =>'AD0066',
343                         'profile_sidebar_border_color' => 'AD0066',
344                         'profile_background_image_url' => '',
345                         'profile_background_tile' => false,
346                         'profile_use_background_image' => false,
347                         'notifications' => false,
348                         'following' => '', #XXX: fix me
349                         'verified' => true, #XXX: fix me
350                         'status' => array()
351                 );
352         
353                 return $ret;
354                 
355         }
356
357         function api_item_get_user(&$a, $item) {
358                 global $usercache;
359
360                 // The author is our direct contact, in a conversation with us.
361                 if(link_compare($item['url'],$item['author-link'])) {
362                         return api_get_user($a,$item['cid']);
363                 }
364                 else {
365                         // The author may be a contact of ours, but is replying to somebody else. 
366                         // Figure out if we know him/her.
367                         $normalised = normalise_link((strlen($item['author-link'])) ? $item['author-link'] : $item['url']);
368             if(($normalised != 'mailbox') && (x($a->contacts[$normalised])))
369                                 return api_get_user($a,$a->contacts[$normalised]['id']);
370                 }
371                 // We don't know this person directly.
372                 
373                 list($nick, $name) = array_map("trim",explode("(",$item['author-name']));
374                 $name=str_replace(")","",$name);
375
376                 if ($name == '')
377                         $name = $nick;
378
379                 if ($nick == '')
380                         $nick = $name;
381
382                 // Generating a random ID
383                 if (is_null($usercache[$nick]) or !array_key_exists($nick, $usercache))
384                         $usercache[$nick] = mt_rand(2000000, 2100000);
385
386                 $ret = array(
387                         'id' => $usercache[$nick],
388                         'name' => $name,
389                         'screen_name' => $nick,
390                         'location' => '', //$uinfo[0]['default-location'],
391                         'description' => '',
392                         'profile_image_url' => $item['author-avatar'],
393                         'url' => $item['author-link'],
394                         'protected' => false,   #
395                         'followers_count' => 0,
396                         'friends_count' => 0,
397                         'created_at' => '',
398                         'favourites_count' => 0,
399                         'utc_offset' => 0, #XXX: fix me
400                         'time_zone' => '', //$uinfo[0]['timezone'],
401                         'statuses_count' => 0,
402                         'following' => 1,
403                         'statusnet_blocking' => false,
404                         'notifications' => false,
405                         'uid' => 0,
406                         'contact_url' => 0,
407                         'geo_enabled' => false,
408                         'lang' => 'en', #XXX: fix me
409                         'contributors_enabled' => false,
410                         'follow_request_sent' => false,
411                         'profile_background_color' => 'cfe8f6',
412                         'profile_text_color' => '000000',
413                         'profile_link_color' => 'FF8500',
414                         'profile_sidebar_fill_color' =>'AD0066',
415                         'profile_sidebar_border_color' => 'AD0066',
416                         'profile_background_image_url' => '',
417                         'profile_background_tile' => false,
418                         'profile_use_background_image' => false,
419                         'verified' => true, #XXX: fix me
420                         'followers' => '', #XXX: fix me
421                         'status' => array()
422                 );
423
424                 return $ret; 
425         }
426
427
428         /**
429          *  load api $templatename for $type and replace $data array
430          */
431         function api_apply_template($templatename, $type, $data){
432
433                 $a = get_app();
434
435                 switch($type){
436                         case "atom":
437                         case "rss":
438                         case "xml":
439                                 $data = array_xmlify($data);
440                                 $tpl = get_markup_template("api_".$templatename."_".$type.".tpl");
441                                 $ret = replace_macros($tpl, $data);
442                                 break;
443                         case "json":
444                                 $ret = $data;
445                                 break;
446                 }
447                 return $ret;
448         }
449         
450         /**
451          ** TWITTER API
452          */
453         
454         /**
455          * Returns an HTTP 200 OK response code and a representation of the requesting user if authentication was successful; 
456          * returns a 401 status code and an error message if not. 
457          * http://developer.twitter.com/doc/get/account/verify_credentials
458          */
459         function api_account_verify_credentials(&$a, $type){
460                 if (local_user()===false) return false;
461                 $user_info = api_get_user($a);
462                 
463                 return api_apply_template("user", $type, array('$user' => $user_info));
464
465         }
466         api_register_func('api/account/verify_credentials','api_account_verify_credentials', true);
467                 
468
469         /**
470          * get data from $_POST or $_GET
471          */
472         function requestdata($k){
473                 if (isset($_POST[$k])){
474                         return $_POST[$k];
475                 }
476                 if (isset($_GET[$k])){
477                         return $_GET[$k];
478                 }
479                 return null;
480         }
481
482 /*Waitman Gobble Mod*/
483         function api_statuses_mediap(&$a, $type) {
484                 if (local_user()===false) {
485                         logger('api_statuses_update: no user');
486                         return false;
487                 }
488                 $user_info = api_get_user($a);
489
490                 $_REQUEST['type'] = 'wall';
491                 $_REQUEST['profile_uid'] = local_user();
492                 $_REQUEST['api_source'] = true;
493                 $txt = urldecode(requestdata('status'));
494
495                 require_once('library/HTMLPurifier.auto.php');
496                 require_once('include/html2bbcode.php');
497
498                 if((strpos($txt,'<') !== false) || (strpos($txt,'>') !== false)) {
499                         $txt = html2bb_video($txt);
500                         $config = HTMLPurifier_Config::createDefault();
501                         $config->set('Cache.DefinitionImpl', null);
502                         $purifier = new HTMLPurifier($config);
503                         $txt = $purifier->purify($txt);
504                 }
505                 $txt = html2bbcode($txt);
506                 
507                 $a->argv[1]=$user_info['screen_name']; //should be set to username?
508                 
509                 $_REQUEST['hush']='yeah'; //tell wall_upload function to return img info instead of echo
510                 require_once('mod/wall_upload.php');
511                 $bebop = wall_upload_post($a);
512                 
513                 //now that we have the img url in bbcode we can add it to the status and insert the wall item.
514                 $_REQUEST['body']=$txt."\n\n".$bebop;
515                 require_once('mod/item.php');
516                 item_post($a);
517
518                 // this should output the last post (the one we just posted).
519                 return api_status_show($a,$type);
520         }
521         api_register_func('api/statuses/mediap','api_statuses_mediap', true);
522 /*Waitman Gobble Mod*/
523
524
525         function api_statuses_update(&$a, $type) {
526                 if (local_user()===false) {
527                         logger('api_statuses_update: no user');
528                         return false;
529                 }
530                 $user_info = api_get_user($a);
531
532                 // convert $_POST array items to the form we use for web posts.
533
534                 // logger('api_post: ' . print_r($_POST,true));
535
536                 if(requestdata('htmlstatus')) {
537                         require_once('library/HTMLPurifier.auto.php');
538                         require_once('include/html2bbcode.php');
539
540                         $txt = requestdata('htmlstatus');
541                         if((strpos($txt,'<') !== false) || (strpos($txt,'>') !== false)) {
542
543                                 $txt = html2bb_video($txt);
544
545                                 $config = HTMLPurifier_Config::createDefault();
546                                 $config->set('Cache.DefinitionImpl', null);
547
548
549                                 $purifier = new HTMLPurifier($config);
550                                 $txt = $purifier->purify($txt);
551
552                                 $_REQUEST['body'] = html2bbcode($txt);
553                         }
554
555                 }
556                 else
557                         $_REQUEST['body'] = urldecode(requestdata('status'));
558
559                 $parent = requestdata('in_reply_to_status_id');
560                 if(ctype_digit($parent))
561                         $_REQUEST['parent'] = $parent;
562                 else
563                         $_REQUEST['parent_uri'] = $parent;
564
565                 if(requestdata('lat') && requestdata('long'))
566                         $_REQUEST['coord'] = sprintf("%s %s",requestdata('lat'),requestdata('long'));
567                 $_REQUEST['profile_uid'] = local_user();
568                 if(requestdata('parent'))
569                         $_REQUEST['type'] = 'net-comment';
570                 else {
571                         $_REQUEST['type'] = 'wall';
572                         if(x($_FILES,'media')) {
573                                 // upload the image if we have one
574                                 $_REQUEST['hush']='yeah'; //tell wall_upload function to return img info instead of echo
575                                 require_once('mod/wall_upload.php');
576                                 $media = wall_upload_post($a);
577                                 if(strlen($media)>0)
578                                         $_REQUEST['body'] .= "\n\n".$media;
579                                 }
580                 }
581
582                 // set this so that the item_post() function is quiet and doesn't redirect or emit json
583
584                 $_REQUEST['api_source'] = true;
585
586                 // call out normal post function
587
588                 require_once('mod/item.php');
589                 item_post($a);  
590
591                 // this should output the last post (the one we just posted).
592                 return api_status_show($a,$type);
593         }
594         api_register_func('api/statuses/update','api_statuses_update', true);
595
596
597         function api_status_show(&$a, $type){
598                 $user_info = api_get_user($a);
599                 // get last public wall message
600                 $lastwall = q("SELECT `item`.*, `i`.`contact-id` as `reply_uid`, `i`.`nick` as `reply_author`
601                                 FROM `item`, `contact`,
602                                         (SELECT `item`.`id`, `item`.`contact-id`, `contact`.`nick` FROM `item`,`contact` WHERE `contact`.`id`=`item`.`contact-id`) as `i` 
603                                 WHERE `item`.`contact-id` = %d
604                                         AND `i`.`id` = `item`.`parent`
605                                         AND `contact`.`id`=`item`.`contact-id` AND `contact`.`self`=1
606                                         AND `type`!='activity'
607                                         AND `item`.`allow_cid`='' AND `item`.`allow_gid`='' AND `item`.`deny_cid`='' AND `item`.`deny_gid`=''
608                                 ORDER BY `created` DESC 
609                                 LIMIT 1",
610                                 intval($user_info['id'])
611                 );
612
613                 if (count($lastwall)>0){
614                         $lastwall = $lastwall[0];
615                         
616                         $in_reply_to_status_id = '';
617                         $in_reply_to_user_id = '';
618                         $in_reply_to_screen_name = '';
619                         if ($lastwall['parent']!=$lastwall['id']) {
620                                 $in_reply_to_status_id=$lastwall['parent'];
621                                 $in_reply_to_user_id = $lastwall['reply_uid'];
622                                 $in_reply_to_screen_name = $lastwall['reply_author'];
623                         }  
624                         $status_info = array(
625                                 'text' => html2plain(bbcode($lastwall['body']), 0),
626                                 'truncated' => false,
627                                 'created_at' => api_date($lastwall['created']),
628                                 'in_reply_to_status_id' => $in_reply_to_status_id,
629                                 'source' => (($lastwall['app']) ? $lastwall['app'] : 'web'),
630                                 'id' => $lastwall['contact-id'],
631                                 'in_reply_to_user_id' => $in_reply_to_user_id,
632                                 'in_reply_to_screen_name' => $in_reply_to_screen_name,
633                                 'geo' => '',
634                                 'favorited' => false,
635                                 'coordinates' => $lastwall['coord'],
636                                 'place' => $lastwall['location'],
637                                 'contributors' => ''                                    
638                         );
639                         $status_info['user'] = $user_info;
640                 }
641                 return  api_apply_template("status", $type, array('$status' => $status_info));
642                 
643         }
644
645
646
647
648                 
649         /**
650          * Returns extended information of a given user, specified by ID or screen name as per the required id parameter.
651          * The author's most recent status will be returned inline.
652          * http://developer.twitter.com/doc/get/users/show
653          */
654         function api_users_show(&$a, $type){
655                 $user_info = api_get_user($a);
656                 // get last public wall message
657                 $lastwall = q("SELECT `item`.*, `i`.`contact-id` as `reply_uid`, `i`.`nick` as `reply_author`
658                                 FROM `item`, `contact`,
659                                         (SELECT `item`.`id`, `item`.`contact-id`, `contact`.`nick` FROM `item`,`contact` WHERE `contact`.`id`=`item`.`contact-id`) as `i` 
660                                 WHERE `item`.`contact-id` = %d
661                                         AND `i`.`id` = `item`.`parent`
662                                         AND `contact`.`id`=`item`.`contact-id` AND `contact`.`self`=1
663                                         AND `type`!='activity'
664                                         AND `item`.`allow_cid`='' AND `item`.`allow_gid`='' AND `item`.`deny_cid`='' AND `item`.`deny_gid`=''
665                                 ORDER BY `created` DESC 
666                                 LIMIT 1",
667                                 intval($user_info['id'])
668                 );
669
670                 if (count($lastwall)>0){
671                         $lastwall = $lastwall[0];
672                         
673                         $in_reply_to_status_id = '';
674                         $in_reply_to_user_id = '';
675                         $in_reply_to_screen_name = '';
676                         if ($lastwall['parent']!=$lastwall['id']) {
677                                 $in_reply_to_status_id=$lastwall['parent'];
678                                 $in_reply_to_user_id = $lastwall['reply_uid'];
679                                 $in_reply_to_screen_name = $lastwall['reply_author'];
680                         }  
681                         $user_info['status'] = array(
682                                 'created_at' => api_date($lastwall['created']),
683                                 'id' => $lastwall['contact-id'],
684                                 'text' => html2plain(bbcode($lastwall['body']), 0),
685                                 'source' => (($lastwall['app']) ? $lastwall['app'] : 'web'),
686                                 'truncated' => false,
687                                 'in_reply_to_status_id' => $in_reply_to_status_id,
688                                 'in_reply_to_user_id' => $in_reply_to_user_id,
689                                 'favorited' => false,
690                                 'in_reply_to_screen_name' => $in_reply_to_screen_name,
691                                 'geo' => '',
692                                 'coordinates' => $lastwall['coord'],
693                                 'place' => $lastwall['location'],
694                                 'contributors' => ''
695                         );
696                 }
697                 return  api_apply_template("user", $type, array('$user' => $user_info));
698
699         }
700         api_register_func('api/users/show','api_users_show');
701
702         /**
703          *
704          * http://developer.twitter.com/doc/get/statuses/home_timeline
705          *
706          * TODO: Optional parameters
707          * TODO: Add reply info
708          */
709         function api_statuses_home_timeline(&$a, $type){
710                 if (local_user()===false) return false;
711
712                 $user_info = api_get_user($a);
713                 // get last newtork messages
714
715
716                 // params
717                 $count = (x($_REQUEST,'count')?$_REQUEST['count']:20);
718                 $page = (x($_REQUEST,'page')?$_REQUEST['page']-1:0);
719                 if ($page<0) $page=0;
720                 $since_id = (x($_REQUEST,'since_id')?$_REQUEST['since_id']:0);
721                 $max_id = (x($_REQUEST,'max_id')?$_REQUEST['max_id']:0);
722                 $exclude_replies = (x($_REQUEST,'exclude_replies')?1:0);
723                 //$since_id = 0;//$since_id = (x($_REQUEST,'since_id')?$_REQUEST['since_id']:0);
724
725                 $start = $page*$count;
726
727                 //$include_entities = (x($_REQUEST,'include_entities')?$_REQUEST['include_entities']:false);
728
729                 $sql_extra = '';
730                 if ($max_id > 0)
731                         $sql_extra .= ' AND `item`.`id` <= '.intval($max_id);
732                 if ($exclude_replies > 0)
733                         $sql_extra .= ' AND `item`.`parent` = `item`.`id`';
734
735                 $r = q("SELECT `item`.*, `item`.`id` AS `item_id`,
736                         `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`,
737                         `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
738                         `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
739                         FROM `item`, `contact`
740                         WHERE `item`.`uid` = %d
741                         AND `item`.`visible` = 1 and `item`.`moderated` = 0 AND `item`.`deleted` = 0
742                         AND `contact`.`id` = `item`.`contact-id`
743                         AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
744                         $sql_extra
745                         AND `item`.`id`>%d
746                         ORDER BY `item`.`received` DESC LIMIT %d ,%d ",
747                         intval($user_info['uid']),
748                         intval($since_id),
749                         intval($start), intval($count)
750                 );
751
752                 $ret = api_format_items($r,$user_info);
753
754
755                 $data = array('$statuses' => $ret);
756                 switch($type){
757                         case "atom":
758                         case "rss":
759                                 $data = api_rss_extra($a, $data, $user_info);
760                                 break;
761                         case "as":
762                                 $as = api_format_as($a, $ret, $user_info);
763                                 $as['title'] = $a->config['sitename']." Home Timeline";
764                                 $as['link']['url'] = $a->get_baseurl()."/".$user_info["screen_name"]."/all";
765                                 return($as);
766                                 break;
767                 }
768
769                 return  api_apply_template("timeline", $type, $data);
770         }
771         api_register_func('api/statuses/home_timeline','api_statuses_home_timeline', true);
772         api_register_func('api/statuses/friends_timeline','api_statuses_home_timeline', true);
773
774         function api_statuses_public_timeline(&$a, $type){
775                 if (local_user()===false) return false;
776
777                 $user_info = api_get_user($a);
778                 // get last newtork messages
779
780
781                 // params
782                 $count = (x($_REQUEST,'count')?$_REQUEST['count']:20);
783                 $page = (x($_REQUEST,'page')?$_REQUEST['page']-1:0);
784                 if ($page<0) $page=0;
785                 $since_id = (x($_REQUEST,'since_id')?$_REQUEST['since_id']:0);
786                 $max_id = (x($_REQUEST,'max_id')?$_REQUEST['max_id']:0);
787                 //$since_id = 0;//$since_id = (x($_REQUEST,'since_id')?$_REQUEST['since_id']:0);
788
789                 $start = $page*$count;
790
791                 //$include_entities = (x($_REQUEST,'include_entities')?$_REQUEST['include_entities']:false);
792
793                 if ($max_id > 0)
794                         $sql_extra = 'AND `item`.`id` <= '.intval($max_id);
795
796                 /*$r = q("SELECT `item`.*, `item`.`id` AS `item_id`,
797                         `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`,
798                         `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
799                         `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
800                         FROM `item`, `contact`
801                         WHERE `item`.`visible` = 1 and `item`.`moderated` = 0 AND `item`.`deleted` = 0
802                         AND `item`.`allow_cid` = ''  AND `item`.`allow_gid` = '' 
803                         AND `item`.`deny_cid`  = '' AND `item`.`deny_gid`  = '' 
804                         AND `item`.`private` = 0 AND `item`.`wall` = 1 AND `user`.`hidewall` = 0
805                         AND `contact`.`id` = `item`.`contact-id`
806                         AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
807                         $sql_extra
808                         AND `item`.`id`>%d
809                         ORDER BY `item`.`received` DESC LIMIT %d ,%d ",
810                         intval($since_id),
811                         intval($start), intval($count)
812                 );*/
813                 $r = q("SELECT `item`.*, `item`.`id` AS `item_id`,
814                         `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`,
815                         `contact`.`network`, `contact`.`thumb`, `contact`.`self`, `contact`.`writable`,
816                         `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`,
817                         `user`.`nickname`, `user`.`hidewall`
818                         FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
819                         LEFT JOIN `user` ON `user`.`uid` = `item`.`uid`
820                         WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0
821                         AND `item`.`allow_cid` = ''  AND `item`.`allow_gid` = ''
822                         AND `item`.`deny_cid`  = '' AND `item`.`deny_gid`  = ''
823                         AND `item`.`private` = 0 AND `item`.`wall` = 1 AND `user`.`hidewall` = 0
824                         AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
825                         $sql_extra
826                         AND `item`.`id`>%d
827                         ORDER BY `received` DESC LIMIT %d, %d ",
828                         intval($since_id),
829                         intval($start),
830                         intval($count));
831
832                 $ret = api_format_items($r,$user_info);
833
834
835                 $data = array('$statuses' => $ret);
836                 switch($type){
837                         case "atom":
838                         case "rss":
839                                 $data = api_rss_extra($a, $data, $user_info);
840                                 break;
841                         case "as":
842                                 $as = api_format_as($a, $ret, $user_info);
843                                 $as['title'] = $a->config['sitename']." Public Timeline";
844                                 $as['link']['url'] = $a->get_baseurl()."/";
845                                 return($as);
846                                 break;
847                 }
848
849                 return  api_apply_template("timeline", $type, $data);
850         }
851         api_register_func('api/statuses/public_timeline','api_statuses_public_timeline', true);
852
853         /**
854          * 
855          */
856         function api_statuses_show(&$a, $type){
857                 if (local_user()===false) return false;
858
859                 $user_info = api_get_user($a);
860
861                 // params
862                 $id = intval($a->argv[3]);
863
864                 logger('API: api_statuses_show: '.$id);
865
866                 //$include_entities = (x($_REQUEST,'include_entities')?$_REQUEST['include_entities']:false);
867                 $conversation = (x($_REQUEST,'conversation')?1:0);
868
869                 $sql_extra = '';
870                 if ($conversation)
871                         $sql_extra .= " AND `item`.`parent` = %d  ORDER BY `received` ASC ";
872                 else
873                         $sql_extra .= " AND `item`.`id` = %d";
874
875                 $r = q("SELECT `item`.*, `item`.`id` AS `item_id`,
876                         `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`,
877                         `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
878                         `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
879                         FROM `item`, `contact`
880                         WHERE `item`.`visible` = 1 and `item`.`moderated` = 0 AND `item`.`deleted` = 0
881                         AND `contact`.`id` = `item`.`contact-id`
882                         AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
883                         $sql_extra",
884                         intval($id)
885                 );
886
887                 $ret = api_format_items($r,$user_info);
888
889                 if ($conversation) {
890                         $data = array('$statuses' => $ret);
891                         return api_apply_template("timeline", $type, $data);
892                 } else {
893                         $data = array('$status' => $ret[0]);
894                         /*switch($type){
895                                 case "atom":
896                                 case "rss":
897                                         $data = api_rss_extra($a, $data, $user_info);
898                         }*/
899                         return  api_apply_template("status", $type, $data);
900                 }
901         }
902         api_register_func('api/statuses/show','api_statuses_show', true);
903
904
905         /**
906          * 
907          */
908         function api_statuses_repeat(&$a, $type){
909                 if (local_user()===false) return false;
910
911                 $user_info = api_get_user($a);
912
913                 // params
914                 $id = intval($a->argv[3]);
915
916                 logger('API: api_statuses_repeat: '.$id);
917
918                 //$include_entities = (x($_REQUEST,'include_entities')?$_REQUEST['include_entities']:false);
919
920                 $r = q("SELECT `item`.*, `item`.`id` AS `item_id`, `contact`.`nick` as `reply_author`,
921                         `contact`.`name`, `contact`.`photo`, `contact`.`url` as `reply_url`, `contact`.`rel`,
922                         `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
923                         `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
924                         FROM `item`, `contact`
925                         WHERE `item`.`visible` = 1 and `item`.`moderated` = 0 AND `item`.`deleted` = 0
926                         AND `contact`.`id` = `item`.`contact-id`
927                         AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
928                         $sql_extra
929                         AND `item`.`id`=%d",
930                         intval($id)
931                 );
932
933                 if ($r[0]['body'] != "") {
934                         $_REQUEST['body'] = html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8')."[url=".$r[0]['reply_url']."]".$r[0]['reply_author']."[/url] \n".$r[0]['body'];
935                         $_REQUEST['profile_uid'] = local_user();
936                         $_REQUEST['type'] = 'wall';
937                         $_REQUEST['api_source'] = true;
938
939                         require_once('mod/item.php');
940                         item_post($a);
941                 }
942
943                 if ($type == 'xml')
944                         $ok = "true";
945                 else
946                         $ok = "ok";
947
948                 return api_apply_template('test', $type, array('$ok' => $ok));
949         }
950         api_register_func('api/statuses/retweet','api_statuses_repeat', true);
951
952         /**
953          * 
954          */
955         function api_statuses_destroy(&$a, $type){
956                 if (local_user()===false) return false;
957
958                 $user_info = api_get_user($a);
959
960                 // params
961                 $id = intval($a->argv[3]);
962
963                 logger('API: api_statuses_destroy: '.$id);
964
965                 require_once('include/items.php');
966                 drop_item($id, false);
967
968                 if ($type == 'xml')
969                         $ok = "true";
970                 else
971                         $ok = "ok";
972
973                 return api_apply_template('test', $type, array('$ok' => $ok));
974         }
975         api_register_func('api/statuses/destroy','api_statuses_destroy', true);
976
977         /**
978          * 
979          * http://developer.twitter.com/doc/get/statuses/mentions
980          * 
981          */
982         function api_statuses_mentions(&$a, $type){
983                 if (local_user()===false) return false;
984                                 
985                 $user_info = api_get_user($a);
986                 // get last newtork messages
987
988
989                 // params
990                 $count = (x($_REQUEST,'count')?$_REQUEST['count']:20);
991                 $page = (x($_REQUEST,'page')?$_REQUEST['page']-1:0);
992                 if ($page<0) $page=0;
993                 $since_id = (x($_REQUEST,'since_id')?$_REQUEST['since_id']:0);
994                 $max_id = (x($_REQUEST,'max_id')?$_REQUEST['max_id']:0);
995                 //$since_id = 0;//$since_id = (x($_REQUEST,'since_id')?$_REQUEST['since_id']:0);
996
997                 $start = $page*$count;
998
999                 //$include_entities = (x($_REQUEST,'include_entities')?$_REQUEST['include_entities']:false);
1000
1001                 $myurl = $a->get_baseurl() . '/profile/'. $a->user['nickname'];
1002                 $myurl = substr($myurl,strpos($myurl,'://')+3);
1003                 $myurl = str_replace(array('www.','.'),array('','\\.'),$myurl);
1004                 $diasp_url = str_replace('/profile/','/u/',$myurl);
1005
1006                 if (get_config('system','use_fulltext_engine'))
1007                         $sql_extra .= sprintf(" AND `item`.`parent` IN (SELECT distinct(`parent`) from item where (MATCH(`author-link`) AGAINST ('".'"%s"'."' in boolean mode) or MATCH(`tag`) AGAINST ('".'"%s"'."' in boolean mode) or MATCH(tag) AGAINST ('".'"%s"'."' in boolean mode))) ",
1008                                 dbesc(protect_sprintf($myurl)),
1009                                 dbesc(protect_sprintf($myurl)),
1010                                 dbesc(protect_sprintf($diasp_url))
1011                         );
1012                 else
1013                         $sql_extra .= sprintf(" AND `item`.`parent` IN (SELECT distinct(`parent`) from item where ( `author-link` like '%s' or `tag` like '%s' or tag like '%s' )) ",
1014                                 dbesc(protect_sprintf('%' . $myurl)),
1015                                 dbesc(protect_sprintf('%' . $myurl . ']%')),
1016                                 dbesc(protect_sprintf('%' . $diasp_url . ']%'))
1017                         );
1018
1019                 if ($max_id > 0)
1020                         $sql_extra .= ' AND `item`.`id` <= '.intval($max_id);
1021
1022                 $r = q("SELECT `item`.*, `item`.`id` AS `item_id`, 
1023                         `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`,
1024                         `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
1025                         `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
1026                         FROM `item`, `contact`
1027                         WHERE `item`.`uid` = %d
1028                         AND `item`.`visible` = 1 and `item`.`moderated` = 0 AND `item`.`deleted` = 0
1029                         AND `contact`.`id` = `item`.`contact-id`
1030                         AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
1031                         $sql_extra
1032                         AND `item`.`id`>%d
1033                         ORDER BY `item`.`received` DESC LIMIT %d ,%d ",
1034                         intval($user_info['uid']),
1035                         intval($since_id),
1036                         intval($start), intval($count)
1037                 );
1038
1039                 $ret = api_format_items($r,$user_info);
1040
1041
1042                 $data = array('$statuses' => $ret);
1043                 switch($type){
1044                         case "atom":
1045                         case "rss":
1046                                 $data = api_rss_extra($a, $data, $user_info);
1047                                 break;
1048                         case "as":
1049                                 $as = api_format_as($a, $ret, $user_info);
1050                                 $as["title"] = $a->config['sitename']." Mentions";
1051                                 $as['link']['url'] = $a->get_baseurl()."/";
1052                                 return($as);
1053                                 break;
1054                 }
1055
1056                 return  api_apply_template("timeline", $type, $data);
1057         }
1058         api_register_func('api/statuses/mentions','api_statuses_mentions', true);
1059         api_register_func('api/statuses/replies','api_statuses_mentions', true);
1060
1061
1062         function api_statuses_user_timeline(&$a, $type){
1063                 if (local_user()===false) return false;
1064                 
1065                 $user_info = api_get_user($a);
1066                 // get last newtork messages
1067
1068
1069                 logger("api_statuses_user_timeline: local_user: ". local_user() .
1070                            "\nuser_info: ".print_r($user_info, true) .
1071                            "\n_REQUEST:  ".print_r($_REQUEST, true),
1072                            LOGGER_DEBUG);
1073
1074                 // params
1075                 $count = (x($_REQUEST,'count')?$_REQUEST['count']:20);
1076                 $page = (x($_REQUEST,'page')?$_REQUEST['page']-1:0);
1077                 if ($page<0) $page=0;
1078                 $since_id = (x($_REQUEST,'since_id')?$_REQUEST['since_id']:0);
1079                 $exclude_replies = (x($_REQUEST,'exclude_replies')?1:0);
1080                 //$since_id = 0;//$since_id = (x($_REQUEST,'since_id')?$_REQUEST['since_id']:0);
1081                 
1082                 $start = $page*$count;
1083
1084                 $sql_extra = '';
1085                 if ($user_info['self']==1) $sql_extra .= " AND `item`.`wall` = 1 ";
1086                 if ($exclude_replies > 0)  $sql_extra .= ' AND `item`.`parent` = `item`.`id`';
1087
1088                 $r = q("SELECT `item`.*, `item`.`id` AS `item_id`, 
1089                         `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`,
1090                         `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
1091                         `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
1092                         FROM `item`, `contact`
1093                         WHERE `item`.`uid` = %d
1094                         AND `item`.`contact-id` = %d
1095                         AND `item`.`visible` = 1 and `item`.`moderated` = 0 AND `item`.`deleted` = 0
1096                         AND `contact`.`id` = `item`.`contact-id`
1097                         AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
1098                         $sql_extra
1099                         AND `item`.`id`>%d
1100                         ORDER BY `item`.`received` DESC LIMIT %d ,%d ",
1101                         intval(local_user()),
1102                         intval($user_info['id']),
1103                         intval($since_id),
1104                         intval($start), intval($count)
1105                 );
1106
1107                 $ret = api_format_items($r,$user_info);
1108
1109
1110                 $data = array('$statuses' => $ret);
1111                 switch($type){
1112                         case "atom":
1113                         case "rss":
1114                                 $data = api_rss_extra($a, $data, $user_info);
1115                 }
1116
1117                 return  api_apply_template("timeline", $type, $data);
1118         }
1119
1120         api_register_func('api/statuses/user_timeline','api_statuses_user_timeline', true);
1121
1122
1123         function api_favorites(&$a, $type){
1124                 if (local_user()===false) return false;
1125
1126                 $user_info = api_get_user($a);
1127                 // in friendica starred item are private
1128                 // return favorites only for self
1129                 logger('api_favorites: self:' . $user_info['self']);
1130
1131                 if ($user_info['self']==0) {
1132                         $ret = array();
1133                 } else {
1134
1135
1136                         // params
1137                         $count = (x($_GET,'count')?$_GET['count']:20);
1138                         $page = (x($_REQUEST,'page')?$_REQUEST['page']-1:0);
1139                         if ($page<0) $page=0;
1140
1141                         $start = $page*$count;
1142
1143                         $r = q("SELECT `item`.*, `item`.`id` AS `item_id`,
1144                                 `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`,
1145                                 `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
1146                                 `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
1147                                 FROM `item`, `contact`
1148                                 WHERE `item`.`uid` = %d
1149                                 AND `item`.`visible` = 1 and `item`.`moderated` = 0 AND `item`.`deleted` = 0
1150                                 AND `item`.`starred` = 1
1151                                 AND `contact`.`id` = `item`.`contact-id`
1152                                 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
1153                                 $sql_extra
1154                                 ORDER BY `item`.`received` DESC LIMIT %d ,%d ",
1155                                 intval($user_info['uid']),
1156                                 intval($start), intval($count)
1157                         );
1158
1159                         $ret = api_format_items($r,$user_info);
1160
1161                 }
1162
1163                 $data = array('$statuses' => $ret);
1164                 switch($type){
1165                         case "atom":
1166                         case "rss":
1167                                 $data = api_rss_extra($a, $data, $user_info);
1168                 }
1169
1170                 return  api_apply_template("timeline", $type, $data);
1171         }
1172
1173         api_register_func('api/favorites','api_favorites', true);
1174
1175         function api_format_as($a, $ret, $user_info) {
1176
1177                 $as = array();
1178                 $as['title'] = $a->config['sitename']." Public Timeline";
1179                 $items = array();
1180                 foreach ($ret as $item) {
1181                         $singleitem["actor"]["displayName"] = $item["user"]["name"];
1182                         $singleitem["actor"]["id"] = $item["user"]["contact_url"];
1183                         $avatar[0]["url"] = $item["user"]["profile_image_url"];
1184                         $avatar[0]["rel"] = "avatar";
1185                         $avatar[0]["type"] = "";
1186                         $avatar[0]["width"] = 96;
1187                         $avatar[0]["height"] = 96;
1188                         $avatar[1]["url"] = $item["user"]["profile_image_url"];
1189                         $avatar[1]["rel"] = "avatar";
1190                         $avatar[1]["type"] = "";
1191                         $avatar[1]["width"] = 48;
1192                         $avatar[1]["height"] = 48;
1193                         $avatar[2]["url"] = $item["user"]["profile_image_url"];
1194                         $avatar[2]["rel"] = "avatar";
1195                         $avatar[2]["type"] = "";
1196                         $avatar[2]["width"] = 24;
1197                         $avatar[2]["height"] = 24;
1198                         $singleitem["actor"]["avatarLinks"] = $avatar;
1199
1200                         $singleitem["actor"]["image"]["url"] = $item["user"]["profile_image_url"];
1201                         $singleitem["actor"]["image"]["rel"] = "avatar";
1202                         $singleitem["actor"]["image"]["type"] = "";
1203                         $singleitem["actor"]["image"]["width"] = 96;
1204                         $singleitem["actor"]["image"]["height"] = 96;
1205                         $singleitem["actor"]["type"] = "person";
1206                         $singleitem["actor"]["url"] = $item["person"]["contact_url"];
1207                         $singleitem["actor"]["statusnet:profile_info"]["local_id"] = $item["user"]["id"];
1208                         $singleitem["actor"]["statusnet:profile_info"]["following"] = $item["user"]["following"] ? "true" : "false";
1209                         $singleitem["actor"]["statusnet:profile_info"]["blocking"] = "false";
1210                         $singleitem["actor"]["contact"]["preferredUsername"] = $item["user"]["screen_name"];
1211                         $singleitem["actor"]["contact"]["displayName"] = $item["user"]["name"];
1212                         $singleitem["actor"]["contact"]["addresses"] = "";
1213
1214                         $singleitem["body"] = $item["text"];
1215                         $singleitem["object"]["displayName"] = $item["text"];
1216                         $singleitem["object"]["id"] = $item["url"];
1217                         $singleitem["object"]["type"] = "note";
1218                         $singleitem["object"]["url"] = $item["url"];
1219                         //$singleitem["context"] =;
1220                         $singleitem["postedTime"] = date("c", strtotime($item["published"]));
1221                         $singleitem["provider"]["objectType"] = "service";
1222                         $singleitem["provider"]["displayName"] = "Test";
1223                         $singleitem["provider"]["url"] = "http://test.tld";
1224                         $singleitem["title"] = $item["text"];
1225                         $singleitem["verb"] = "post";
1226                         $singleitem["statusnet:notice_info"]["local_id"] = $item["id"];
1227                                 $singleitem["statusnet:notice_info"]["source"] = $item["source"];
1228                                 $singleitem["statusnet:notice_info"]["favorite"] = "false";
1229                                 $singleitem["statusnet:notice_info"]["repeated"] = "false";
1230                                 //$singleitem["original"] = $item;
1231                                 $items[] = $singleitem;
1232                 }
1233                 $as['items'] = $items;
1234                 $as['link']['url'] = $a->get_baseurl()."/".$user_info["screen_name"]."/all";
1235                 $as['link']['rel'] = "alternate";
1236                 $as['link']['type'] = "text/html";
1237                 return($as);
1238         }
1239
1240         function api_format_items($r,$user_info) {
1241
1242                 //logger('api_format_items: ' . print_r($r,true));
1243
1244                 //logger('api_format_items: ' . print_r($user_info,true));
1245
1246                 $a = get_app();
1247                 $ret = Array();
1248
1249                 foreach($r as $item) {
1250                         localize_item($item);
1251                         $status_user = (($item['cid']==$user_info['id'])?$user_info: api_item_get_user($a,$item));
1252
1253                         if ($item['parent']!=$item['id']) {
1254                                 $r = q("select id from item where parent=%s and id<%s order by id desc limit 1",
1255                                         intval($item['parent']), intval($item['id']));
1256                                 if ($r)
1257                                         $in_reply_to_status_id = $r[0]['id'];
1258                                 else
1259                                         $in_reply_to_status_id = $item['parent'];
1260
1261                                 $r = q("select `item`.`contact-id`, `contact`.nick, `item`.`author-name` from item, contact
1262                                         where `contact`.`id` = `item`.`contact-id` and `item`.id=%d", intval($in_reply_to_status_id));
1263
1264                                 $in_reply_to_screen_name = $r[0]['author-name'];
1265                                 $in_reply_to_user_id = $r[0]['contact-id'];
1266
1267                         } else {
1268                                 $in_reply_to_screen_name = '';
1269                                 $in_reply_to_user_id = 0;
1270                                 $in_reply_to_status_id = 0;
1271                         }
1272
1273                         // Workaround for ostatus messages where the title is identically to the body
1274                         $statusbody = trim(html2plain(bbcode($item['body']), 0));
1275                         $statustitle = trim($item['title']);
1276
1277                         if (($statustitle != '') and (strpos($statusbody, $statustitle) !== false))
1278                                 $statustext = trim($statusbody);
1279                         else
1280                                 $statustext = trim($statustitle."\n\n".$statusbody);
1281
1282                         if (($item["network"] == NETWORK_FEED) and (strlen($statustext)> 1000))
1283                                 $statustext = substr($statustext, 0, 1000)."... \n".$item["plink"];
1284
1285                         $status = array(
1286                                 'text'          => $statustext,
1287                                 'truncated' => False,
1288                                 'created_at'=> api_date($item['created']),
1289                                 'in_reply_to_status_id' => $in_reply_to_status_id,
1290                                 'source'    => (($item['app']) ? $item['app'] : 'web'),
1291                                 'id'            => intval($item['id']),
1292                                 'in_reply_to_user_id' => $in_reply_to_user_id,
1293                                 'in_reply_to_screen_name' => $in_reply_to_screen_name,
1294                                 'geo' => '',
1295                                 'favorited' => $item['starred'] ? true : false,
1296                                 'user' =>  $status_user ,
1297                                 'statusnet_html'                => trim(bbcode($item['body'])),
1298                                 'statusnet_conversation_id'     => $item['parent'],
1299                         );
1300
1301                         // Seesmic doesn't like the following content
1302                         if ($_SERVER['HTTP_USER_AGENT'] != 'Seesmic') {
1303                                 $status2 = array(
1304                                         'updated'   => api_date($item['edited']),
1305                                         'published' => api_date($item['created']),
1306                                         'message_id' => $item['uri'],
1307                                         'url'           => ($item['plink']!=''?$item['plink']:$item['author-link']),
1308                                         'coordinates' => $item['coord'],
1309                                         'place' => $item['location'],
1310                                         'contributors' => '',
1311                                         'annotations'  => '',
1312                                         'entities'  => '',
1313                                         'objecttype' => (($item['object-type']) ? $item['object-type'] : ACTIVITY_OBJ_NOTE),
1314                                         'verb' => (($item['verb']) ? $item['verb'] : ACTIVITY_POST),
1315                                         'self' => $a->get_baseurl()."/api/statuses/show/".$item['id'].".".$type,
1316                                         'edit' => $a->get_baseurl()."/api/statuses/show/".$item['id'].".".$type,
1317                                 );
1318
1319                                 $status = array_merge($status, $status2);
1320                         }
1321
1322                         $ret[]=$status;
1323                 };
1324                 return $ret;
1325         }
1326
1327
1328         function api_account_rate_limit_status(&$a,$type) {
1329
1330                 $hash = array(
1331                           'reset_time_in_seconds' => strtotime('now + 1 hour'),
1332                           'remaining_hits' => (string) 150,
1333                           'hourly_limit' => (string) 150,
1334                           'reset_time' => datetime_convert('UTC','UTC','now + 1 hour',ATOM_TIME),
1335                 );
1336                 if ($type == "xml")
1337                         $hash['resettime_in_seconds'] = $hash['reset_time_in_seconds'];
1338
1339                 return api_apply_template('ratelimit', $type, array('$hash' => $hash));
1340
1341         }
1342         api_register_func('api/account/rate_limit_status','api_account_rate_limit_status',true);
1343
1344         function api_help_test(&$a,$type) {
1345
1346                 if ($type == 'xml')
1347                         $ok = "true";
1348                 else
1349                         $ok = "ok";
1350
1351                 return api_apply_template('test', $type, array('$ok' => $ok));
1352
1353         }
1354         api_register_func('api/help/test','api_help_test',true);
1355
1356         /**
1357          *  https://dev.twitter.com/docs/api/1/get/statuses/friends 
1358          *  This function is deprecated by Twitter
1359          *  returns: json, xml 
1360          **/
1361         function api_statuses_f(&$a, $type, $qtype) {
1362                 if (local_user()===false) return false;
1363                 $user_info = api_get_user($a);
1364                 
1365                 
1366                 // friends and followers only for self
1367                 if ($user_info['self']==0){
1368                         return false;
1369                 }
1370                 
1371                 if (x($_GET,'cursor') && $_GET['cursor']=='undefined'){
1372                         /* this is to stop Hotot to load friends multiple times
1373                         *  I'm not sure if I'm missing return something or
1374                         *  is a bug in hotot. Workaround, meantime
1375                         */
1376                         
1377                         /*$ret=Array();
1378                         return array('$users' => $ret);*/
1379                         return false;
1380                 }
1381                 
1382                 if($qtype == 'friends')
1383                         $sql_extra = sprintf(" AND ( `rel` = %d OR `rel` = %d ) ", intval(CONTACT_IS_SHARING), intval(CONTACT_IS_FRIEND));
1384                 if($qtype == 'followers')
1385                         $sql_extra = sprintf(" AND ( `rel` = %d OR `rel` = %d ) ", intval(CONTACT_IS_FOLLOWER), intval(CONTACT_IS_FRIEND));
1386  
1387                 $r = q("SELECT id FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 $sql_extra",
1388                         intval(local_user())
1389                 );
1390
1391                 $ret = array();
1392                 foreach($r as $cid){
1393                         $ret[] = api_get_user($a, $cid['id']);
1394                 }
1395
1396                 
1397                 return array('$users' => $ret);
1398
1399         }
1400         function api_statuses_friends(&$a, $type){
1401                 $data =  api_statuses_f($a,$type,"friends");
1402                 if ($data===false) return false;
1403                 return  api_apply_template("friends", $type, $data);
1404         }
1405         function api_statuses_followers(&$a, $type){
1406                 $data = api_statuses_f($a,$type,"followers");
1407                 if ($data===false) return false;
1408                 return  api_apply_template("friends", $type, $data);
1409         }
1410         api_register_func('api/statuses/friends','api_statuses_friends',true);
1411         api_register_func('api/statuses/followers','api_statuses_followers',true);
1412
1413
1414
1415
1416
1417
1418         function api_statusnet_config(&$a,$type) {
1419                 $name = $a->config['sitename'];
1420                 $server = $a->get_hostname();
1421                 $logo = $a->get_baseurl() . '/images/friendica-64.png';
1422                 $email = $a->config['admin_email'];
1423                 $closed = (($a->config['register_policy'] == REGISTER_CLOSED) ? 'true' : 'false');
1424                 $private = (($a->config['system']['block_public']) ? 'true' : 'false');
1425                 $textlimit = (string) (($a->config['max_import_size']) ? $a->config['max_import_size'] : 200000);
1426                 if($a->config['api_import_size'])
1427                         $texlimit = string($a->config['api_import_size']);
1428                 $ssl = (($a->config['system']['have_ssl']) ? 'true' : 'false');
1429                 $sslserver = (($ssl === 'true') ? str_replace('http:','https:',$a->get_baseurl()) : '');
1430
1431                 $config = array(
1432                         'site' => array('name' => $name,'server' => $server, 'theme' => 'default', 'path' => '',
1433                                 'logo' => $logo, 'fancy' => 'true', 'language' => 'en', 'email' => $email, 'broughtby' => '',
1434                                 'broughtbyurl' => '', 'timezone' => 'UTC', 'closed' => $closed, 'inviteonly' => 'false',
1435                                 'private' => $private, 'textlimit' => $textlimit, 'sslserver' => $sslserver, 'ssl' => $ssl,
1436                                 'shorturllength' => '30',
1437         'friendica' => array(
1438                              'FRIENDICA_PLATFORM' => FRIENDICA_PLATFORM,
1439                              'FRIENDICA_VERSION' => FRIENDICA_VERSION,
1440                              'DFRN_PROTOCOL_VERSION' => DFRN_PROTOCOL_VERSION,
1441                              'DB_UPDATE_VERSION' => DB_UPDATE_VERSION
1442                              )
1443                         ),
1444                 );  
1445
1446                 return api_apply_template('config', $type, array('$config' => $config));
1447
1448         }
1449         api_register_func('api/statusnet/config','api_statusnet_config',false);
1450
1451         function api_statusnet_version(&$a,$type) {
1452
1453                 // liar
1454
1455                 if($type === 'xml') {
1456                         header("Content-type: application/xml");
1457                         echo '<?xml version="1.0" encoding="UTF-8"?>' . "\r\n" . '<version>0.9.7</version>' . "\r\n";
1458                         killme();
1459                 }
1460                 elseif($type === 'json') {
1461                         header("Content-type: application/json");
1462                         echo '"0.9.7"';
1463                         killme();
1464                 }
1465         }
1466         api_register_func('api/statusnet/version','api_statusnet_version',false);
1467
1468
1469         function api_ff_ids(&$a,$type,$qtype) {
1470                 if(! local_user())
1471                         return false;
1472
1473                 if($qtype == 'friends')
1474                         $sql_extra = sprintf(" AND ( `rel` = %d OR `rel` = %d ) ", intval(CONTACT_IS_SHARING), intval(CONTACT_IS_FRIEND));
1475                 if($qtype == 'followers')
1476                         $sql_extra = sprintf(" AND ( `rel` = %d OR `rel` = %d ) ", intval(CONTACT_IS_FOLLOWER), intval(CONTACT_IS_FRIEND));
1477  
1478
1479                 $r = q("SELECT id FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 $sql_extra",
1480                         intval(local_user())
1481                 );
1482
1483                 if(is_array($r)) {
1484                         if($type === 'xml') {
1485                                 header("Content-type: application/xml");
1486                                 echo '<?xml version="1.0" encoding="UTF-8"?>' . "\r\n" . '<ids>' . "\r\n";
1487                                 foreach($r as $rr)
1488                                         echo '<id>' . $rr['id'] . '</id>' . "\r\n";
1489                                 echo '</ids>' . "\r\n";
1490                                 killme();
1491                         }
1492                         elseif($type === 'json') {
1493                                 $ret = array();
1494                                 header("Content-type: application/json");
1495                                 foreach($r as $rr) $ret[] = $rr['id'];
1496                                 echo json_encode($ret);
1497                                 killme();
1498                         }
1499                 }
1500         }
1501
1502         function api_friends_ids(&$a,$type) {
1503                 api_ff_ids($a,$type,'friends');
1504         }
1505         function api_followers_ids(&$a,$type) {
1506                 api_ff_ids($a,$type,'followers');
1507         }
1508         api_register_func('api/friends/ids','api_friends_ids',true);
1509         api_register_func('api/followers/ids','api_followers_ids',true);
1510
1511
1512         function api_direct_messages_new(&$a, $type) {
1513                 if (local_user()===false) return false;
1514                 
1515                 if (!x($_POST, "text") || !x($_POST,"screen_name")) return;
1516
1517                 $sender = api_get_user($a);
1518                 
1519                 $r = q("SELECT `id` FROM `contact` WHERE `uid`=%d AND `nick`='%s'",
1520                                 intval(local_user()),
1521                                 dbesc($_POST['screen_name']));
1522                 
1523                 require_once("include/message.php");
1524
1525                 $recipient = api_get_user($a, $r[0]['id']);                     
1526                 $replyto = '';
1527                 if (x($_REQUEST,'replyto')) {
1528                         $r = q('SELECT `uri` FROM `mail` WHERE `uid`=%d AND `id`=%d',
1529                                         intval(local_user()),
1530                                         intval($_REQUEST['replyto']));
1531                         $replyto = $r[0]['uri'];
1532                 }
1533
1534                 if (x($_REQUEST,'title')) {
1535                         $sub = $_REQUEST['title'];
1536                 }
1537                 else {
1538                         $sub = ((strlen($_POST['text'])>10)?substr($_POST['text'],0,10)."...":$_POST['text']);
1539                 }
1540                 $id = send_message($recipient['id'], $_POST['text'], $sub, $replyto);
1541
1542                 if ($id>-1) {
1543                         $r = q("SELECT * FROM `mail` WHERE id=%d", intval($id));
1544                         $item = $r[0];
1545                         $ret=Array(
1546                                         'id' => $item['id'],
1547                                         'created_at'=> api_date($item['created']),
1548                                         'sender_id'=> $sender['id'] ,
1549                                         'sender_screen_name'=> $sender['screen_name'],
1550                                         'sender'=> $sender,
1551                                         'recipient_id'=> $recipient['id'],
1552                                         'recipient_screen_name'=> $recipient['screen_name'],
1553                                         'recipient'=> $recipient,
1554                                         
1555                                         'text'=> $item['title']."\n".html2plain(bbcode($item['body']), 0) ,
1556                                         
1557                         );
1558                 
1559                 } else {
1560                         $ret = array("error"=>$id);     
1561                 }
1562                 
1563                 $data = Array('$messages'=>$ret);
1564                 
1565                 switch($type){
1566                         case "atom":
1567                         case "rss":
1568                                 $data = api_rss_extra($a, $data, $user_info);
1569                 }
1570                                 
1571                 return  api_apply_template("direct_messages", $type, $data);
1572                                 
1573         }
1574         api_register_func('api/direct_messages/new','api_direct_messages_new',true);
1575
1576     function api_direct_messages_box(&$a, $type, $box) {
1577                 if (local_user()===false) return false;
1578                 
1579                 $user_info = api_get_user($a);
1580                 
1581                 // params
1582                 $count = (x($_GET,'count')?$_GET['count']:20);
1583                 $page = (x($_REQUEST,'page')?$_REQUEST['page']-1:0);
1584                 if ($page<0) $page=0;
1585                 
1586                 $start = $page*$count;
1587                 
1588     $profile_url = $a->get_baseurl() . '/profile/' . $a->user['nickname'];
1589                 if ($box=="sentbox") {
1590                         $sql_extra = "`from-url`='".dbesc( $profile_url )."'";
1591                 } elseif ($box=="conversation") {
1592       $sql_extra = "`parent-uri`='".dbesc( $_GET["uri"] )  ."'";
1593                 } elseif ($box=="all") {
1594       $sql_extra = "true";
1595                 } elseif ($box=="inbox") {
1596                         $sql_extra = "`from-url`!='".dbesc( $profile_url )."'";
1597                 }
1598                 
1599                 $r = q("SELECT * FROM `mail` WHERE uid=%d AND $sql_extra ORDER BY created DESC LIMIT %d,%d",
1600                                 intval(local_user()),
1601                                 intval($start), intval($count)
1602                 );
1603                 
1604                 $ret = Array();
1605                 foreach($r as $item){
1606                         if ($box == "inbox" || $item['from-url'] != $profile_url){
1607                                         $recipient = $user_info;
1608                                         $sender = api_get_user($a,$item['contact-id']);
1609       } elseif ($box == "sentbox" || $item['from-url'] != $profile_url){
1610                                         $recipient = api_get_user($a,$item['contact-id']);
1611                                         $sender = $user_info;
1612                         }
1613                                 
1614                         $d=Array(
1615                                 'id' => $item['id'],
1616                                 'created_at'=> api_date($item['created']),
1617                                 'sender_id'=> $sender['id'] ,
1618                                 'sender_screen_name'=> $sender['screen_name'],
1619                                 'sender_profile_img'=> $item['from-photo'],
1620                                 'sender'=> $sender,
1621                                 'recipient_id'=> $recipient['id'],
1622                                 'recipient_screen_name'=> $recipient['screen_name'],
1623                                 'recipient'=> $recipient,
1624                         );
1625       //don't send title to regular StatusNET requests to avoid confusing these apps
1626                         if (isset($_GET["getText"])) {
1627         $d['title'] = $item['title'] ;
1628         if ($_GET["getText"] == "html") {
1629           $d['text'] = bbcode($item['body']);
1630         } elseif ($_GET["getText"] == "plain") {
1631           $d['text'] = html2plain(bbcode($item['body']), 0);
1632         }
1633       } else {
1634         $d['text'] = $item['title']."\n".html2plain(bbcode($item['body']), 0);
1635       }
1636       if (isset($_GET["getUserObjects"]) && $_GET["getUserObjects"] == "false") {
1637         unset($d['sender']); unset($d['recipient']);
1638       }
1639       $ret[]=$d;
1640                 }
1641                 
1642
1643                 $data = array('$messages' => $ret);
1644                 switch($type){
1645                         case "atom":
1646                         case "rss":
1647                                 $data = api_rss_extra($a, $data, $user_info);
1648                 }
1649                                 
1650                 return  api_apply_template("direct_messages", $type, $data);
1651                 
1652         }
1653
1654         function api_direct_messages_sentbox(&$a, $type){
1655                 return api_direct_messages_box($a, $type, "sentbox");
1656         }
1657         function api_direct_messages_inbox(&$a, $type){
1658                 return api_direct_messages_box($a, $type, "inbox");
1659         }
1660         function api_direct_messages_all(&$a, $type){
1661                 return api_direct_messages_box($a, $type, "all");
1662         }
1663         function api_direct_messages_conversation(&$a, $type){
1664                 return api_direct_messages_box($a, $type, "conversation");
1665         }
1666         api_register_func('api/direct_messages/conversation','api_direct_messages_conversation',true);
1667         api_register_func('api/direct_messages/all','api_direct_messages_all',true);
1668         api_register_func('api/direct_messages/sent','api_direct_messages_sentbox',true);
1669         api_register_func('api/direct_messages','api_direct_messages_inbox',true);
1670
1671
1672
1673         function api_oauth_request_token(&$a, $type){
1674                 try{
1675                         $oauth = new FKOAuth1();
1676                         $r = $oauth->fetch_request_token(OAuthRequest::from_request());
1677                 }catch(Exception $e){
1678                         echo "error=". OAuthUtil::urlencode_rfc3986($e->getMessage()); killme();
1679                 }
1680                 echo $r;
1681                 killme();       
1682         }
1683         function api_oauth_access_token(&$a, $type){
1684                 try{
1685                         $oauth = new FKOAuth1();
1686                         $r = $oauth->fetch_access_token(OAuthRequest::from_request());
1687                 }catch(Exception $e){
1688                         echo "error=". OAuthUtil::urlencode_rfc3986($e->getMessage()); killme();
1689                 }
1690                 echo $r;
1691                 killme();                       
1692         }
1693
1694         api_register_func('api/oauth/request_token', 'api_oauth_request_token', false);
1695         api_register_func('api/oauth/access_token', 'api_oauth_access_token', false);
1696
1697 /*
1698 Not implemented by now:
1699 favorites
1700 favorites/create
1701 favorites/destroy
1702 statuses/retweets_of_me
1703 friendships/create
1704 friendships/destroy
1705 friendships/exists
1706 friendships/show
1707 account/update_location
1708 account/update_profile_background_image
1709 account/update_profile_image
1710 blocks/create
1711 blocks/destroy
1712
1713 Not implemented in status.net:
1714 statuses/retweeted_to_me
1715 statuses/retweeted_by_me
1716 direct_messages/destroy
1717 account/end_session
1718 account/update_delivery_device
1719 notifications/follow
1720 notifications/leave
1721 blocks/exists
1722 blocks/blocking
1723 */