-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
79 lines (68 loc) · 1.56 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/*
* npmawesome-bot
*
* Copyright(c) 2014 André König <[email protected]>
* MIT Licensed
*
*/
/**
* @author André König <[email protected]>
*
*/
'use strict';
var pkg = require('./package.json');
var Feed = require('./lib/').Feed;
var Twitter = require('./lib/').Twitter;
/**
* The #npmawesome Twitter bot :)
*
* Options: See path.join(__dirname, 'etc', 'template')
* for configuration options.
*
*/
function Bot (options) {
this.name = pkg.name;
this.version = pkg.version;
this.$$feed = Feed.create(options.feed);
this.$$twitter = Twitter.create(options.twitter);
}
/**
* Observes the #npmawesome feed for new items.
*
* @return {Feed (EventEmitter)}
*
*/
Bot.prototype.watch = function watch () {
return this.$$feed.watch();
};
/**
* Sends a pick to the Twitter API.
*
* @param {object} pick The "objectified" entry from the XML feed.
* @param {Function} callback
*
*
*/
Bot.prototype.tweet = function tweet (pick, callback) {
if ('function' === typeof pick) {
callback = pick;
pick = null;
}
if (!pick) {
return process.nextTick(function onTick () {
return callback(new Error('Please define a pick which should be send to twitter'));
});
}
// guid = uri; see the XML source for further information.
return this.$$twitter.tweet(pick.title + ' - ' + pick.guid , callback);
};
/**
* Creates an instance of the Bot object.
*
* @param {object} options
* @return {Bot}
*
*/
exports.create = function create (options) {
return new Bot(options);
};