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/twitteroauthclient.php';
|
2009-06-17 20:31:35 +01:00
|
|
|
|
|
|
|
/**
|
2010-03-27 23:36:04 +00:00
|
|
|
* Fetch statuses from Twitter
|
2009-06-17 20:31:35 +01:00
|
|
|
*
|
2010-03-27 23:36:04 +00:00
|
|
|
* Fetches statuses from Twitter and inserts them as notices
|
|
|
|
*
|
|
|
|
* NOTE: an Avatar path MUST be set in config.php for this
|
|
|
|
* script to work, e.g.:
|
|
|
|
* $config['avatar']['path'] = $config['site']['path'] . '/avatar/';
|
|
|
|
*
|
|
|
|
* @todo @fixme @gar Fix the above. For some reason $_path is always empty when
|
|
|
|
* this script is run, so the default avatar path is always set wrong in
|
|
|
|
* default.php. Therefore it must be set explicitly in config.php. --Z
|
2009-06-17 20:31:35 +01:00
|
|
|
*
|
|
|
|
* @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-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-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-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) {
|
|
|
|
// 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-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 {
|
2010-09-04 17:58:20 +01:00
|
|
|
common_debug("Skipping friends timeline for $flink->foreign_id since not OAuth.");
|
2009-08-28 08:02:27 +01:00
|
|
|
}
|
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
|
|
|
|
2010-09-07 15:53:11 +01:00
|
|
|
$lastId = Twitter_synch_status::getLastId($flink->foreign_id, 'home_timeline');
|
2010-09-07 09:22:55 +01:00
|
|
|
|
2010-09-07 16:53:26 +01:00
|
|
|
common_debug("Got lastId value '{$lastId}' for foreign id '{$flink->foreign_id}' and timeline 'home_timeline'");
|
|
|
|
|
2009-08-04 03:21:18 +01:00
|
|
|
try {
|
2010-09-07 09:22:55 +01:00
|
|
|
$timeline = $client->statusesHomeTimeline($lastId);
|
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
|
|
|
}
|
|
|
|
|
2010-03-27 23:36:04 +00:00
|
|
|
common_debug(LOG_INFO, $this->name() . ' - Retrieved ' . sizeof($timeline) . ' statuses from Twitter.');
|
|
|
|
|
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-08-25 23:12:20 +01:00
|
|
|
// Hacktastic: filter out stuff coming from this StatusNet
|
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
|
|
|
|
2010-09-03 05:53:39 +01:00
|
|
|
// Don't save it if the user is protected
|
|
|
|
// FIXME: save it but treat it as private
|
|
|
|
if ($status->user->protected) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2010-09-04 16:40:33 +01:00
|
|
|
$notice = $this->saveStatus($status);
|
|
|
|
|
|
|
|
if (!empty($notice)) {
|
|
|
|
Inbox::insertNotice($flink->user_id, $notice->id);
|
|
|
|
}
|
2009-04-22 03:09:27 +01:00
|
|
|
}
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2010-09-07 16:53:26 +01:00
|
|
|
if (!empty($timeline)) {
|
|
|
|
Twitter_synch_status::setLastId($flink->foreign_id, 'home_timeline', $timeline[0]->id);
|
|
|
|
common_debug("Set lastId value '{$timeline[0]->id}' for foreign id '{$flink->foreign_id}' and timeline 'home_timeline'");
|
|
|
|
}
|
2010-09-07 09:22:55 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
// Okay, record the time we synced with Twitter for posterity
|
|
|
|
$flink->last_noticesync = common_sql_now();
|
|
|
|
$flink->update();
|
2009-04-22 03:09:27 +01:00
|
|
|
}
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2010-09-04 16:40:33 +01:00
|
|
|
function saveStatus($status)
|
2009-05-07 08:25:15 +01:00
|
|
|
{
|
2010-03-27 23:36:04 +00:00
|
|
|
$profile = $this->ensureProfile($status->user);
|
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.');
|
2010-09-03 22:51:28 +01:00
|
|
|
return null;
|
2009-04-22 03:09:27 +01:00
|
|
|
}
|
|
|
|
|
2010-09-03 06:46:02 +01:00
|
|
|
$statusUri = $this->makeStatusURI($status->user->screen_name, $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
|
2010-09-05 04:49:52 +01:00
|
|
|
$n2s = Notice_to_status::staticGet('status_id', $status->id);
|
2009-12-04 20:17:42 +00:00
|
|
|
|
2010-09-05 04:49:52 +01:00
|
|
|
if (!empty($n2s)) {
|
2010-03-27 23:36:04 +00:00
|
|
|
common_log(
|
|
|
|
LOG_INFO,
|
|
|
|
$this->name() .
|
2010-09-05 04:49:52 +01:00
|
|
|
" - Ignoring duplicate import: {$status->id}"
|
2010-03-27 23:36:04 +00:00
|
|
|
);
|
2010-09-05 04:49:52 +01:00
|
|
|
return Notice::staticGet('id', $n2s->notice_id);
|
2010-09-03 22:51:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// If it's a retweet, save it as a repeat!
|
|
|
|
if (!empty($status->retweeted_status)) {
|
2010-09-04 16:37:34 +01:00
|
|
|
common_log(LOG_INFO, "Status {$status->id} is a retweet of {$status->retweeted_status->id}.");
|
2010-09-03 22:51:28 +01:00
|
|
|
$original = $this->saveStatus($status->retweeted_status);
|
2010-09-04 20:05:38 +01:00
|
|
|
if (empty($original)) {
|
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
$author = $original->getProfile();
|
|
|
|
// TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'.
|
|
|
|
// TRANS: %1$s is the repeated user's name, %2$s is the repeated notice.
|
2010-09-18 16:45:18 +01:00
|
|
|
$content = sprintf(_m('RT @%1$s %2$s'),
|
2010-09-04 20:05:38 +01:00
|
|
|
$author->nickname,
|
|
|
|
$original->content);
|
2010-09-05 05:32:56 +01:00
|
|
|
|
|
|
|
if (Notice::contentTooLong($content)) {
|
|
|
|
$contentlimit = Notice::maxContent();
|
|
|
|
$content = mb_substr($content, 0, $contentlimit - 4) . ' ...';
|
|
|
|
}
|
|
|
|
|
2010-09-04 20:05:38 +01:00
|
|
|
$repeat = Notice::saveNew($profile->id,
|
|
|
|
$content,
|
|
|
|
'twitter',
|
|
|
|
array('repeat_of' => $original->id,
|
2010-09-05 05:25:58 +01:00
|
|
|
'uri' => $statusUri,
|
|
|
|
'is_local' => Notice::GATEWAY));
|
2010-09-04 20:05:38 +01:00
|
|
|
common_log(LOG_INFO, "Saved {$repeat->id} as a repeat of {$original->id}");
|
2010-09-05 04:45:55 +01:00
|
|
|
Notice_to_status::saveNew($repeat->id, $status->id);
|
2010-09-04 20:05:38 +01:00
|
|
|
return $repeat;
|
|
|
|
}
|
2010-03-27 23:36:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$notice = new Notice();
|
|
|
|
|
|
|
|
$notice->profile_id = $profile->id;
|
|
|
|
$notice->uri = $statusUri;
|
|
|
|
$notice->url = $statusUri;
|
|
|
|
$notice->created = strftime(
|
|
|
|
'%Y-%m-%d %H:%M:%S',
|
|
|
|
strtotime($status->created_at)
|
|
|
|
);
|
|
|
|
|
|
|
|
$notice->source = 'twitter';
|
2010-09-03 06:46:02 +01:00
|
|
|
|
2010-03-27 23:36:04 +00:00
|
|
|
$notice->reply_to = null;
|
2010-09-03 06:46:02 +01:00
|
|
|
|
|
|
|
if (!empty($status->in_reply_to_status_id)) {
|
2010-09-04 16:37:34 +01:00
|
|
|
common_log(LOG_INFO, "Status {$status->id} is a reply to status {$status->in_reply_to_status_id}");
|
2010-09-05 05:22:37 +01:00
|
|
|
$n2s = Notice_to_status::staticGet('status_id', $status->in_reply_to_status_id);
|
|
|
|
if (empty($n2s)) {
|
2010-09-04 16:37:34 +01:00
|
|
|
common_log(LOG_INFO, "Couldn't find local notice for status {$status->in_reply_to_status_id}");
|
|
|
|
} else {
|
2010-09-05 05:22:37 +01:00
|
|
|
$reply = Notice::staticGet('id', $n2s->notice_id);
|
|
|
|
if (empty($reply)) {
|
|
|
|
common_log(LOG_INFO, "Couldn't find local notice for status {$status->in_reply_to_status_id}");
|
|
|
|
} else {
|
|
|
|
common_log(LOG_INFO, "Found local notice {$reply->id} for status {$status->in_reply_to_status_id}");
|
|
|
|
$notice->reply_to = $reply->id;
|
|
|
|
$notice->conversation = $reply->conversation;
|
|
|
|
}
|
2010-09-03 06:46:02 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($notice->conversation)) {
|
|
|
|
$conv = Conversation::create();
|
|
|
|
$notice->conversation = $conv->id;
|
2010-09-04 16:37:34 +01:00
|
|
|
common_log(LOG_INFO, "No known conversation for status {$status->id} so making a new one {$conv->id}.");
|
2010-09-03 06:46:02 +01:00
|
|
|
}
|
|
|
|
|
2010-03-27 23:36:04 +00:00
|
|
|
$notice->is_local = Notice::GATEWAY;
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2010-09-30 19:29:31 +01:00
|
|
|
$notice->content = html_entity_decode($status->text, ENT_QUOTES, 'UTF-8');
|
2010-09-05 18:16:04 +01:00
|
|
|
$notice->rendered = $this->linkify($status);
|
2009-12-04 20:17:42 +00:00
|
|
|
|
2010-03-27 23:36:04 +00:00
|
|
|
if (Event::handle('StartNoticeSave', array(&$notice))) {
|
2009-06-17 20:31:35 +01:00
|
|
|
|
2010-03-27 23:36:04 +00:00
|
|
|
$id = $notice->insert();
|
2009-06-17 20:31:35 +01:00
|
|
|
|
2010-03-27 23:36:04 +00:00
|
|
|
if (!$id) {
|
|
|
|
common_log_db_error($notice, 'INSERT', __FILE__);
|
|
|
|
common_log(LOG_ERR, $this->name() .
|
|
|
|
' - Problem saving notice.');
|
2009-05-07 08:25:15 +01:00
|
|
|
}
|
2009-12-04 20:17:42 +00:00
|
|
|
|
2010-03-27 23:36:04 +00:00
|
|
|
Event::handle('EndNoticeSave', array($notice));
|
2009-05-05 20:28:57 +01:00
|
|
|
}
|
2009-04-22 03:09:27 +01:00
|
|
|
|
2010-09-05 04:45:55 +01:00
|
|
|
Notice_to_status::saveNew($notice->id, $status->id);
|
2010-09-06 13:54:04 +01:00
|
|
|
|
|
|
|
$this->saveStatusMentions($notice, $status);
|
|
|
|
|
2010-02-04 01:53:08 +00:00
|
|
|
$notice->blowOnInsert();
|
2009-12-04 20:17:42 +00:00
|
|
|
|
|
|
|
return $notice;
|
2010-09-03 06:46:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Make an URI for a status.
|
|
|
|
*
|
|
|
|
* @param object $status status object
|
|
|
|
*
|
|
|
|
* @return string URI
|
|
|
|
*/
|
|
|
|
function makeStatusURI($username, $id)
|
|
|
|
{
|
|
|
|
return 'http://twitter.com/'
|
|
|
|
. $username
|
|
|
|
. '/status/'
|
|
|
|
. $id;
|
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.
|
|
|
|
*
|
2010-03-27 23:36:04 +00:00
|
|
|
* @param string $nickname local nickname of the Twitter user
|
|
|
|
* @param string $profileurl the profile url
|
2010-02-04 01:53:08 +00:00
|
|
|
*
|
2010-03-27 23:36:04 +00:00
|
|
|
* @return mixed value the first Profile with that url, or null
|
2010-02-04 01:53:08 +00:00
|
|
|
*/
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2010-03-27 23:36:04 +00:00
|
|
|
/**
|
|
|
|
* Check to see if this Twitter status has already been imported
|
|
|
|
*
|
|
|
|
* @param Profile $profile Twitter user's local profile
|
|
|
|
* @param string $statusUri URI of the status on Twitter
|
|
|
|
*
|
|
|
|
* @return mixed value a matching Notice or null
|
|
|
|
*/
|
|
|
|
function checkDupe($profile, $statusUri)
|
|
|
|
{
|
|
|
|
$notice = new Notice();
|
|
|
|
$notice->uri = $statusUri;
|
|
|
|
$notice->profile_id = $profile->id;
|
|
|
|
$notice->limit(1);
|
|
|
|
|
|
|
|
if ($notice->find()) {
|
|
|
|
$notice->fetch();
|
|
|
|
return $notice;
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
$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);
|
2010-03-27 23:36:04 +00:00
|
|
|
return $profile;
|
2009-04-24 22:27:31 +01:00
|
|
|
|
2009-05-07 08:25:15 +01:00
|
|
|
} else {
|
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-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
|
|
|
|
2010-03-27 23:36:04 +00:00
|
|
|
return $profile;
|
2009-05-07 08:25:15 +01:00
|
|
|
}
|
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-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:
|
|
|
|
// Note: Twitter's big avatars are a different size than
|
2009-08-26 08:33:43 +01:00
|
|
|
// StatusNet's (StatusNet's = 96)
|
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
|
|
|
}
|
2010-09-05 18:16:04 +01:00
|
|
|
|
|
|
|
const URL = 1;
|
|
|
|
const HASHTAG = 2;
|
|
|
|
const MENTION = 3;
|
|
|
|
|
|
|
|
function linkify($status)
|
|
|
|
{
|
|
|
|
$text = $status->text;
|
|
|
|
|
|
|
|
if (empty($status->entities)) {
|
2010-09-10 14:10:53 +01:00
|
|
|
common_log(LOG_WARNING, "No entities data for {$status->id}; trying to fake up links ourselves.");
|
|
|
|
$text = common_replace_urls_callback($text, 'common_linkify');
|
|
|
|
$text = preg_replace('/(^|\"\;|\'|\(|\[|\{|\s+)#([\pL\pN_\-\.]{1,64})/e', "'\\1#'.TwitterStatusFetcher::tagLink('\\2')", $text);
|
2010-09-10 14:21:01 +01:00
|
|
|
$text = preg_replace('/(^|\s+)@([a-z0-9A-Z_]{1,64})/e', "'\\1@'.TwitterStatusFetcher::atLink('\\2')", $text);
|
2010-09-05 18:16:04 +01:00
|
|
|
return $text;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Move all the entities into order so we can
|
|
|
|
// replace them in reverse order and thus
|
|
|
|
// not mess up their indices
|
|
|
|
|
|
|
|
$toReplace = array();
|
|
|
|
|
|
|
|
if (!empty($status->entities->urls)) {
|
|
|
|
foreach ($status->entities->urls as $url) {
|
|
|
|
$toReplace[$url->indices[0]] = array(self::URL, $url);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($status->entities->hashtags)) {
|
|
|
|
foreach ($status->entities->hashtags as $hashtag) {
|
|
|
|
$toReplace[$hashtag->indices[0]] = array(self::HASHTAG, $hashtag);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($status->entities->user_mentions)) {
|
|
|
|
foreach ($status->entities->user_mentions as $mention) {
|
|
|
|
$toReplace[$mention->indices[0]] = array(self::MENTION, $mention);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// sort in reverse order by key
|
|
|
|
|
|
|
|
krsort($toReplace);
|
|
|
|
|
|
|
|
foreach ($toReplace as $part) {
|
|
|
|
list($type, $object) = $part;
|
|
|
|
switch($type) {
|
|
|
|
case self::URL:
|
|
|
|
$linkText = $this->makeUrlLink($object);
|
|
|
|
break;
|
|
|
|
case self::HASHTAG:
|
|
|
|
$linkText = $this->makeHashtagLink($object);
|
|
|
|
break;
|
|
|
|
case self::MENTION:
|
|
|
|
$linkText = $this->makeMentionLink($object);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
continue;
|
|
|
|
}
|
2010-09-07 20:54:06 +01:00
|
|
|
$text = mb_substr($text, 0, $object->indices[0]) . $linkText . mb_substr($text, $object->indices[1]);
|
2010-09-05 18:16:04 +01:00
|
|
|
}
|
|
|
|
return $text;
|
|
|
|
}
|
|
|
|
|
|
|
|
function makeUrlLink($object)
|
|
|
|
{
|
|
|
|
return "<a href='{$object->url}' class='extlink'>{$object->url}</a>";
|
|
|
|
}
|
|
|
|
|
|
|
|
function makeHashtagLink($object)
|
|
|
|
{
|
2010-09-10 14:10:53 +01:00
|
|
|
return "#" . self::tagLink($object->text);
|
2010-09-05 18:16:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function makeMentionLink($object)
|
|
|
|
{
|
2010-09-10 14:10:53 +01:00
|
|
|
return "@".self::atLink($object->screen_name, $object->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static function tagLink($tag)
|
|
|
|
{
|
|
|
|
return "<a href='https://twitter.com/search?q=%23{$tag}' class='hashtag'>{$tag}</a>";
|
|
|
|
}
|
|
|
|
|
|
|
|
static function atLink($screenName, $fullName=null)
|
|
|
|
{
|
|
|
|
if (!empty($fullName)) {
|
|
|
|
return "<a href='http://twitter.com/{$screenName}' title='{$fullName}'>{$screenName}</a>";
|
|
|
|
} else {
|
|
|
|
return "<a href='http://twitter.com/{$screenName}'>{$screenName}</a>";
|
|
|
|
}
|
2010-09-05 18:16:04 +01:00
|
|
|
}
|
2010-09-06 13:54:04 +01:00
|
|
|
|
|
|
|
function saveStatusMentions($notice, $status)
|
|
|
|
{
|
|
|
|
$mentions = array();
|
|
|
|
|
|
|
|
if (empty($status->entities) || empty($status->entities->user_mentions)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($status->entities->user_mentions as $mention) {
|
|
|
|
$flink = Foreign_link::getByForeignID($mention->id, TWITTER_SERVICE);
|
|
|
|
if (!empty($flink)) {
|
|
|
|
$user = User::staticGet('id', $flink->user_id);
|
|
|
|
if (!empty($user)) {
|
|
|
|
$reply = new Reply();
|
|
|
|
$reply->notice_id = $notice->id;
|
|
|
|
$reply->profile_id = $user->id;
|
|
|
|
common_log(LOG_INFO, __METHOD__ . ": saving reply: notice {$notice->id} to profile {$user->id}");
|
|
|
|
$id = $reply->insert();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
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();
|