]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - scripts/update_facebook.php
Add a menu for the subscriptions group of actions
[quix0rs-gnu-social.git] / scripts / update_facebook.php
index 02e47cefea514a16369f0100944de4f2d879d7fb..0c54cec7cfd87cf6907479e29b6bb1c0f596ae70 100755 (executable)
@@ -31,7 +31,7 @@ require_once(INSTALLDIR . '/lib/common.php');
 require_once(INSTALLDIR . '/lib/facebookutil.php');
 
 // For storing the last run date-time
-$last_updated_file = "/home/zach/laconica/scripts/facebook_last_updated";
+$last_updated_file = INSTALLDIR . '/scripts/facebook_last_updated';
 
 // Lock file name
 $tmp_file = "/tmp/update_facebook.lock";
@@ -48,24 +48,40 @@ $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, 2);
+    $flink = Foreign_link::getByUserID($notice->profile_id, FACEBOOK_SERVICE);
+    $user = $flink->getUser();
     $fbuid = $flink->foreign_id;
-    $content = $notice->content;
+
+    $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)) {
-                update_status($fbuid, $content);
+             
+                // 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);