-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
130 lines (112 loc) · 3.94 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
const Eris = require('eris');
const fs = require('fs');
const path = require('path');
const config = require('./config');
const bot = new Eris(config.token);
const prefixes = config.prefixes || ['pkg '];
const fetch = require('node-fetch');
const shortcutRegex = /^(\w+)\/(\S+)/
const altShortcut = /(\S+)@(\w+)/
// first is prov/arg
// second is arg@prov
var providers = Object.create(null);
fs.readdirSync(path.resolve('./providers')).forEach(provider => {
let Provider = require(path.resolve('./providers', provider));
let p = new Provider();
providers[provider.substring(0, provider.length - 3)] = p;
console.log('loaded provider ' + provider);
});
bot.on('messageCreate', async msg => {
if (msg.author.bot) return;
let cprefix = prefixes.find(a => msg.content.startsWith(a));
if (!cprefix && !config.disableShortcuts) {
if (msg.channel.id === '110373943822540800') return; // disable in dbots #general
let provider, pak;
let re = shortcutRegex.exec(msg.content);
if (!re) {
re = altShortcut.exec(msg.content);
if (!re) return
provider = re[2]
pak = re[1]
} else {
provider = re[1];
pak = re[2];
}
let thing = [pak];
if (providers[provider]) {
console.log(`searching ${provider} for ${pak} via shortcut`)
await providers[provider].execute(msg, thing);
}
return;
}
if (!cprefix && config.disableShortcuts) return
let raw = msg.content.slice(cprefix.length).split(' ');
let provider = raw[0];
raw.shift();
let args = raw;
if (provider === 'help') {
let desc = 'Providers:';
Object.keys(providers).forEach(prov => {
desc += '\n**';
desc += prov;
desc += '** - Searches ';
desc += providers[prov].name;
});
desc += '\n\nProviders can be accessed via `provider/query`, `query@provider` or through `pkg provider query`, e.g. `npm/eris`, `eris@npm` or `pkg npm eris`. This only works at the start of your message EXCEPT for `query@provider`. If you wanted, you can say `The best library is eris@npm` and pkg will link it for you.'
await msg.channel.createMessage({embed: {
title: 'pkg Help',
description: desc,
color: 0xDBB551
}});
} else {
if (providers[provider]) {
console.log('searching ' + provider + ' for ' + args);
await providers[provider].execute(msg, args);
}
}
});
bot.on('connect', () => {
console.log('connected');
});
bot.on('ready', async () => {
console.log('ready');
await bot.editStatus('idle', {
type: 0,
name: `with packages | ${prefixes[0]}help`
});
await postStats();
});
bot.on('guildCreate', async () => {
await postStats();
});
bot.on('guildDelete', async () => {
await postStats();
});
bot.connect();
async function postStats() {
let dblEndpoint = 'https://discordbots.org/api/bots/' + bot.user.id + '/stats';
let dbotsEndpoint = 'https://discord.bots.gg/api/v1/bots/' + bot.user.id + '/stats';
let dboatsEndpoint = 'https://discord.boats/api/bot/' + bot.user.id;
let obj = {
server_count: bot.guilds.size
}
let obj2 = {
guildCount: bot.guilds.size
}
await fetch(dbotsEndpoint, {
method: 'POST',
body: JSON.stringify(obj2),
headers: { Authorization: config.apiKeys.dbots, 'Content-Type': 'application/json' }
});
await fetch(dblEndpoint, {
method: 'POST',
body: JSON.stringify(obj),
headers: { Authorization: config.apiKeys.dbl, 'Content-Type': 'application/json' }
});
await fetch(dboatsEndpoint, {
method: 'POST',
body: JSON.stringify(obj),
headers: { Authorization: config.apiKeys.dboats, 'Content-Type': 'application/json' }
});
console.log('stats posted');
}