summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorZach Copley <zach@controlyourself.ca>2009-04-07 18:29:10 -0700
committerZach Copley <zach@controlyourself.ca>2009-04-07 18:29:10 -0700
commit47d61ad21150358e223f5a9f78cec8f0870c90ea (patch)
tree2cefeec4851ceb8e294da906809a1f41f3f2f788 /scripts
parent1371a142b193673a9b3d0fc4766249215ae94992 (diff)
Major improvements to Twitter bridge friend syncing
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/synctwitterfriends.php35
1 files changed, 25 insertions, 10 deletions
diff --git a/scripts/synctwitterfriends.php b/scripts/synctwitterfriends.php
index 0ce34c2ae..d108416f4 100755
--- a/scripts/synctwitterfriends.php
+++ b/scripts/synctwitterfriends.php
@@ -18,7 +18,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-# Abort if called from a web server
+// 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();
@@ -27,11 +27,16 @@ if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) {
define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
define('LACONICA', true);
+// Set this to true to get useful console output
+define('SCRIPT_DEBUG', false);
+
require_once(INSTALLDIR . '/lib/common.php');
$flink = new Foreign_link();
$flink->service = 1; // Twitter
-$flink->find();
+$cnt = $flink->find();
+
+print "Updating Twitter friends subscriptions for $cnt users.\n";
while ($flink->fetch()) {
@@ -39,20 +44,30 @@ while ($flink->fetch()) {
$user = User::staticGet($flink->user_id);
- print "Updating Twitter friends for user $user->nickname ($user->id)\n";
+ 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();
- $result = save_twitter_friends($user, $fuser->id, $fuser->nickname, $flink->credentials);
+ if (empty($fuser)) {
+ common_log(LOG_WARNING, "Unmatched user for ID " . $flink->user_id);
+ print "Unmatched user for ID $flink->user_id\n";
+ continue;
+ }
- if ($result == false) {
- print "Problems updating Twitter friends! Check the log.\n";
- exit(1);
+ $result = save_twitter_friends($user, $fuser->id,
+ $fuser->nickname, $flink->credentials);
+ if (SCRIPT_DEBUG) {
+ print "\nDONE\n";
+ } else {
+ print "DONE\n";
}
}
-
}
exit(0);
-
-