mirror of
https://github.com/friendica/friendica
synced 2024-11-10 09:02:53 +00:00
Merge pull request #1269 from fabrixxm/api/favorites
api: add support to star/unstar items
This commit is contained in:
commit
2c40d78940
1 changed files with 81 additions and 21 deletions
|
@ -197,6 +197,7 @@
|
|||
}
|
||||
|
||||
function api_error(&$a, $type, $error) {
|
||||
# TODO: https://dev.twitter.com/overview/api/response-codes
|
||||
$r = "<status><error>".$error."</error><request>".$a->query_string."</request></status>";
|
||||
switch($type){
|
||||
case "xml":
|
||||
|
@ -884,7 +885,7 @@
|
|||
'in_reply_to_user_id_str' => $in_reply_to_user_id_str,
|
||||
'in_reply_to_screen_name' => $in_reply_to_screen_name,
|
||||
'geo' => NULL,
|
||||
'favorited' => false,
|
||||
'favorited' => $lastwall['starred'] ? true : false,
|
||||
// attachments
|
||||
'user' => $user_info,
|
||||
'statusnet_html' => trim(bbcode($lastwall['body'], false, false)),
|
||||
|
@ -983,7 +984,7 @@
|
|||
'in_reply_to_user_id_str' => $in_reply_to_user_id_str,
|
||||
'in_reply_to_screen_name' => $in_reply_to_screen_name,
|
||||
'geo' => NULL,
|
||||
'favorited' => false,
|
||||
'favorited' => $lastwall['starred'] ? true : false,
|
||||
'statusnet_html' => trim(bbcode($lastwall['body'], false, false)),
|
||||
'statusnet_conversation_id' => $lastwall['parent'],
|
||||
);
|
||||
|
@ -1568,6 +1569,66 @@
|
|||
api_register_func('api/statuses/user_timeline','api_statuses_user_timeline', true);
|
||||
|
||||
|
||||
/**
|
||||
* Star/unstar an item
|
||||
* param: id : id of the item
|
||||
*
|
||||
* api v1 : https://web.archive.org/web/20131019055350/https://dev.twitter.com/docs/api/1/post/favorites/create/%3Aid
|
||||
*/
|
||||
function api_favorites_create_destroy(&$a, $type){
|
||||
if (api_user()===false) return false;
|
||||
|
||||
# for versioned api.
|
||||
# TODO: we need a better global soluton
|
||||
$action_argv_id=2;
|
||||
if ($a->argv[1]=="1.1") $action_argv_id=3;
|
||||
|
||||
if ($a->argc<=$action_argv_id) die(api_error($a, $type, t("Invalid request.")));
|
||||
$action = str_replace(".".$type,"",$a->argv[$action_argv_id]);
|
||||
if ($a->argc==$action_argv_id+2) {
|
||||
$itemid = intval($a->argv[$action_argv_id+1]);
|
||||
} else {
|
||||
$itemid = intval($_REQUEST['id']);
|
||||
}
|
||||
if ($action!="create" && $action!="destroy") die(api_error($a, $type, t("Invalid action. ".$action)));
|
||||
|
||||
$item = q("SELECT * FROM item WHERE id=%d AND uid=%d",
|
||||
$itemid, api_user());
|
||||
|
||||
if ($item===false || count($item)==0) die(api_error($a, $type, t("Invalid item.")));
|
||||
|
||||
switch($action){
|
||||
case "create":
|
||||
$r = q("UPDATE item SET starred=1 WHERE id=%d AND uid=%d",
|
||||
$itemid, api_user());
|
||||
$item[0]['starred']=1;
|
||||
break;
|
||||
case "destroy":
|
||||
$r = q("UPDATE item SET starred=0 WHERE id=%d AND uid=%d",
|
||||
$itemid, api_user());
|
||||
$item[0]['starred']=0;
|
||||
break;
|
||||
}
|
||||
|
||||
if ($r===false) die(api_error($a, $type, t("DB error")));
|
||||
|
||||
|
||||
$user_info = api_get_user($a);
|
||||
$ret = api_format_items($item,$user_info)[0];
|
||||
|
||||
$data = array('$status' => $ret);
|
||||
switch($type){
|
||||
case "atom":
|
||||
case "rss":
|
||||
$data = api_rss_extra($a, $data, $user_info);
|
||||
}
|
||||
|
||||
return api_apply_template("status", $type, $data);
|
||||
}
|
||||
|
||||
api_register_func('api/favorites/create', 'api_favorites_create_destroy', true);
|
||||
api_register_func('api/favorites/destroy', 'api_favorites_create_destroy', true);
|
||||
|
||||
function api_favorites(&$a, $type){
|
||||
global $called_api;
|
||||
|
||||
|
@ -1603,7 +1664,7 @@
|
|||
`contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
|
||||
`contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
|
||||
FROM `item`, `contact`
|
||||
WHERE `item`.`uid` = %d AND `verb` = '%s'
|
||||
WHERE `item`.`uid` = %d
|
||||
AND `item`.`visible` = 1 and `item`.`moderated` = 0 AND `item`.`deleted` = 0
|
||||
AND `item`.`starred` = 1
|
||||
AND `contact`.`id` = `item`.`contact-id`
|
||||
|
@ -1612,7 +1673,6 @@
|
|||
AND `item`.`id`>%d
|
||||
ORDER BY `item`.`id` DESC LIMIT %d ,%d ",
|
||||
intval(api_user()),
|
||||
dbesc(ACTIVITY_POST),
|
||||
intval($since_id),
|
||||
intval($start), intval($count)
|
||||
);
|
||||
|
@ -1633,6 +1693,9 @@
|
|||
|
||||
api_register_func('api/favorites','api_favorites', true);
|
||||
|
||||
|
||||
|
||||
|
||||
function api_format_as($a, $ret, $user_info) {
|
||||
|
||||
$as = array();
|
||||
|
@ -2697,9 +2760,6 @@ function api_best_nickname(&$contacts) {
|
|||
|
||||
/*
|
||||
Not implemented by now:
|
||||
favorites
|
||||
favorites/create
|
||||
favorites/destroy
|
||||
statuses/retweets_of_me
|
||||
friendships/create
|
||||
friendships/destroy
|
||||
|
|
Loading…
Reference in a new issue