Ticket #2205: pass geo locations over Twitter bridge (will only be used if enabled on the Twitter side)
This commit is contained in:
parent
a21a172639
commit
efcdfabc12
|
@ -124,15 +124,36 @@ function broadcast_twitter($notice)
|
|||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Pull any extra information from a notice that we should transfer over
|
||||
* to Twitter beyond the notice text itself.
|
||||
*
|
||||
* @param Notice $notice
|
||||
* @return array of key-value pairs for Twitter update submission
|
||||
* @access private
|
||||
*/
|
||||
function twitter_update_params($notice)
|
||||
{
|
||||
$params = array();
|
||||
if ($notice->lat || $notice->lon) {
|
||||
$params['lat'] = $notice->lat;
|
||||
$params['long'] = $notice->lon;
|
||||
}
|
||||
return $params;
|
||||
}
|
||||
|
||||
|
||||
function broadcast_oauth($notice, $flink) {
|
||||
$user = $flink->getUser();
|
||||
$statustxt = format_status($notice);
|
||||
$params = twitter_update_params($notice);
|
||||
|
||||
$token = TwitterOAuthClient::unpackToken($flink->credentials);
|
||||
$client = new TwitterOAuthClient($token->key, $token->secret);
|
||||
$status = null;
|
||||
|
||||
try {
|
||||
$status = $client->statusesUpdate($statustxt);
|
||||
$status = $client->statusesUpdate($statustxt, $params);
|
||||
} catch (OAuthClientException $e) {
|
||||
return process_error($e, $flink, $notice);
|
||||
}
|
||||
|
@ -171,12 +192,13 @@ function broadcast_basicauth($notice, $flink)
|
|||
$user = $flink->getUser();
|
||||
|
||||
$statustxt = format_status($notice);
|
||||
$params = twitter_update_params($notice);
|
||||
|
||||
$client = new TwitterBasicAuthClient($flink);
|
||||
$status = null;
|
||||
|
||||
try {
|
||||
$status = $client->statusesUpdate($statustxt);
|
||||
$status = $client->statusesUpdate($statustxt, $params);
|
||||
} catch (BasicAuthException $e) {
|
||||
return process_error($e, $flink, $notice);
|
||||
}
|
||||
|
|
|
@ -76,18 +76,21 @@ class TwitterBasicAuthClient
|
|||
/**
|
||||
* Calls Twitter's /statuses/update API method
|
||||
*
|
||||
* @param string $status text of the status
|
||||
* @param int $in_reply_to_status_id optional id of the status it's
|
||||
* a reply to
|
||||
* @param string $status text of the status
|
||||
* @param mixed $params optional other parameters to pass to Twitter,
|
||||
* as defined. For back-compatibility, if an int
|
||||
* is passed we'll consider it a reply-to ID.
|
||||
*
|
||||
* @return mixed the status
|
||||
*/
|
||||
function statusesUpdate($status, $in_reply_to_status_id = null)
|
||||
{
|
||||
$url = 'https://twitter.com/statuses/update.json';
|
||||
$params = array('status' => $status,
|
||||
'source' => common_config('integration', 'source'),
|
||||
'in_reply_to_status_id' => $in_reply_to_status_id);
|
||||
if (is_numeric($params)) {
|
||||
$params = array('in_reply_to_status_id' => intval($params));
|
||||
}
|
||||
$params['status'] = $status;
|
||||
$params['source'] = common_config('integration', 'source');
|
||||
$response = $this->httpRequest($url, $params);
|
||||
$status = json_decode($response);
|
||||
return $status;
|
||||
|
|
|
@ -166,17 +166,22 @@ class TwitterOAuthClient extends OAuthClient
|
|||
/**
|
||||
* Calls Twitter's /statuses/update API method
|
||||
*
|
||||
* @param string $status text of the status
|
||||
* @param int $in_reply_to_status_id optional id of the status it's
|
||||
* a reply to
|
||||
* @param string $status text of the status
|
||||
* @param mixed $params optional other parameters to pass to Twitter,
|
||||
* as defined. For back-compatibility, if an int
|
||||
* is passed we'll consider it a reply-to ID.
|
||||
*
|
||||
* @return mixed the status
|
||||
*/
|
||||
function statusesUpdate($status, $in_reply_to_status_id = null)
|
||||
function statusesUpdate($status, $params=array())
|
||||
{
|
||||
$url = 'https://twitter.com/statuses/update.json';
|
||||
$params = array('status' => $status,
|
||||
'in_reply_to_status_id' => $in_reply_to_status_id);
|
||||
if (is_numeric($params)) {
|
||||
$params = array('in_reply_to_status_id' => intval($params));
|
||||
}
|
||||
$params['status'] = $status;
|
||||
// We don't have to pass 'source' as the oauth key is tied to an app.
|
||||
|
||||
$response = $this->oAuthPost($url, $params);
|
||||
$status = json_decode($response);
|
||||
return $status;
|
||||
|
|
Loading…
Reference in New Issue
Block a user