X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=plugins%2FTwitterBridge%2Fscripts%2Fstreamtest.php;h=a642920cee908e09b0363c03a0c9cc52c4958dd2;hb=d0e7203d881c3d174d6d16cb27beda0627fea85d;hp=a175c1efa54e479ef2cb52cecec46adffbb55927;hpb=e62254f8ccec8966ea197a35cba2fb7c18099303;p=quix0rs-gnu-social.git diff --git a/plugins/TwitterBridge/scripts/streamtest.php b/plugins/TwitterBridge/scripts/streamtest.php index a175c1efa5..a642920cee 100644 --- a/plugins/TwitterBridge/scripts/streamtest.php +++ b/plugins/TwitterBridge/scripts/streamtest.php @@ -28,7 +28,7 @@ define('INSTALLDIR', realpath(dirname(__FILE__) . '/../../..')); $shortoptions = 'n:'; -$longoptions = array('nick=','import','all'); +$longoptions = array('nick=','import','all','apiroot='); $helptext = << @@ -36,6 +36,7 @@ USAGE: streamtest.php -n -n --nick= Local user whose Twitter timeline to watch --import Experimental: run incoming messages through import --all Experimental: run multiuser; requires nick be the app owner + --apiroot= Provide alternate streaming API root URL Attempts a User Stream connection to Twitter as the given user, dumping data as it comes. @@ -43,8 +44,8 @@ data as it comes. ENDOFHELP; require_once INSTALLDIR.'/scripts/commandline.inc'; -require_once dirname(dirname(__FILE__)) . '/jsonstreamreader.php'; -require_once dirname(dirname(__FILE__)) . '/twitterstreamreader.php'; +require_once dirname(dirname(__FILE__)) . '/lib/jsonstreamreader.php'; +require_once dirname(dirname(__FILE__)) . '/lib/twitterstreamreader.php'; if (have_option('n')) { $nickname = get_option_value('n'); @@ -62,12 +63,7 @@ if (have_option('n')) { */ function twitterAuthForUser(User $user) { - $flink = Foreign_link::getByUserID($user->id, - TWITTER_SERVICE); - if (!$flink) { - throw new ServerException("No Twitter config for this user."); - } - + $flink = Foreign_link::getByUserID($user->id, TWITTER_SERVICE); $token = TwitterOAuthClient::unpackToken($flink->credentials); if (!$token) { throw new ServerException("No Twitter OAuth credentials for this user."); @@ -86,7 +82,12 @@ function siteStreamForOwner(User $user) { // The user we auth as must be the owner of the application. $auth = twitterAuthForUser($user); - $stream = new TwitterSiteStream($auth); + + if (have_option('apiroot')) { + $stream = new TwitterSiteStream($auth, get_option_value('apiroot')); + } else { + $stream = new TwitterSiteStream($auth); + } // Pull Twitter user IDs for all users we want to pull data for $userIds = array(); @@ -107,7 +108,7 @@ function siteStreamForOwner(User $user) } -$user = User::staticGet('nickname', $nickname); +$user = User::getKV('nickname', $nickname); global $myuser; $myuser = $user; @@ -164,11 +165,7 @@ $stream->hookEvent('status', function($data, $context) { $importer = new TwitterImport(); printf("\timporting..."); $notice = $importer->importStatus($data); - if ($notice) { - global $myuser; - Inbox::insertNotice($myuser->id, $notice->id); - printf(" %s\n", $notice->id); - } else { + if (!$notice instanceof Notice) { printf(" FAIL\n"); } }