#!/usr/bin/env php . */ // Abort if called from a web server if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) { print "This script must be run from the command line\n"; exit(); } define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); define('LACONICA', true); // Uncomment this to get useful console output //define('SCRIPT_DEBUG', true); require_once(INSTALLDIR . '/lib/common.php'); $flink = new Foreign_link(); $flink->service = 1; // Twitter $cnt = $flink->find(); print "Updating Twitter friends subscriptions for $cnt users.\n"; while ($flink->fetch()) { if (($flink->friendsync & FOREIGN_FRIEND_RECV) == FOREIGN_FRIEND_RECV) { $user = User::staticGet($flink->user_id); if (empty($user)) { common_log(LOG_WARNING, "Unmatched user for ID " . $flink->user_id); print "Unmatched user for ID $flink->user_id\n"; continue; } print "Updating Twitter friends for $user->nickname (Laconica ID: $user->id)... "; $fuser = $flink->getForeignUser(); if (empty($fuser)) { common_log(LOG_WARNING, "Unmatched user for ID " . $flink->user_id); print "Unmatched user for ID $flink->user_id\n"; continue; } $result = save_twitter_friends($user, $fuser->id, $fuser->nickname, $flink->credentials); if (defined('SCRIPT_DEBUG')) { print "\nDONE\n"; } else { print "DONE\n"; } } } exit(0);