unniks/twitter-enterprise-for-laravel

A Laravel Package for Twitter Powertrack

dev-master 2019-10-14 07:08 UTC

This package is auto-updated.

Last update: 2024-04-14 17:15:52 UTC


README

Twitter Power Tracker is the package for connecting and streaming data with twitter's enterprise streaming plans.

Installation

$ composer require unniks/twitter-powertracker

Don't forget to add service provider

unniks\TwitterPowertracker\PowerTrackerServiceProvider::class,

Twitter Power Tracker comes with facade. Add following lines in aliases

'TwitterPowertracker' => unniks\TwitterPowertracker\PowerTrackFacade::class,

Publish Vendor Files for configuration

$ php artisan vendor:publish --provider="unniks\TwitterPowertracker\PowerTrackerServiceProvider"

Usage

We need GNIP account before using with this feature. If you have GNIP username and password, add following variables in your .env file

TWITTER_GNIP_USERNAME=test@test.xyz <br>
TWITTER_GNIP_PASSWORD=xxxxx <br>
TWITTER_GNIP_URL=https://gnip-stream.twitter.com/stream/powertrack/accounts/{username}/publishers/twitter/{variable}.json <br>
TWITTER_GNIP_REPLAY_URL=https://gnip-stream.gnip.com/replay/powertrack/accounts/{username}/publishers/twitter/{variabale}.json <br>
TWITTER_GNIP_STREAMING_30_DAYS_URL=https://gnip-api.twitter.com/search/30day/accounts/{username}/{variabale}.json <br>
TWITTER_GNIP_RULES_URL=https://gnip-api.twitter.com/rules/powertrack/accounts/{username}/publishers/twitter/{variabale}.json 

Use this facade

use TwitterPowertracker; 

For Rule Creation

if you can pass json format recomended by GNIP console

_

 $json =  {"rules" :[{"value" : "from:foo","tag" : "some_foo_tag"},{"value" : "foo:keyword"}]} ;
TwitterPowertracker::ruleCreationByJson($json);
or just pass array of rules like this using ruleCreationByArray()

_

$rules =['from:rahul','@shami'];
TwitterPowertracker::ruleCreationByArray($rules); 
if you need to pass tags as array just use like this

_

$rules = ['from:rahul','@shami'];
$tags = ['rahul_tag','sham_tag'];
TwitterPowertracker::ruleCreationByArray($rules,$tags);

note: array index of $tags should have matched to array index of $rules

For Rule Deletion

you can use above mentioned same techniques for

_

TwitterPowertracker::ruleDeletionByJson($json); 
and

_

TwitterPowertracker::ruleDeletionByJson($json); 
TwitterPowertracker::ruleDeletionByArray($rules,$tags); 

What is rules? Please go through this documentation: https://developer.twitter.com/en/docs/tweets/filter-realtime/overview/powertrack-api

For streaming data

use TwitterPowertracker; 
TwitterPowertracker::powerStream();

By calling powerStream() data will be continuously streamed the model app/TwitterPowerTrackerStream.php

public static function getPowerTrack($data)
{
    //do some stuff with incoming $data
}

For force stopping the live streaming

//return "exit" in the function "app/TwitterPowerTrackerStream.php"

public static function getPowerTrack($data)
{
    //some code
    if(//some condition)
    {
      return "exit";
    }
}

********* Awaiting Brilliant Contributions for this simple Package **********

License

The unniks/twitter-powertracker is open-sourced software licensed under the [MIT license]

twitter-enterprise-for-laravel