2009-04-22 03:09:27 +01:00
|
|
|
#!/usr/bin/env php
|
|
|
|
<?php
|
2009-06-17 20:31:35 +01:00
|
|
|
/**
|
2009-08-25 23:14:12 +01:00
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
2010-02-04 01:53:08 +00:00
|
|
|
* Copyright (C) 2008-2010, StatusNet, Inc.
|
2009-04-22 03:09:27 +01:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2009-08-26 01:59:06 +01:00
|
|
|
define('INSTALLDIR', realpath(dirname(__FILE__) . '/../../..'));
|
2009-04-22 03:09:27 +01:00
|
|
|
|
2009-05-05 20:28:57 +01:00
|
|
|
// Tune number of processes and how often to poll Twitter
|
2009-05-07 08:25:15 +01:00
|
|
|
// XXX: Should these things be in config.php?
|
|
|
|
define('MAXCHILDREN', 2);
|
|
|
|
define('POLL_INTERVAL', 60); // in seconds
|
2009-05-05 20:28:57 +01:00
|
|
|
|
2009-07-18 02:36:13 +01:00
|
|
|
$shortoptions = 'di::';
|
|
|
|
$longoptions = array('id::', 'debug');
|
2009-06-28 21:16:44 +01:00
|
|
|
|
2009-06-23 00:39:21 +01:00
|
|
|
$helptext = <<<END_OF_TRIM_HELP
|
|
|
|
Batch script for retrieving Twitter messages from foreign service.
|
2009-06-20 22:58:47 +01:00
|
|
|
|
2009-07-18 02:36:13 +01:00
|
|
|
-i --id Identity (default 'generic')
|
|
|
|
-d --debug Debug (lots of log output)
|
2009-07-18 02:09:03 +01:00
|
|
|
|
2009-06-23 00:39:21 +01:00
|
|
|
END_OF_TRIM_HELP;
|
2009-06-20 22:58:47 +01:00
|
|
|
|
2009-08-26 01:59:06 +01:00
|
|
|
require_once INSTALLDIR . '/scripts/commandline.inc';
|
2009-10-14 05:50:16 +01:00
|
|
|
require_once INSTALLDIR . '/lib/common.php';
|
2009-06-17 20:31:35 +01:00
|
|
|
require_once INSTALLDIR . '/lib/daemon.php';
|
2009-08-26 01:59:06 +01:00
|
|
|
require_once INSTALLDIR . '/plugins/TwitterBridge/twitter.php';
|
2009-10-14 05:50:16 +01:00
|
|
|
require_once INSTALLDIR . '/plugins/TwitterBridge/twitterbasicauthclient.php';
|
|
|
|
require_once INSTALLDIR . '/plugins/TwitterBridge/twitteroauthclient.php';
|
2009-06-17 20:31:35 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Fetcher for statuses from Twitter
|
|
|
|
*
|
|
|
|
* Fetches statuses from Twitter and inserts them as notices in local
|
|
|
|
* system.
|
|
|
|
*
|
|
|
|
* @category Twitter
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Zach Copley <zach@status.net>
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2009-06-17 20:31:35 +01:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2009-06-17 20:31:35 +01:00
|
|
|
*/
|
2009-04-22 03:09:27 +01:00
|
|
|
|
2009-06-19 00:51:06 +01:00
|
|
|
// NOTE: an Avatar path MUST be set in config.php for this
|
2009-08-25 23:53:24 +01:00
|
|
|
// script to work: e.g.: $config['avatar']['path'] = '/statusnet/avatar';
|
2009-06-19 00:51:06 +01:00
|
|
|
|
2009-08-06 23:52:58 +01:00
|
|
|
class TwitterStatusFetcher extends ParallelizingDaemon
|
2009-05-07 08:25:15 +01:00
|
|
|
{
|
2009-08-06 23:52:58 +01:00
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* @param string $id the name/id of this daemon
|
|
|
|
* @param int $interval sleep this long before doing everything again
|
|
|
|
* @param int $max_children maximum number of child processes at a time
|
|
|
|
* @param boolean $debug debug output flag
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
function __construct($id = null, $interval = 60,
|
|
|
|
$max_children = 2, $debug = null)
|
2009-07-18 02:09:03 +01:00
|
|
|
{
|
2009-08-06 23:52:58 +01:00
|
|
|
parent::__construct($id, $interval, $max_children, $debug);
|
2009-07-18 02:09:03 +01:00
|
|
|
}
|
|
|
|
|
2009-06-17 20:31:35 +01:00
|
|
|
/**
|
|
|
|
* Name of this daemon
|
|
|
|
*
|
|
|
|
* @return string Name of the daemon.
|
|
|
|
*/
|
2009-04-22 03:09:27 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
function name()
|
|
|
|
{
|
2009-06-28 21:16:44 +01:00
|
|
|
return ('twitterstatusfetcher.'.$this->_id);
|
2009-05-07 08:25:15 +01:00
|
|
|
}
|
2009-05-06 02:12:26 +01:00
|
|
|
|
2009-06-17 20:31:35 +01:00
|
|
|
/**
|
2009-08-06 23:52:58 +01:00
|
|
|
* Find all the Twitter foreign links for users who have requested
|
|
|
|
* importing of their friends' timelines
|
2009-06-17 20:31:35 +01:00
|
|
|
*
|
2009-08-06 23:52:58 +01:00
|
|
|
* @return array flinks an array of Foreign_link objects
|
2009-06-17 20:31:35 +01:00
|
|
|
*/
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2009-08-06 23:52:58 +01:00
|
|
|
function getObjects()
|
2009-06-17 20:31:35 +01:00
|
|
|
{
|
2009-08-05 01:16:12 +01:00
|
|
|
global $_DB_DATAOBJECT;
|
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
$flink = new Foreign_link();
|
2009-08-05 01:16:12 +01:00
|
|
|
$conn = &$flink->getDatabaseConnection();
|
2009-06-17 20:31:35 +01:00
|
|
|
|
2009-08-04 03:21:18 +01:00
|
|
|
$flink->service = TWITTER_SERVICE;
|
2009-05-07 08:25:15 +01:00
|
|
|
$flink->orderBy('last_noticesync');
|
2009-08-06 23:52:58 +01:00
|
|
|
$flink->find();
|
2009-05-05 20:28:57 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
$flinks = array();
|
2009-05-05 20:28:57 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
while ($flink->fetch()) {
|
2009-05-05 20:28:57 +01:00
|
|
|
|
2009-05-07 09:10:31 +01:00
|
|
|
if (($flink->noticesync & FOREIGN_NOTICE_RECV) ==
|
|
|
|
FOREIGN_NOTICE_RECV) {
|
2009-05-07 08:25:15 +01:00
|
|
|
$flinks[] = clone($flink);
|
2009-10-28 19:29:20 +00:00
|
|
|
common_log(LOG_INFO, "sync: foreign id $flink->foreign_id");
|
|
|
|
} else {
|
|
|
|
common_log(LOG_INFO, "nothing to sync");
|
2009-05-07 08:25:15 +01:00
|
|
|
}
|
|
|
|
}
|
2009-05-05 20:28:57 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
$flink->free();
|
|
|
|
unset($flink);
|
2009-05-05 20:28:57 +01:00
|
|
|
|
2009-08-05 01:16:12 +01:00
|
|
|
$conn->disconnect();
|
|
|
|
unset($_DB_DATAOBJECT['CONNECTIONS']);
|
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
return $flinks;
|
|
|
|
}
|
2009-05-05 20:28:57 +01:00
|
|
|
|
2009-08-06 23:52:58 +01:00
|
|
|
function childTask($flink) {
|
2009-06-17 20:31:35 +01:00
|
|
|
|
2009-08-06 23:52:58 +01:00
|
|
|
// Each child ps needs its own DB connection
|
|
|
|
|
|
|
|
// Note: DataObject::getDatabaseConnection() creates
|
2009-11-09 19:01:46 +00:00
|
|
|
// a new connection if there isn't one already
|
2009-08-06 23:52:58 +01:00
|
|
|
|
|
|
|
$conn = &$flink->getDatabaseConnection();
|
|
|
|
|
|
|
|
$this->getTimeline($flink);
|
|
|
|
|
|
|
|
$flink->last_friendsync = common_sql_now();
|
|
|
|
$flink->update();
|
|
|
|
|
|
|
|
$conn->disconnect();
|
|
|
|
|
2009-11-08 22:28:51 +00:00
|
|
|
// XXX: Couldn't find a less brutal way to blow
|
2009-08-06 23:52:58 +01:00
|
|
|
// away a cached connection
|
|
|
|
|
|
|
|
global $_DB_DATAOBJECT;
|
|
|
|
unset($_DB_DATAOBJECT['CONNECTIONS']);
|
2009-05-05 20:28:57 +01:00
|
|
|
}
|
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
function getTimeline($flink)
|
|
|
|
{
|
2009-08-28 08:02:27 +01:00
|
|
|
if (empty($flink)) {
|
2009-08-06 23:52:58 +01:00
|
|
|
common_log(LOG_WARNING, $this->name() .
|
2009-11-08 22:28:51 +00:00
|
|
|
" - Can't retrieve Foreign_link for foreign ID $fid");
|
2009-05-07 08:25:15 +01:00
|
|
|
return;
|
2009-04-22 03:09:27 +01:00
|
|
|
}
|
|
|
|
|
2009-08-06 23:52:58 +01:00
|
|
|
common_debug($this->name() . ' - Trying to get timeline for Twitter user ' .
|
|
|
|
$flink->foreign_id);
|
2009-04-22 03:09:27 +01:00
|
|
|
|
2009-05-07 09:10:31 +01:00
|
|
|
// XXX: Biggest remaining issue - How do we know at which status
|
|
|
|
// to start importing? How many statuses? Right now I'm going
|
|
|
|
// with the default last 20.
|
|
|
|
|
2009-08-28 08:02:27 +01:00
|
|
|
$client = null;
|
2009-08-10 08:00:59 +01:00
|
|
|
|
2009-08-28 08:02:27 +01:00
|
|
|
if (TwitterOAuthClient::isPackedToken($flink->credentials)) {
|
|
|
|
$token = TwitterOAuthClient::unpackToken($flink->credentials);
|
|
|
|
$client = new TwitterOAuthClient($token->key, $token->secret);
|
|
|
|
common_debug($this->name() . ' - Grabbing friends timeline with OAuth.');
|
|
|
|
} else {
|
|
|
|
$client = new TwitterBasicAuthClient($flink);
|
|
|
|
common_debug($this->name() . ' - Grabbing friends timeline with basic auth.');
|
|
|
|
}
|
2009-04-22 03:09:27 +01:00
|
|
|
|
2009-08-04 03:21:18 +01:00
|
|
|
$timeline = null;
|
2009-04-22 03:09:27 +01:00
|
|
|
|
2009-08-04 03:21:18 +01:00
|
|
|
try {
|
2009-08-10 07:05:43 +01:00
|
|
|
$timeline = $client->statusesFriendsTimeline();
|
2009-08-28 08:02:27 +01:00
|
|
|
} catch (Exception $e) {
|
2009-08-06 23:52:58 +01:00
|
|
|
common_log(LOG_WARNING, $this->name() .
|
2009-08-28 08:02:27 +01:00
|
|
|
' - Twitter client unable to get friends timeline for user ' .
|
2009-08-04 03:21:18 +01:00
|
|
|
$flink->user_id . ' - code: ' .
|
|
|
|
$e->getCode() . 'msg: ' . $e->getMessage());
|
|
|
|
}
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
if (empty($timeline)) {
|
2009-08-10 07:05:43 +01:00
|
|
|
common_log(LOG_WARNING, $this->name() . " - Empty timeline.");
|
2009-05-07 08:25:15 +01:00
|
|
|
return;
|
2009-04-24 22:27:31 +01:00
|
|
|
}
|
|
|
|
|
2009-05-20 23:08:08 +01:00
|
|
|
// Reverse to preserve order
|
2009-08-06 23:52:58 +01:00
|
|
|
|
2009-05-20 23:08:08 +01:00
|
|
|
foreach (array_reverse($timeline) as $status) {
|
2009-05-07 08:25:15 +01:00
|
|
|
|
2009-08-25 23:12:20 +01:00
|
|
|
// Hacktastic: filter out stuff coming from this StatusNet
|
2009-08-06 23:52:58 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
$source = mb_strtolower(common_config('integration', 'source'));
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
if (preg_match("/$source/", mb_strtolower($status->source))) {
|
2009-08-06 23:52:58 +01:00
|
|
|
common_debug($this->name() . ' - Skipping import of status ' .
|
|
|
|
$status->id . ' with source ' . $source);
|
2009-05-07 08:25:15 +01:00
|
|
|
continue;
|
|
|
|
}
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2009-12-04 20:17:42 +00:00
|
|
|
$notice = null;
|
|
|
|
|
|
|
|
$notice = $this->saveStatus($status, $flink);
|
|
|
|
|
2009-12-04 20:39:50 +00:00
|
|
|
if (!empty($notice)) {
|
|
|
|
common_broadcast_notice($notice);
|
|
|
|
}
|
2009-04-22 03:09:27 +01:00
|
|
|
}
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
// Okay, record the time we synced with Twitter for posterity
|
2009-08-06 23:52:58 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
$flink->last_noticesync = common_sql_now();
|
|
|
|
$flink->update();
|
2009-04-22 03:09:27 +01:00
|
|
|
}
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
function saveStatus($status, $flink)
|
|
|
|
{
|
|
|
|
$id = $this->ensureProfile($status->user);
|
2009-08-05 01:16:12 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
$profile = Profile::staticGet($id);
|
2009-05-05 20:28:57 +01:00
|
|
|
|
2009-08-04 03:21:18 +01:00
|
|
|
if (empty($profile)) {
|
2009-08-06 23:52:58 +01:00
|
|
|
common_log(LOG_ERR, $this->name() .
|
|
|
|
' - Problem saving notice. No associated Profile.');
|
2009-05-07 08:25:15 +01:00
|
|
|
return null;
|
2009-04-22 03:09:27 +01:00
|
|
|
}
|
|
|
|
|
2009-06-17 20:31:35 +01:00
|
|
|
// XXX: change of screen name?
|
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
$uri = 'http://twitter.com/' . $status->user->screen_name .
|
|
|
|
'/status/' . $status->id;
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
// check to see if we've already imported the status
|
2009-04-22 03:09:27 +01:00
|
|
|
|
2009-12-04 20:17:42 +00:00
|
|
|
$notice = Notice::staticGet('uri', $uri);
|
|
|
|
|
2009-08-04 03:21:18 +01:00
|
|
|
if (empty($notice)) {
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2009-12-04 20:17:42 +00:00
|
|
|
// XXX: transaction here?
|
|
|
|
|
2009-06-17 20:31:35 +01:00
|
|
|
$notice = new Notice();
|
|
|
|
|
|
|
|
$notice->profile_id = $id;
|
|
|
|
$notice->uri = $uri;
|
|
|
|
$notice->created = strftime('%Y-%m-%d %H:%M:%S',
|
|
|
|
strtotime($status->created_at));
|
|
|
|
$notice->content = common_shorten_links($status->text); // XXX
|
|
|
|
$notice->rendered = common_render_content($notice->content, $notice);
|
|
|
|
$notice->source = 'twitter';
|
2009-08-06 23:52:58 +01:00
|
|
|
$notice->reply_to = null; // XXX: lookup reply
|
2009-07-23 22:22:22 +01:00
|
|
|
$notice->is_local = Notice::GATEWAY;
|
2009-06-17 20:31:35 +01:00
|
|
|
|
|
|
|
if (Event::handle('StartNoticeSave', array(&$notice))) {
|
2010-02-04 01:53:08 +00:00
|
|
|
$notice->insert();
|
2009-06-17 20:31:35 +01:00
|
|
|
Event::handle('EndNoticeSave', array($notice));
|
2009-05-07 08:25:15 +01:00
|
|
|
}
|
2009-12-04 20:17:42 +00:00
|
|
|
|
2009-05-05 20:28:57 +01:00
|
|
|
}
|
2009-04-22 03:09:27 +01:00
|
|
|
|
2010-01-09 22:02:01 +00:00
|
|
|
Inbox::insertNotice($flink->user_id, $notice->id);
|
2009-12-04 20:17:42 +00:00
|
|
|
|
2010-02-04 01:53:08 +00:00
|
|
|
$notice->blowOnInsert();
|
2009-12-04 20:17:42 +00:00
|
|
|
|
|
|
|
return $notice;
|
2009-04-24 22:27:31 +01:00
|
|
|
}
|
2009-04-22 03:09:27 +01:00
|
|
|
|
2010-02-04 01:53:08 +00:00
|
|
|
/**
|
|
|
|
* Look up a Profile by profileurl field. Profile::staticGet() was
|
|
|
|
* not working consistently.
|
|
|
|
*
|
|
|
|
* @param string $url the profile url
|
|
|
|
*
|
|
|
|
* @return mixed the first profile with that url, or null
|
|
|
|
*/
|
|
|
|
|
|
|
|
function getProfileByUrl($nickname, $profileurl)
|
|
|
|
{
|
|
|
|
$profile = new Profile();
|
|
|
|
$profile->nickname = $nickname;
|
|
|
|
$profile->profileurl = $profileurl;
|
|
|
|
$profile->limit(1);
|
|
|
|
|
|
|
|
if ($profile->find()) {
|
|
|
|
$profile->fetch();
|
|
|
|
return $profile;
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
function ensureProfile($user)
|
|
|
|
{
|
|
|
|
// check to see if there's already a profile for this user
|
2009-08-06 23:52:58 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
$profileurl = 'http://twitter.com/' . $user->screen_name;
|
2010-02-04 01:53:08 +00:00
|
|
|
$profile = $this->getProfileByUrl($user->screen_name, $profileurl);
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2009-08-05 01:16:12 +01:00
|
|
|
if (!empty($profile)) {
|
2009-08-06 23:52:58 +01:00
|
|
|
common_debug($this->name() .
|
|
|
|
" - Profile for $profile->nickname found.");
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
// Check to see if the user's Avatar has changed
|
2009-05-07 09:10:31 +01:00
|
|
|
|
2009-08-06 23:52:58 +01:00
|
|
|
$this->checkAvatar($user, $profile);
|
2009-05-07 08:25:15 +01:00
|
|
|
return $profile->id;
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
} else {
|
2010-02-04 01:53:08 +00:00
|
|
|
|
2009-08-06 23:52:58 +01:00
|
|
|
common_debug($this->name() . ' - Adding profile and remote profile ' .
|
|
|
|
"for Twitter user: $profileurl.");
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
$profile = new Profile();
|
|
|
|
$profile->query("BEGIN");
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
$profile->nickname = $user->screen_name;
|
|
|
|
$profile->fullname = $user->name;
|
|
|
|
$profile->homepage = $user->url;
|
|
|
|
$profile->bio = $user->description;
|
|
|
|
$profile->location = $user->location;
|
|
|
|
$profile->profileurl = $profileurl;
|
|
|
|
$profile->created = common_sql_now();
|
2009-04-22 03:09:27 +01:00
|
|
|
|
2010-02-04 01:53:08 +00:00
|
|
|
try {
|
|
|
|
$id = $profile->insert();
|
|
|
|
} catch(Exception $e) {
|
|
|
|
common_log(LOG_WARNING, $this->name . ' Couldn\'t insert profile - ' . $e->getMessage());
|
|
|
|
}
|
2009-04-22 03:09:27 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
if (empty($id)) {
|
|
|
|
common_log_db_error($profile, 'INSERT', __FILE__);
|
|
|
|
$profile->query("ROLLBACK");
|
|
|
|
return false;
|
2009-04-22 03:09:27 +01:00
|
|
|
}
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
// check for remote profile
|
2009-08-06 23:52:58 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
$remote_pro = Remote_profile::staticGet('uri', $profileurl);
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2009-08-04 18:20:28 +01:00
|
|
|
if (empty($remote_pro)) {
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
$remote_pro = new Remote_profile();
|
2009-04-22 03:09:27 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
$remote_pro->id = $id;
|
|
|
|
$remote_pro->uri = $profileurl;
|
|
|
|
$remote_pro->created = common_sql_now();
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2010-02-04 01:53:08 +00:00
|
|
|
try {
|
|
|
|
$rid = $remote_pro->insert();
|
|
|
|
} catch (Exception $e) {
|
|
|
|
common_log(LOG_WARNING, $this->name() . ' Couldn\'t save remote profile - ' . $e->getMessage());
|
|
|
|
}
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
if (empty($rid)) {
|
|
|
|
common_log_db_error($profile, 'INSERT', __FILE__);
|
|
|
|
$profile->query("ROLLBACK");
|
|
|
|
return false;
|
2009-04-22 03:09:27 +01:00
|
|
|
}
|
2009-04-24 22:27:31 +01:00
|
|
|
}
|
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
$profile->query("COMMIT");
|
2009-04-22 03:09:27 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
$this->saveAvatars($user, $id);
|
2009-04-22 03:09:27 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
return $id;
|
|
|
|
}
|
2009-04-22 03:09:27 +01:00
|
|
|
}
|
|
|
|
|
2009-06-19 03:21:17 +01:00
|
|
|
function checkAvatar($twitter_user, $profile)
|
2009-05-07 08:25:15 +01:00
|
|
|
{
|
|
|
|
global $config;
|
2009-05-05 20:28:57 +01:00
|
|
|
|
2009-06-19 03:21:17 +01:00
|
|
|
$path_parts = pathinfo($twitter_user->profile_image_url);
|
|
|
|
|
|
|
|
$newname = 'Twitter_' . $twitter_user->id . '_' .
|
2009-05-07 08:25:15 +01:00
|
|
|
$path_parts['basename'];
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
$oldname = $profile->getAvatar(48)->filename;
|
2009-04-22 03:09:27 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
if ($newname != $oldname) {
|
2009-08-06 23:52:58 +01:00
|
|
|
common_debug($this->name() . ' - Avatar for Twitter user ' .
|
|
|
|
"$profile->nickname has changed.");
|
|
|
|
common_debug($this->name() . " - old: $oldname new: $newname");
|
2009-05-07 08:25:15 +01:00
|
|
|
|
2009-06-19 03:21:17 +01:00
|
|
|
$this->updateAvatars($twitter_user, $profile);
|
|
|
|
}
|
2009-05-07 08:25:15 +01:00
|
|
|
|
2009-06-19 03:21:17 +01:00
|
|
|
if ($this->missingAvatarFile($profile)) {
|
2009-08-06 23:52:58 +01:00
|
|
|
common_debug($this->name() . ' - Twitter user ' .
|
|
|
|
$profile->nickname .
|
|
|
|
' is missing one or more local avatars.');
|
|
|
|
common_debug($this->name() ." - old: $oldname new: $newname");
|
2009-06-19 03:21:17 +01:00
|
|
|
|
|
|
|
$this->updateAvatars($twitter_user, $profile);
|
2009-05-07 08:25:15 +01:00
|
|
|
}
|
2009-06-19 03:21:17 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateAvatars($twitter_user, $profile) {
|
|
|
|
|
|
|
|
global $config;
|
|
|
|
|
|
|
|
$path_parts = pathinfo($twitter_user->profile_image_url);
|
|
|
|
|
|
|
|
$img_root = substr($path_parts['basename'], 0, -11);
|
|
|
|
$ext = $path_parts['extension'];
|
|
|
|
$mediatype = $this->getMediatype($ext);
|
|
|
|
|
|
|
|
foreach (array('mini', 'normal', 'bigger') as $size) {
|
|
|
|
$url = $path_parts['dirname'] . '/' .
|
|
|
|
$img_root . '_' . $size . ".$ext";
|
|
|
|
$filename = 'Twitter_' . $twitter_user->id . '_' .
|
|
|
|
$img_root . "_$size.$ext";
|
|
|
|
|
|
|
|
$this->updateAvatar($profile->id, $size, $mediatype, $filename);
|
|
|
|
$this->fetchAvatar($url, $filename);
|
2009-05-07 08:25:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-19 00:51:06 +01:00
|
|
|
function missingAvatarFile($profile) {
|
|
|
|
|
|
|
|
foreach (array(24, 48, 73) as $size) {
|
|
|
|
|
|
|
|
$filename = $profile->getAvatar($size)->filename;
|
|
|
|
$avatarpath = Avatar::path($filename);
|
|
|
|
|
|
|
|
if (file_exists($avatarpath) == FALSE) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2009-05-07 08:25:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function getMediatype($ext)
|
|
|
|
{
|
|
|
|
$mediatype = null;
|
|
|
|
|
|
|
|
switch (strtolower($ext)) {
|
|
|
|
case 'jpg':
|
|
|
|
$mediatype = 'image/jpg';
|
|
|
|
break;
|
|
|
|
case 'gif':
|
|
|
|
$mediatype = 'image/gif';
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$mediatype = 'image/png';
|
2009-04-22 03:09:27 +01:00
|
|
|
}
|
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
return $mediatype;
|
|
|
|
}
|
|
|
|
|
|
|
|
function saveAvatars($user, $id)
|
|
|
|
{
|
|
|
|
global $config;
|
|
|
|
|
|
|
|
$path_parts = pathinfo($user->profile_image_url);
|
2009-04-22 03:09:27 +01:00
|
|
|
$ext = $path_parts['extension'];
|
2009-05-07 08:25:15 +01:00
|
|
|
$end = strlen('_normal' . $ext);
|
|
|
|
$img_root = substr($path_parts['basename'], 0, -($end+1));
|
|
|
|
$mediatype = $this->getMediatype($ext);
|
2009-04-22 03:09:27 +01:00
|
|
|
|
|
|
|
foreach (array('mini', 'normal', 'bigger') as $size) {
|
2009-04-24 22:27:31 +01:00
|
|
|
$url = $path_parts['dirname'] . '/' .
|
2009-04-22 03:09:27 +01:00
|
|
|
$img_root . '_' . $size . ".$ext";
|
2009-04-24 22:27:31 +01:00
|
|
|
$filename = 'Twitter_' . $user->id . '_' .
|
2009-04-22 03:09:27 +01:00
|
|
|
$img_root . "_$size.$ext";
|
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
if ($this->fetchAvatar($url, $filename)) {
|
|
|
|
$this->newAvatar($id, $size, $mediatype, $filename);
|
|
|
|
} else {
|
2010-02-04 01:53:08 +00:00
|
|
|
common_log(LOG_WARNING, $id() .
|
2009-08-06 23:52:58 +01:00
|
|
|
" - Problem fetching Avatar: $url");
|
2009-04-22 03:09:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
function updateAvatar($profile_id, $size, $mediatype, $filename) {
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2009-08-06 23:52:58 +01:00
|
|
|
common_debug($this->name() . " - Updating avatar: $size");
|
2009-04-22 03:09:27 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
$profile = Profile::staticGet($profile_id);
|
|
|
|
|
2009-06-19 03:21:17 +01:00
|
|
|
if (empty($profile)) {
|
2009-11-08 22:28:51 +00:00
|
|
|
common_debug($this->name() . " - Couldn't get profile: $profile_id!");
|
2009-05-07 08:25:15 +01:00
|
|
|
return;
|
2009-04-22 03:09:27 +01:00
|
|
|
}
|
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
$sizes = array('mini' => 24, 'normal' => 48, 'bigger' => 73);
|
|
|
|
$avatar = $profile->getAvatar($sizes[$size]);
|
2009-04-22 03:09:27 +01:00
|
|
|
|
2009-06-19 03:21:17 +01:00
|
|
|
// Delete the avatar, if present
|
2009-08-06 23:52:58 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
if ($avatar) {
|
|
|
|
$avatar->delete();
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->newAvatar($profile->id, $size, $mediatype, $filename);
|
2009-05-05 20:28:57 +01:00
|
|
|
}
|
2009-04-22 03:09:27 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
function newAvatar($profile_id, $size, $mediatype, $filename)
|
|
|
|
{
|
|
|
|
global $config;
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
$avatar = new Avatar();
|
|
|
|
$avatar->profile_id = $profile_id;
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
switch($size) {
|
|
|
|
case 'mini':
|
|
|
|
$avatar->width = 24;
|
|
|
|
$avatar->height = 24;
|
|
|
|
break;
|
|
|
|
case 'normal':
|
|
|
|
$avatar->width = 48;
|
|
|
|
$avatar->height = 48;
|
|
|
|
break;
|
|
|
|
default:
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
// Note: Twitter's big avatars are a different size than
|
2009-08-26 08:33:43 +01:00
|
|
|
// StatusNet's (StatusNet's = 96)
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
$avatar->width = 73;
|
|
|
|
$avatar->height = 73;
|
|
|
|
}
|
2009-04-22 03:09:27 +01:00
|
|
|
|
2009-11-09 19:01:46 +00:00
|
|
|
$avatar->original = 0; // we don't have the original
|
2009-05-07 08:25:15 +01:00
|
|
|
$avatar->mediatype = $mediatype;
|
|
|
|
$avatar->filename = $filename;
|
|
|
|
$avatar->url = Avatar::url($filename);
|
|
|
|
|
|
|
|
$avatar->created = common_sql_now();
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2010-02-04 01:53:08 +00:00
|
|
|
try {
|
|
|
|
$id = $avatar->insert();
|
|
|
|
} catch (Exception $e) {
|
|
|
|
common_log(LOG_WARNING, $this->name() . ' Couldn\'t insert avatar - ' . $e->getMessage());
|
|
|
|
}
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2009-06-19 03:21:17 +01:00
|
|
|
if (empty($id)) {
|
2009-05-07 08:25:15 +01:00
|
|
|
common_log_db_error($avatar, 'INSERT', __FILE__);
|
|
|
|
return null;
|
|
|
|
}
|
2009-04-22 03:09:27 +01:00
|
|
|
|
2009-08-06 23:52:58 +01:00
|
|
|
common_debug($this->name() .
|
|
|
|
" - Saved new $size avatar for $profile_id.");
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
return $id;
|
2009-05-05 20:28:57 +01:00
|
|
|
}
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2009-10-28 19:29:20 +00:00
|
|
|
/**
|
|
|
|
* Fetch a remote avatar image and save to local storage.
|
|
|
|
*
|
|
|
|
* @param string $url avatar source URL
|
|
|
|
* @param string $filename bare local filename for download
|
|
|
|
* @return bool true on success, false on failure
|
|
|
|
*/
|
2009-05-07 08:25:15 +01:00
|
|
|
function fetchAvatar($url, $filename)
|
|
|
|
{
|
2009-10-28 19:29:20 +00:00
|
|
|
common_debug($this->name() . " - Fetching Twitter avatar: $url");
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2009-10-28 19:29:20 +00:00
|
|
|
$request = HTTPClient::start();
|
|
|
|
$response = $request->get($url);
|
|
|
|
if ($response->isOk()) {
|
|
|
|
$avatarfile = Avatar::path($filename);
|
|
|
|
$ok = file_put_contents($avatarfile, $response->getBody());
|
|
|
|
if (!$ok) {
|
|
|
|
common_log(LOG_WARNING, $this->name() .
|
2009-11-08 22:28:51 +00:00
|
|
|
" - Couldn't open file $filename");
|
2009-10-28 19:29:20 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
2009-05-07 08:25:15 +01:00
|
|
|
return false;
|
|
|
|
}
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2009-10-28 19:29:20 +00:00
|
|
|
return true;
|
2009-04-22 03:09:27 +01:00
|
|
|
}
|
2009-05-07 08:25:15 +01:00
|
|
|
}
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2009-08-06 23:52:58 +01:00
|
|
|
$id = null;
|
|
|
|
$debug = null;
|
2009-04-22 03:09:27 +01:00
|
|
|
|
2009-06-28 21:16:44 +01:00
|
|
|
if (have_option('i')) {
|
|
|
|
$id = get_option_value('i');
|
|
|
|
} else if (have_option('--id')) {
|
|
|
|
$id = get_option_value('--id');
|
|
|
|
} else if (count($args) > 0) {
|
|
|
|
$id = $args[0];
|
|
|
|
} else {
|
|
|
|
$id = null;
|
|
|
|
}
|
|
|
|
|
2009-07-18 02:36:13 +01:00
|
|
|
if (have_option('d') || have_option('debug')) {
|
2009-08-06 23:52:58 +01:00
|
|
|
$debug = true;
|
2009-07-18 02:36:13 +01:00
|
|
|
}
|
2009-07-18 02:09:03 +01:00
|
|
|
|
2009-08-06 23:52:58 +01:00
|
|
|
$fetcher = new TwitterStatusFetcher($id, 60, 2, $debug);
|
2009-05-07 08:25:15 +01:00
|
|
|
$fetcher->runOnce();
|
2009-04-24 22:27:31 +01:00
|
|
|
|