4 * Laconica - a distributed open-source microblogging tool
5 * Copyright (C) 2008, Controlez-Vous, Inc.
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.
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.
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/>.
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";
27 define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
28 define('LACONICA', true);
30 require_once(INSTALLDIR . '/lib/common.php');
31 require_once(INSTALLDIR . '/lib/facebookutil.php');
33 // For storing the last run date-time
34 $last_updated_file = "/home/zach/laconica/scripts/facebook_last_updated";
37 $tmp_file = "/tmp/update_facebook.lock";
39 // Make sure only one copy of the script is running at a time
40 if (!($tmp_file = @fopen($tmp_file, "w")))
42 die("Can't open lock file. Script already running?");
45 $facebook = get_facebook();
47 $current_time = time();
49 $notice = get_facebook_notices(get_last_updated());
51 print date('r', $current_time) . " Looking for notices to send to Facebook...\n";
55 while($notice->fetch()) {
57 $flink = Foreign_link::getByUserID($notice->profile_id, 2);
58 $fbuid = $flink->foreign_id;
59 $content = $notice->content;
61 if (($flink->noticesync & FOREIGN_NOTICE_SEND) == FOREIGN_NOTICE_SEND) {
63 // If it's not a reply, or if the user WANTS to send replies...
64 if (!preg_match('/@[a-zA-Z0-9_]{1,15}\b/u', $content) ||
65 (($flink->noticesync & FOREIGN_NOTICE_SEND_REPLY) == FOREIGN_NOTICE_SEND_REPLY)) {
66 update_status($fbuid, $content);
72 update_last_updated($current_time);
74 print "Sent $cnt notices to Facebook.\n";
80 function update_status($fbuid, $content) {
84 $result = $facebook->api_client->users_setStatus($content, $fbuid, false, true);
85 } catch(FacebookRestClientException $e){
90 function get_last_updated(){
91 global $last_updated_file, $current_time;
93 $file = fopen($last_updated_file, 'r');
98 print "Unable to read $last_updated_file. Using current time.\n";
107 function update_last_updated($time){
108 global $last_updated_file;
109 $file = fopen($last_updated_file, 'w') or die("Can't open $last_updated_file for writing!");
110 fwrite($file, $time);