forked from friendica/friendica-addons
pumpio: Doing likes
twitter: queueing of messages
This commit is contained in:
parent
c8825148de
commit
fa796a4f2c
|
@ -338,6 +338,19 @@ function pumpio_post_local(&$a,&$b) {
|
||||||
|
|
||||||
|
|
||||||
function pumpio_send(&$a,&$b) {
|
function pumpio_send(&$a,&$b) {
|
||||||
|
logger("pumpio_send: parameter ".print_r($b, true));
|
||||||
|
|
||||||
|
if($b['verb'] == ACTIVITY_LIKE) {
|
||||||
|
if ($b['deleted'])
|
||||||
|
pumpio_like($a, $b["uid"], $b["thr-parent"], "unlike");
|
||||||
|
else
|
||||||
|
pumpio_like($a, $b["uid"], $b["thr-parent"], "like");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if($b['verb'] == ACTIVITY_DISLIKE)
|
||||||
|
return;
|
||||||
|
|
||||||
if($b['deleted'] || ($b['created'] !== $b['edited']))
|
if($b['deleted'] || ($b['created'] !== $b['edited']))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
@ -368,6 +381,7 @@ function pumpio_send(&$a,&$b) {
|
||||||
if($b['app'] == "pump.io")
|
if($b['app'] == "pump.io")
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
||||||
$oauth_token = get_pconfig($b['uid'], "pumpio", "oauth_token");
|
$oauth_token = get_pconfig($b['uid'], "pumpio", "oauth_token");
|
||||||
$oauth_token_secret = get_pconfig($b['uid'], "pumpio", "oauth_token_secret");
|
$oauth_token_secret = get_pconfig($b['uid'], "pumpio", "oauth_token_secret");
|
||||||
$consumer_key = get_pconfig($b['uid'], "pumpio","consumer_key");
|
$consumer_key = get_pconfig($b['uid'], "pumpio","consumer_key");
|
||||||
|
@ -446,7 +460,7 @@ function pumpio_send(&$a,&$b) {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
logger('pumpio_send '.$username.': general error: ' . print_r($user,true));
|
logger('pumpio_send '.$username.': '.$url.' general error: ' . print_r($user,true));
|
||||||
|
|
||||||
$r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `self`", $b['uid']);
|
$r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `self`", $b['uid']);
|
||||||
if (count($r))
|
if (count($r))
|
||||||
|
@ -461,6 +475,70 @@ function pumpio_send(&$a,&$b) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function pumpio_like($a, $uid, $uri, $action) {
|
||||||
|
$ckey = get_pconfig($uid, 'pumpio', 'consumer_key');
|
||||||
|
$csecret = get_pconfig($uid, 'pumpio', 'consumer_secret');
|
||||||
|
$otoken = get_pconfig($uid, 'pumpio', 'oauth_token');
|
||||||
|
$osecret = get_pconfig($uid, 'pumpio', 'oauth_token_secret');
|
||||||
|
$hostname = get_pconfig($uid, 'pumpio','host');
|
||||||
|
$username = get_pconfig($uid, "pumpio", "user");
|
||||||
|
|
||||||
|
$r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
|
||||||
|
dbesc($uri),
|
||||||
|
intval($uid)
|
||||||
|
);
|
||||||
|
|
||||||
|
if (!count($r))
|
||||||
|
return;
|
||||||
|
|
||||||
|
$orig_post = $r[0];
|
||||||
|
|
||||||
|
if ($orig_post["extid"])
|
||||||
|
$uri = $orig_post["extid"];
|
||||||
|
else
|
||||||
|
$uri = $orig_post["uri"];
|
||||||
|
|
||||||
|
if (strstr($uri, "/api/comment/"))
|
||||||
|
$objectType = "comment";
|
||||||
|
elseif (strstr($uri, "/api/note/"))
|
||||||
|
$objectType = "note";
|
||||||
|
elseif (strstr($uri, "/api/image/"))
|
||||||
|
$objectType = "image";
|
||||||
|
|
||||||
|
$params["verb"] = $action;
|
||||||
|
$params["object"] = array('id' => $uri, "objectType" => $objectType);
|
||||||
|
|
||||||
|
$client = new oauth_client_class;
|
||||||
|
$client->oauth_version = '1.0a';
|
||||||
|
$client->authorization_header = true;
|
||||||
|
$client->url_parameters = false;
|
||||||
|
|
||||||
|
$client->client_id = $ckey;
|
||||||
|
$client->client_secret = $csecret;
|
||||||
|
$client->access_token = $otoken;
|
||||||
|
$client->access_token_secret = $osecret;
|
||||||
|
|
||||||
|
$url = 'https://'.$hostname.'/api/user/'.$username.'/feed';
|
||||||
|
|
||||||
|
$success = $client->CallAPI($url, 'POST', $params, array('FailOnAccessError'=>true, 'RequestContentType'=>'application/json'), $user);
|
||||||
|
|
||||||
|
if($success)
|
||||||
|
logger('pumpio_like '.$username.' '.$action.': success '.$uri);
|
||||||
|
else {
|
||||||
|
logger('pumpio_like '.$username.' '.$action.': general error: '.$uri.' '.print_r($user,true));
|
||||||
|
|
||||||
|
$r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `self`", $b['uid']);
|
||||||
|
if (count($r))
|
||||||
|
$a->contact = $r[0]["id"];
|
||||||
|
|
||||||
|
$s = serialize(array('url' => $url, 'item' => $orig_post["id"], 'post' => $params));
|
||||||
|
require_once('include/queue_fn.php');
|
||||||
|
add_to_queue($a->contact,NETWORK_PUMPIO,$s);
|
||||||
|
notice(t('Pump.io like failed. Queued for retry.').EOL);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
function pumpio_cron($a,$b) {
|
function pumpio_cron($a,$b) {
|
||||||
$last = get_config('pumpio','last_poll');
|
$last = get_config('pumpio','last_poll');
|
||||||
|
|
||||||
|
@ -607,6 +685,9 @@ function pumpio_fetchtimeline($a, $uid) {
|
||||||
set_pconfig($uid,'pumpio','lastdate', $lastdate);
|
set_pconfig($uid,'pumpio','lastdate', $lastdate);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function pumpio_dounlike(&$a, $uid, $self, $post) {
|
||||||
|
}
|
||||||
|
|
||||||
function pumpio_dolike(&$a, $uid, $self, $post) {
|
function pumpio_dolike(&$a, $uid, $self, $post) {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -832,11 +913,16 @@ function pumpio_dodelete(&$a, $client, $uid, $self, $post) {
|
||||||
function pumpio_dopost(&$a, $client, $uid, $self, $post) {
|
function pumpio_dopost(&$a, $client, $uid, $self, $post) {
|
||||||
require_once('include/items.php');
|
require_once('include/items.php');
|
||||||
|
|
||||||
if ($post->verb == "like") {
|
if (($post->verb == "like") OR ($post->verb == "favorite")) {
|
||||||
pumpio_dolike(&$a, $uid, $self, $post);
|
pumpio_dolike(&$a, $uid, $self, $post);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (($post->verb == "unlike") OR ($post->verb == "unfavorite")) {
|
||||||
|
pumpio_dounlike(&$a, $uid, $self, $post);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if ($post->verb == "delete") {
|
if ($post->verb == "delete") {
|
||||||
pumpio_dodelete(&$a, $uid, $self, $post);
|
pumpio_dodelete(&$a, $uid, $self, $post);
|
||||||
return;
|
return;
|
||||||
|
@ -1073,6 +1159,25 @@ function pumpio_fetchinbox($a, $uid) {
|
||||||
}
|
}
|
||||||
|
|
||||||
set_pconfig($uid,'pumpio','last_id', $last_id);
|
set_pconfig($uid,'pumpio','last_id', $last_id);
|
||||||
|
|
||||||
|
// Fetching the minor events
|
||||||
|
$last_minor_id = get_pconfig($uid,'pumpio','last_minor_id');
|
||||||
|
|
||||||
|
$url = 'https://'.$hostname.'/api/user/'.$username.'/inbox/minor';
|
||||||
|
|
||||||
|
if ($last_minor_id != "")
|
||||||
|
$url .= '?since='.urlencode($last_minor_id);
|
||||||
|
|
||||||
|
$success = $client->CallAPI($url, 'GET', array(), array('FailOnAccessError'=>true), $user);
|
||||||
|
$posts = array_reverse($user->items);
|
||||||
|
|
||||||
|
if (count($posts))
|
||||||
|
foreach ($posts as $post) {
|
||||||
|
$last_minor_id = $post->id;
|
||||||
|
pumpio_dopost(&$a, $client, $uid, $self, $post);
|
||||||
|
}
|
||||||
|
|
||||||
|
set_pconfig($uid,'pumpio','last_minor_id', $last_minor_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
function pumpio_getallusers($a, $uid) {
|
function pumpio_getallusers($a, $uid) {
|
||||||
|
@ -1121,7 +1226,7 @@ function pumpio_queue_hook(&$a,&$b) {
|
||||||
if($x['network'] !== NETWORK_PUMPIO)
|
if($x['network'] !== NETWORK_PUMPIO)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
logger('pumpio_queue: run '.print_r($x, true));
|
logger('pumpio_queue: run');
|
||||||
|
|
||||||
$r = q("SELECT `user`.* FROM `user` LEFT JOIN `contact` on `contact`.`uid` = `user`.`uid`
|
$r = q("SELECT `user`.* FROM `user` LEFT JOIN `contact` on `contact`.`uid` = `user`.`uid`
|
||||||
WHERE `contact`.`self` = 1 AND `contact`.`id` = %d LIMIT 1",
|
WHERE `contact`.`self` = 1 AND `contact`.`id` = %d LIMIT 1",
|
||||||
|
@ -1173,7 +1278,7 @@ function pumpio_queue_hook(&$a,&$b) {
|
||||||
}
|
}
|
||||||
remove_queue_item($x['id']);
|
remove_queue_item($x['id']);
|
||||||
} else
|
} else
|
||||||
logger('pumpio_queue: send '.$username.': general error: ' . print_r($user,true));
|
logger('pumpio_queue: send '.$username.': '.$url.' general error: ' . print_r($user,true));
|
||||||
} else
|
} else
|
||||||
logger("pumpio_queue: Error getting tokens for user ".$user['uid']);
|
logger("pumpio_queue: Error getting tokens for user ".$user['uid']);
|
||||||
|
|
||||||
|
@ -1186,15 +1291,15 @@ function pumpio_queue_hook(&$a,&$b) {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
To-Do:
|
To-Do:
|
||||||
- doing likes
|
- double likes?
|
||||||
- importing unlike
|
- importing unlike
|
||||||
|
|
||||||
Work:
|
Could be hard to do:
|
||||||
|
- Threads completion
|
||||||
- edit own posts
|
- edit own posts
|
||||||
- delete own posts
|
- delete own posts
|
||||||
|
|
||||||
Problem:
|
Problem:
|
||||||
- Threads completion
|
|
||||||
- refresh after post
|
- refresh after post
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -70,6 +70,7 @@ function twitter_install() {
|
||||||
register_hook('notifier_normal', 'addon/twitter/twitter.php', 'twitter_post_hook');
|
register_hook('notifier_normal', 'addon/twitter/twitter.php', 'twitter_post_hook');
|
||||||
register_hook('jot_networks', 'addon/twitter/twitter.php', 'twitter_jot_nets');
|
register_hook('jot_networks', 'addon/twitter/twitter.php', 'twitter_jot_nets');
|
||||||
register_hook('cron', 'addon/twitter/twitter.php', 'twitter_cron');
|
register_hook('cron', 'addon/twitter/twitter.php', 'twitter_cron');
|
||||||
|
register_hook('queue_predeliver', 'addon/twitter/twitter.php', 'twitter_queue_hook');
|
||||||
logger("installed twitter");
|
logger("installed twitter");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -81,6 +82,7 @@ function twitter_uninstall() {
|
||||||
unregister_hook('notifier_normal', 'addon/twitter/twitter.php', 'twitter_post_hook');
|
unregister_hook('notifier_normal', 'addon/twitter/twitter.php', 'twitter_post_hook');
|
||||||
unregister_hook('jot_networks', 'addon/twitter/twitter.php', 'twitter_jot_nets');
|
unregister_hook('jot_networks', 'addon/twitter/twitter.php', 'twitter_jot_nets');
|
||||||
unregister_hook('cron', 'addon/twitter/twitter.php', 'twitter_cron');
|
unregister_hook('cron', 'addon/twitter/twitter.php', 'twitter_cron');
|
||||||
|
unregister_hook('queue_predeliver', 'addon/twitter/twitter.php', 'twitter_queue_hook');
|
||||||
|
|
||||||
// old setting - remove only
|
// old setting - remove only
|
||||||
unregister_hook('post_local_end', 'addon/twitter/twitter.php', 'twitter_post_hook');
|
unregister_hook('post_local_end', 'addon/twitter/twitter.php', 'twitter_post_hook');
|
||||||
|
@ -667,7 +669,8 @@ function twitter_post_hook(&$a,&$b) {
|
||||||
|
|
||||||
logger('twitter_post_with_media send, result: ' . print_r($result, true), LOGGER_DEBUG);
|
logger('twitter_post_with_media send, result: ' . print_r($result, true), LOGGER_DEBUG);
|
||||||
if ($result->errors OR $result->error) {
|
if ($result->errors OR $result->error) {
|
||||||
logger('Send to Twitter failed: "' . $result->errors . '"');
|
logger('Send to Twitter failed: "' . print_r($result->errors, true) . '"');
|
||||||
|
|
||||||
// Workaround: Remove the picture link so that the post can be reposted without it
|
// Workaround: Remove the picture link so that the post can be reposted without it
|
||||||
$msg .= " ".$image;
|
$msg .= " ".$image;
|
||||||
$image = "";
|
$image = "";
|
||||||
|
@ -675,10 +678,21 @@ function twitter_post_hook(&$a,&$b) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if(strlen($msg) and ($image == "")) {
|
if(strlen($msg) and ($image == "")) {
|
||||||
$result = $tweet->post('statuses/update', array('status' => $msg));
|
$url = 'statuses/update';
|
||||||
|
$post = array('status' => $msg);
|
||||||
|
$result = $tweet->post($url, $post);
|
||||||
logger('twitter_post send, result: ' . print_r($result, true), LOGGER_DEBUG);
|
logger('twitter_post send, result: ' . print_r($result, true), LOGGER_DEBUG);
|
||||||
if ($result->errors OR $result->error) {
|
if ($result->errors) {
|
||||||
logger('Send to Twitter failed: "' . $result->errors . '"');
|
logger('Send to Twitter failed: "' . print_r($result->errors, true) . '"');
|
||||||
|
|
||||||
|
$r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `self`", $b['uid']);
|
||||||
|
if (count($r))
|
||||||
|
$a->contact = $r[0]["id"];
|
||||||
|
|
||||||
|
$s = serialize(array('url' => $url, 'item' => $b['id'], 'post' => $post));
|
||||||
|
require_once('include/queue_fn.php');
|
||||||
|
add_to_queue($a->contact,NETWORK_TWITTER,$s);
|
||||||
|
notice(t('Twitter post failed. Queued for retry.').EOL);
|
||||||
|
|
||||||
// experimental
|
// experimental
|
||||||
// Sometims Twitter seems to think that posts are too long - although they aren't
|
// Sometims Twitter seems to think that posts are too long - although they aren't
|
||||||
|
@ -686,13 +700,13 @@ function twitter_post_hook(&$a,&$b) {
|
||||||
// Shorten the urls
|
// Shorten the urls
|
||||||
// Test 2:
|
// Test 2:
|
||||||
// Reduce the maximum length
|
// Reduce the maximum length
|
||||||
if ($intelligent_shortening) {
|
//if ($intelligent_shortening) {
|
||||||
$msgarr = twitter_shortenmsg($b, true);
|
// $msgarr = twitter_shortenmsg($b, true);
|
||||||
$msg = $msgarr["msg"];
|
// $msg = $msgarr["msg"];
|
||||||
$image = $msgarr["image"];
|
// $image = $msgarr["image"];
|
||||||
$result = $tweet->post('statuses/update', array('status' => $msg));
|
// $result = $tweet->post('statuses/update', array('status' => $msg));
|
||||||
logger('twitter_post send, result: ' . print_r($result, true), LOGGER_DEBUG);
|
// logger('twitter_post send, result: ' . print_r($result, true), LOGGER_DEBUG);
|
||||||
}
|
//}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -824,3 +838,68 @@ function twitter_fetchtimeline($a, $uid) {
|
||||||
}
|
}
|
||||||
set_pconfig($uid, 'twitter', 'lastid', $lastid);
|
set_pconfig($uid, 'twitter', 'lastid', $lastid);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function twitter_queue_hook(&$a,&$b) {
|
||||||
|
|
||||||
|
$qi = q("SELECT * FROM `queue` WHERE `network` = '%s'",
|
||||||
|
dbesc(NETWORK_TWITTER)
|
||||||
|
);
|
||||||
|
if(! count($qi))
|
||||||
|
return;
|
||||||
|
|
||||||
|
require_once('include/queue_fn.php');
|
||||||
|
|
||||||
|
foreach($qi as $x) {
|
||||||
|
if($x['network'] !== NETWORK_TWITTER)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
logger('twitter_queue: run');
|
||||||
|
|
||||||
|
$r = q("SELECT `user`.* FROM `user` LEFT JOIN `contact` on `contact`.`uid` = `user`.`uid`
|
||||||
|
WHERE `contact`.`self` = 1 AND `contact`.`id` = %d LIMIT 1",
|
||||||
|
intval($x['cid'])
|
||||||
|
);
|
||||||
|
if(! count($r))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
$user = $r[0];
|
||||||
|
|
||||||
|
$ckey = get_config('twitter', 'consumerkey');
|
||||||
|
$csecret = get_config('twitter', 'consumersecret');
|
||||||
|
$otoken = get_pconfig($user['uid'], 'twitter', 'oauthtoken');
|
||||||
|
$osecret = get_pconfig($user['uid'], 'twitter', 'oauthsecret');
|
||||||
|
|
||||||
|
$success = false;
|
||||||
|
|
||||||
|
if ($ckey AND $csecret AND $otoken AND $osecret) {
|
||||||
|
|
||||||
|
logger('twitter_queue: able to post');
|
||||||
|
|
||||||
|
$z = unserialize($x['content']);
|
||||||
|
|
||||||
|
require_once("addon/twitter/codebird.php");
|
||||||
|
|
||||||
|
$cb = \Codebird\Codebird::getInstance();
|
||||||
|
$cb->setConsumerKey($ckey, $csecret);
|
||||||
|
$cb->setToken($otoken, $osecret);
|
||||||
|
|
||||||
|
if ($z['url'] == "statuses/update")
|
||||||
|
$result = $cb->statuses_update($z['post']);
|
||||||
|
|
||||||
|
logger('twitter_queue: post result: ' . print_r($result, true), LOGGER_DEBUG);
|
||||||
|
|
||||||
|
if ($result->errors)
|
||||||
|
logger('twitter_queue: Send to Twitter failed: "' . print_r($result->errors, true) . '"');
|
||||||
|
else {
|
||||||
|
$success = true;
|
||||||
|
remove_queue_item($x['id']);
|
||||||
|
}
|
||||||
|
} else
|
||||||
|
logger("twitter_queue: Error getting tokens for user ".$user['uid']);
|
||||||
|
|
||||||
|
if (!$success) {
|
||||||
|
logger('twitter_queue: delayed');
|
||||||
|
update_queue_time($x['id']);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue