#!/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); require_once(INSTALLDIR . '/lib/common.php'); require_once(INSTALLDIR . '/lib/facebookutil.php'); // For storing the last run date-time $last_updated_file = INSTALLDIR . '/scripts/facebook_last_updated'; // Lock file name $tmp_file = "/tmp/update_facebook.lock"; // Make sure only one copy of the script is running at a time if (!($tmp_file = @fopen($tmp_file, "w"))) { die("Can't open lock file. Script already running?"); } $facebook = get_facebook(); $current_time = time(); $notice = get_facebook_notices(get_last_updated()); print date('r', $current_time) . " Looking for notices to send to Facebook...\n"; $cnt = 0; while($notice->fetch()) { $flink = Foreign_link::getByUserID($notice->profile_id, FACEBOOK_SERVICE); $user = $flink->getUser(); $fbuid = $flink->foreign_id; $prefix = $facebook->api_client->data_getUserPreference(1, $fbuid); $content = "$prefix $notice->content"; if (($flink->noticesync & FOREIGN_NOTICE_SEND) == FOREIGN_NOTICE_SEND) { // If it's not a reply, or if the user WANTS to send replies... if (!preg_match('/@[a-zA-Z0-9_]{1,15}\b/u', $content) || (($flink->noticesync & FOREIGN_NOTICE_SEND_REPLY) == FOREIGN_NOTICE_SEND_REPLY)) { // Avoid a Loop if ($notice->source != 'Facebook') { update_status($fbuid, $content); update_profile_box($facebook, $fbuid, $user, $notice); $cnt++; } } } } update_last_updated($current_time); print "Sent $cnt notices to Facebook.\n"; exit(0); function update_status($fbuid, $content) { global $facebook; try { $result = $facebook->api_client->users_setStatus($content, $fbuid, false, true); } catch(FacebookRestClientException $e){ print_r($e); } } function get_last_updated(){ global $last_updated_file, $current_time; $file = fopen($last_updated_file, 'r'); if ($file) { $last = fgets($file); } else { print "Unable to read $last_updated_file. Using current time.\n"; return $current_time; } fclose($file); return $last; } function update_last_updated($time){ global $last_updated_file; $file = fopen($last_updated_file, 'w') or die("Can't open $last_updated_file for writing!"); fwrite($file, $time); fclose($file); }