Merge in template

This commit is contained in:
benji7425 2017-08-12 01:44:35 +01:00
parent f56c8454fc
commit 5428e71f01
5 changed files with 70 additions and 6 deletions

5
.gitignore vendored
View File

@ -1,7 +1,6 @@
# Project specific
token.json
### Discord bots ####
guilds.json
token.json
log
### Node ###

3
CHANGELOG.md Normal file
View File

@ -0,0 +1,3 @@
# Changelog
## Unreleased

6
app/config.json Normal file
View File

@ -0,0 +1,6 @@
{
"saveIntervalSec": 60,
"commands": {
"version": "version"
}
}

55
app/index.js Normal file
View File

@ -0,0 +1,55 @@
//node imports
const FileSystem = require("fs");
//external lib imports
const JsonFile = require("jsonfile");
//my imports
const DiscordUtil = require("discordjs-util");
//global vars
const SAVE_FILE = "./guilds.json";
module.exports = (client) => {
const config = require("./config.json");
const guildsData = FileSystem.existsSync(SAVE_FILE) ? fromJSON(JsonFile.readFileSync(SAVE_FILE)) : {};
setInterval(() => writeFile(guildsData), config.saveIntervalSec * 1000);
client.on("message", message => {
if (message.author.id !== client.user.id) { //check the bot isn't triggering itself
if (message.channel.type === "dm")
HandleMessage.DM(client, config, message);
else if (message.channel.type === "text" && message.member)
HandleMessage.Text(client, config, message, guildsData);
}
});
};
const HandleMessage = {
DM: (client, config, message) => {
message.reply("This bot does not have any handling for direct messages. To learn more or get help please visit http://benji7425.github.io, or join my Discord server here: https://discord.gg/SSkbwSJ");
},
Text: (client, config, message, guildsData) => {
//handle admins invoking commands
if (message.content.startsWith(message.guild.me.toString()) //user is @mention-ing the bot
&& message.member.permissions.has("ADMINISTRATOR")) //user has admin perms
{
const params = message.content.split(" "); //split the message at the spaces
switch (params[1]) {
//add handling for different commands here
case config.commands.version:
message.reply("v" + require("../package.json").version);
break;
}
}
}
};
function writeFile(guildsData) {
JsonFile.writeFile(SAVE_FILE, guildsData, err => { if (err) DiscordUtil.dateError("Error writing file", err); });
}
function fromJSON(json) {
throw "Not implemented";
}

View File

@ -2,9 +2,10 @@
"name": "discord-bot-feed-linker",
"version": "2.0.0",
"description": "",
"main": "index.js",
"main": "app/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node wrapper.js"
},
"repository": {
"type": "git",