Skip to content
/ gnip Public
forked from demian85/gnip

Connect to Gnip streaming API and manage rules

License

Notifications You must be signed in to change notification settings

Tagboard/gnip

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NodeJS Gnip module

Connect to Gnip streaming API and manage rules. You must have a Gnip account with any data source available, like Twitter Power Track.

Currenly, this module only supports JSON activity stream format, so you must enable data normalization in your admin panel.

Gnip.Stream

This class is an EventEmitter and allows you to connect to the stream and start receiving data.

Constructor options

options.timeout

As requested in the Gnip docs (http://support.gnip.com/apis/powertrack/api_reference.html), this option in the constructor allows us to set a read timeout in the client. The recommended value is >=30 seconds, so the constructor will throw an error if a smaller timeout is provided. The default value for this option is 35 seconds.

API methods

stream.start()

Connect to the stream and start receiving data. At this point you should have registered at least one event listener for any of these events: 'data', 'object' or 'tweet'.

stream.end()

Terminates the connection.

Events

ready

Emitted when the connection has been successfully established

data

Emitted for each data chunk (decompressed)

error

Emitted when any type of error occurs. An error is raised if the response status code is not 20x. {error: String} objects are also checked here.

object

Emitted for each JSON object.

tweet

Emitted for each tweet.

delete

Emitted for each deleted tweet.

end

Emitted when the connection is terminated. This event is always emitted when an error occurs and the connection is closed.

Gnip.Rules

This class allows you to manage an unlimited number of tracking rules.

API methods

rules.getAll(Function callback)

Get cached rules.

rules.update(Array rules, Function callback)

Creates or replaces the live tracking rules.
Rules are sent in batches of options.batchSize, so you can pass an unlimited number of rules.
The current tracking rules are stored in a local JSON file so you can update the existing rules efficiently without having to remove them all. The callback receives an object as the 2nd argument and contains the number of added and deleted rules.

rules.clearCache(Function callback)

Clears cached rules.

The following methods uses Gnip API directly and ignores the local cache. Avoid usage if you are working with too many rules!

rules.live.update(Array rules, Function callback)

rules.live.add(Array rules, Function callback)

rules.live.remove(Array rules, Function callback)

rules.live.getAll(Function callback)

rules.live.removeAll(Function callback)

Installation

npm install gnip

Example Usage

var Gnip = require('gnip');

var stream = new Gnip.Stream({
	url : 'https://stream.gnip.com:443/accounts/xxx/publishers/twitter/streams/track/prod.json',
	user : 'xxx',
	password : 'xxx',
    client: xxx // optional
});
stream.on('ready', function() {
	console.log('Stream ready!');
});
stream.on('tweet', function(tweet) {
	console.log(tweet);
});
stream.on('error', function(err) {
	console.error(err);
});

var rules = new Gnip.Rules({
	url : 'https://api.gnip.com:443/accounts/xxx/publishers/twitter/streams/track/prod/rules.json',
	user : 'xxx',
	password : 'xxx',
	batchSize: 1234 // not required, defaults to 5000
});

var newRules = [
	'#hashtag', 
	'keyword', 
	'@user',
	{value: 'keyword as object'},
	{value: '@demianr85', tag: 'rule tag'}
];

rules.update(newRules, function(err) {
	if (err) throw err;
	stream.start();
});

More details and tests soon...

About

Connect to Gnip streaming API and manage rules

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%