]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
The fabled twitterqueuehandler
authorZach Copley <zach@controlyourself.ca>
Thu, 12 Feb 2009 22:39:21 +0000 (14:39 -0800)
committerZach Copley <zach@controlyourself.ca>
Thu, 12 Feb 2009 22:39:21 +0000 (14:39 -0800)
lib/twitter.php
lib/util.php
scripts/startdaemons.sh
scripts/stopdaemons.sh
scripts/twitterqueuehandler.php [new file with mode: 0755]

index 72212c1851e95db30f324ba053866c494e567d84..deb6fd276b6ac71de7fe10280ad33f129c3cd717 100644 (file)
@@ -231,7 +231,7 @@ function broadcast_twitter($notice)
         TWITTER_SERVICE);
             
     // XXX: Not sure WHERE to check whether a notice should go to 
-    // Twitter. Should we even put in the queue if it's not? --Zach
+    // Twitter. Should we even put in the queue if it shouldn't? --Zach
     if (is_twitter_bound($notice, $flink)) {
 
         $fuser = $flink->getForeignUser();
index 3f4fae3a59e2d193e5001e7a41efad137b210202..7923fe28a1c26d2286f342b6aeb5b284239cfa78 100644 (file)
@@ -808,7 +808,7 @@ function common_broadcast_notice($notice, $remote=false)
 
 function common_enqueue_notice($notice)
 {
-    foreach (array('jabber', 'omb', 'sms', 'public') as $transport) {
+    foreach (array('jabber', 'omb', 'sms', 'public', 'twitter') as $transport) {
         $qi = new Queue_item();
         $qi->notice_id = $notice->id;
         $qi->transport = $transport;
index 685bd938fa289862898fd2357b7f0f32a29e452c..269036393d316dc57fe7f8c04e532cd5f5f84e9f 100755 (executable)
@@ -23,7 +23,8 @@
 DIR=`dirname $0`
 
 for f in xmppdaemon.php jabberqueuehandler.php publicqueuehandler.php \
-         xmppconfirmhandler.php smsqueuehandler.php ombqueuehandler.php; do
+         xmppconfirmhandler.php smsqueuehandler.php ombqueuehandler.php \
+         twitterqueuehandler.php; do
 
          echo -n "Starting $f...";
         php $DIR/$f
index 08e1d4714ff8643549864575fe5cbc333f0c4d5f..b69d296d3476b45997a1605c021cf0532bb1bcc4 100755 (executable)
@@ -24,7 +24,7 @@ SDIR=`dirname $0`
 DIR=`php $SDIR/getpiddir.php`
 
 for f in jabberhandler ombhandler publichandler smshandler \
-        xmppconfirmhandler xmppdaemon; do
+        xmppconfirmhandler xmppdaemon twitterhandler ; do
 
        FILES="$DIR/$f.*.pid"
        for ff in "$FILES" ; do
diff --git a/scripts/twitterqueuehandler.php b/scripts/twitterqueuehandler.php
new file mode 100755 (executable)
index 0000000..7da4f1e
--- /dev/null
@@ -0,0 +1,71 @@
+#!/usr/bin/env php
+<?php
+/*
+ * Laconica - a distributed open-source microblogging tool
+ * Copyright (C) 2008, Controlez-Vous, Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+# 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/twitter.php');
+require_once(INSTALLDIR . '/lib/queuehandler.php');
+
+set_error_handler('common_error_handler');
+
+class TwitterQueueHandler extends QueueHandler
+{
+    
+    function transport()
+    {
+        return 'twitter';
+    }
+    
+    function start()
+    {
+        $this->log(LOG_INFO, "INITIALIZE");
+        return true;
+    }
+
+    function handle_notice($notice)
+    {
+        return broadcast_twitter($notice);
+    }
+    
+    function finish()
+    {
+    }
+
+}
+
+ini_set("max_execution_time", "0");
+ini_set("max_input_time", "0");
+set_time_limit(0);
+
+mb_internal_encoding('UTF-8');
+
+$id = ($argc > 1) ? $argv[1] : null;
+
+$handler = new TwitterQueueHandler($id);
+
+$handler->runOnce();