]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - scripts/synctwitterfriends.php
Merge branch '0.8.x' into cmdline
[quix0rs-gnu-social.git] / scripts / synctwitterfriends.php
1 #!/usr/bin/env php
2 <?php
3 /*
4  * Laconica - a distributed open-source microblogging tool
5  * Copyright (C) 2008, 2009, Control Yourself, Inc.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.     See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.     If not, see <http://www.gnu.org/licenses/>.
19  */
20
21 // Abort if called from a web server
22 if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) {
23     print "This script must be run from the command line\n";
24     exit();
25 }
26
27 define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
28 define('LACONICA', true);
29
30 // Uncomment this to get useful console output
31 //define('SCRIPT_DEBUG', true);
32
33 // Preset the server at the command line
34
35 $server = ($argc > 1) ? $argv[1] : null;
36 $path   = ($argc > 2) ? $argv[2] : null;
37
38 require_once(INSTALLDIR . '/lib/common.php');
39
40 // Make a lockfile
41 $lockfilename = lockFilename();
42 if (!($lockfile = @fopen($lockfilename, "w"))) {
43     print "Already running... exiting.\n";
44     exit(1);
45 }
46
47 // Obtain an exlcusive lock on file (will fail if script is already going)
48 if (!@flock( $lockfile, LOCK_EX | LOCK_NB, &$wouldblock) || $wouldblock) {
49     // Script already running - abort
50     @fclose($lockfile);
51     print "Already running... exiting.\n";
52     exit(1);
53 }
54
55 $flink = new Foreign_link();
56 $flink->service = 1; // Twitter
57 $flink->orderBy('last_friendsync');
58 $flink->limit(25);  // sync this many users during this run
59 $cnt = $flink->find();
60
61 print "Updating Twitter friends subscriptions for $cnt users.\n";
62
63 while ($flink->fetch()) {
64
65     if (($flink->friendsync & FOREIGN_FRIEND_RECV) == FOREIGN_FRIEND_RECV) {
66
67         $user = User::staticGet($flink->user_id);
68
69         if (empty($user)) {
70             common_log(LOG_WARNING, "Unmatched user for ID " . $flink->user_id);
71             print "Unmatched user for ID $flink->user_id\n";
72             continue;
73         }
74
75         print "Updating Twitter friends for $user->nickname (Laconica ID: $user->id)... ";
76
77         $fuser = $flink->getForeignUser();
78
79         if (empty($fuser)) {
80             common_log(LOG_WARNING, "Unmatched user for ID " . $flink->user_id);
81             print "Unmatched user for ID $flink->user_id\n";
82             continue;
83         }
84
85         save_twitter_friends($user, $fuser->id, $fuser->nickname, $flink->credentials);
86
87         $flink->last_friendsync = common_sql_now();
88         $flink->update();
89
90         if (defined('SCRIPT_DEBUG')) {
91             print "\nDONE\n";
92         } else {
93             print "DONE\n";
94         }
95     }
96 }
97
98 function lockFilename()
99 {
100     $piddir = common_config('daemon', 'piddir');
101     if (!$piddir) {
102         $piddir = '/var/run';
103     }
104
105     return $piddir . '/synctwitterfriends.lock';
106 }
107
108 // Cleanup
109 fclose($lockfile);
110 unlink($lockfilename);
111
112 exit(0);