This repository was archived by the owner on Feb 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbitbot.js
53 lines (43 loc) · 1.63 KB
/
bitbot.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
console.log("*Reggae horn noises*");
if (process.env.NODE_ENV === "develop") {
require("dotenv").config();
};
//creates a time inside a variable to tell the bot when to tweet
const schedule = require("node-schedule");
const rule = new schedule.RecurrenceRule();
rule.date = 14, 28
rule.hour = 15;
rule.minute = 08;
rule.tz = "Etc/GMT+5";
// Create an Twitter object to connect to Twitter API
var Twit = require('twit');
// Pulling keys from another file
var config = require('./config.js');
// Making a Twit object for connection to the API
var T = new Twit(config);
//setting up request
const request = require("request")
function bitThugs() {
//using request to get the JSON from 8bits.tv
request("https://8bits.ghost.io/ghost/api/v4/content/posts/?key=c068c4a242e0b818b4009c7ad9", { json: true }, (err, res, body) => {
if (err) {
return console.log(err);
} else {
// sorts JSON by date putting most recent date first.
body.posts.sort((a, b) => new Date(b.published_at) - new Date(a.published_at));
//create variable to be place into tweet later
const address = body.posts[0].url;
console.log("Hold on to your butts");
T.post('statuses/update', {
status: `Check out our most recent episode! ${address}`, function(err, data, response) {
if (err) {
console.log(err.message);
} else {
console.log(response.text);
}
}
})
}
})
}
const job1 = schedule.scheduleJob(rule, bitThugs);