mirror of
https://github.com/LBRYFoundation/lbry-wunderbot.git
synced 2025-08-23 17:47:27 +00:00
formatted code
This commit is contained in:
parent
67b12a1e46
commit
d31f839039
5 changed files with 100 additions and 83 deletions
|
@ -1,10 +1,10 @@
|
||||||
let config = require("config");
|
let config = require('config');
|
||||||
let permRanks = config.get("moderation");
|
let permRanks = config.get('moderation');
|
||||||
let speechBotChannels = config.get("speechbot");
|
let speechBotChannels = config.get('speechbot');
|
||||||
let priceBotChannels = config.get("pricebot");
|
let priceBotChannels = config.get('pricebot');
|
||||||
let ExcludedSpam = config.get("spamdetection");
|
let ExcludedSpam = config.get('spamdetection');
|
||||||
let hashBotChannels = config.get("hashbot");
|
let hashBotChannels = config.get('hashbot');
|
||||||
let statsBotChannels = config.get("statsbot");
|
let statsBotChannels = config.get('statsbot');
|
||||||
|
|
||||||
// Checks if user is allowed to use a command only for mods/team members
|
// Checks if user is allowed to use a command only for mods/team members
|
||||||
exports.hasPerms = function(msg) {
|
exports.hasPerms = function(msg) {
|
||||||
|
@ -13,7 +13,7 @@ exports.hasPerms = function(msg) {
|
||||||
|
|
||||||
// Check if command was sent in dm
|
// Check if command was sent in dm
|
||||||
exports.inPrivate = function(msg) {
|
exports.inPrivate = function(msg) {
|
||||||
return msg.channel.type == "dm";
|
return msg.channel.type == 'dm';
|
||||||
};
|
};
|
||||||
|
|
||||||
// Checks if Message was sent from a channel in speechBot Channels list
|
// Checks if Message was sent from a channel in speechBot Channels list
|
||||||
|
|
|
@ -13,25 +13,25 @@ exports.lbrylink = function(bot, msg, suffix) {
|
||||||
if (link != -1) {
|
if (link != -1) {
|
||||||
var text = msg.content.replace("lbry://", "https://open.lbry.io/");
|
var text = msg.content.replace("lbry://", "https://open.lbry.io/");
|
||||||
var message = GetWordByPos(text, link);
|
var message = GetWordByPos(text, link);
|
||||||
if (ResponseDebug == "true") {
|
if (ResponseDebug == "true") {
|
||||||
console.log("text = " + text);
|
console.log("text = " + text);
|
||||||
console.log("message = " + message);
|
console.log("message = " + message);
|
||||||
}
|
}
|
||||||
if (message === "https://open.lbry.io/") {
|
if (message === "https://open.lbry.io/") {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (message.search(">") != -1) {
|
if (message.search(">") != -1) {
|
||||||
parsename = message.split(">").pop();
|
parsename = message.split(">").pop();
|
||||||
if (parsename.search("/") == -1){
|
if (parsename.search("/") == -1) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
newname = message.split("/").pop();
|
newname = message.split("/").pop();
|
||||||
message = "https://open.lbry.io/" + newname;
|
message = "https://open.lbry.io/" + newname;
|
||||||
if (ResponseDebug == "true") {
|
if (ResponseDebug == "true") {
|
||||||
console.log("Username Provided!");
|
console.log("Username Provided!");
|
||||||
console.log("parsename = " + parsename);
|
console.log("parsename = " + parsename);
|
||||||
console.log("newname = " + newname);
|
console.log("newname = " + newname);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
var newname = message.replace("https://open.lbry.io/", "");
|
var newname = message.replace("https://open.lbry.io/", "");
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,7 +39,8 @@ exports.releasenotes = {
|
||||||
timestamp: releasedate,
|
timestamp: releasedate,
|
||||||
author: {
|
author: {
|
||||||
name: "Lbry-app Release Notes for " + releasename,
|
name: "Lbry-app Release Notes for " + releasename,
|
||||||
icon_url: "http://www.pngall.com/wp-content/uploads/2016/04/Github-PNG-Image.png"
|
icon_url:
|
||||||
|
"http://www.pngall.com/wp-content/uploads/2016/04/Github-PNG-Image.png"
|
||||||
},
|
},
|
||||||
footer: {
|
footer: {
|
||||||
icon_url: "https://i.imgur.com/yWf5USu.png",
|
icon_url: "https://i.imgur.com/yWf5USu.png",
|
||||||
|
@ -58,9 +59,12 @@ exports.releasenotes = {
|
||||||
msg.author.send(message);
|
msg.author.send(message);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
message = releasemessage.trim().split("###").filter(function(n) {
|
message = releasemessage
|
||||||
return n !== "";
|
.trim()
|
||||||
});
|
.split("###")
|
||||||
|
.filter(function(n) {
|
||||||
|
return n !== "";
|
||||||
|
});
|
||||||
releasemessage1 = message[0];
|
releasemessage1 = message[0];
|
||||||
releasemessage2 = message[1];
|
releasemessage2 = message[1];
|
||||||
releasemessage3 = message[2];
|
releasemessage3 = message[2];
|
||||||
|
@ -75,7 +79,8 @@ exports.releasenotes = {
|
||||||
timestamp: releasedate,
|
timestamp: releasedate,
|
||||||
author: {
|
author: {
|
||||||
name: "Lbry-app Release Notes for " + releasename,
|
name: "Lbry-app Release Notes for " + releasename,
|
||||||
icon_url: "http://www.pngall.com/wp-content/uploads/2016/04/Github-PNG-Image.png"
|
icon_url:
|
||||||
|
"http://www.pngall.com/wp-content/uploads/2016/04/Github-PNG-Image.png"
|
||||||
},
|
},
|
||||||
footer: {
|
footer: {
|
||||||
icon_url: "https://i.imgur.com/yWf5USu.png",
|
icon_url: "https://i.imgur.com/yWf5USu.png",
|
||||||
|
@ -89,7 +94,8 @@ exports.releasenotes = {
|
||||||
color: 7976557,
|
color: 7976557,
|
||||||
timestamp: releasedate,
|
timestamp: releasedate,
|
||||||
author: {
|
author: {
|
||||||
icon_url: "http://www.pngall.com/wp-content/uploads/2016/04/Github-PNG-Image.png"
|
icon_url:
|
||||||
|
"http://www.pngall.com/wp-content/uploads/2016/04/Github-PNG-Image.png"
|
||||||
},
|
},
|
||||||
footer: {
|
footer: {
|
||||||
icon_url: "https://i.imgur.com/yWf5USu.png",
|
icon_url: "https://i.imgur.com/yWf5USu.png",
|
||||||
|
@ -103,7 +109,8 @@ exports.releasenotes = {
|
||||||
color: 7976557,
|
color: 7976557,
|
||||||
timestamp: releasedate,
|
timestamp: releasedate,
|
||||||
author: {
|
author: {
|
||||||
icon_url: "http://www.pngall.com/wp-content/uploads/2016/04/Github-PNG-Image.png"
|
icon_url:
|
||||||
|
"http://www.pngall.com/wp-content/uploads/2016/04/Github-PNG-Image.png"
|
||||||
},
|
},
|
||||||
footer: {
|
footer: {
|
||||||
icon_url: "https://i.imgur.com/yWf5USu.png",
|
icon_url: "https://i.imgur.com/yWf5USu.png",
|
||||||
|
@ -117,7 +124,8 @@ exports.releasenotes = {
|
||||||
color: 7976557,
|
color: 7976557,
|
||||||
timestamp: releasedate,
|
timestamp: releasedate,
|
||||||
author: {
|
author: {
|
||||||
icon_url: "http://www.pngall.com/wp-content/uploads/2016/04/Github-PNG-Image.png"
|
icon_url:
|
||||||
|
"http://www.pngall.com/wp-content/uploads/2016/04/Github-PNG-Image.png"
|
||||||
},
|
},
|
||||||
footer: {
|
footer: {
|
||||||
icon_url: "https://i.imgur.com/yWf5USu.png",
|
icon_url: "https://i.imgur.com/yWf5USu.png",
|
||||||
|
@ -131,7 +139,8 @@ exports.releasenotes = {
|
||||||
color: 7976557,
|
color: 7976557,
|
||||||
timestamp: releasedate,
|
timestamp: releasedate,
|
||||||
author: {
|
author: {
|
||||||
icon_url: "http://www.pngall.com/wp-content/uploads/2016/04/Github-PNG-Image.png"
|
icon_url:
|
||||||
|
"http://www.pngall.com/wp-content/uploads/2016/04/Github-PNG-Image.png"
|
||||||
},
|
},
|
||||||
footer: {
|
footer: {
|
||||||
icon_url: "https://i.imgur.com/yWf5USu.png",
|
icon_url: "https://i.imgur.com/yWf5USu.png",
|
||||||
|
|
|
@ -23,33 +23,39 @@ exports.addrole = {
|
||||||
//console.log(rolelist.allowedroles);
|
//console.log(rolelist.allowedroles);
|
||||||
//console.log(config.get('allowedroles'));
|
//console.log(config.get('allowedroles'));
|
||||||
if (suffix) {
|
if (suffix) {
|
||||||
if (rolelist.allowedroles.includes(suffix)) {
|
if (rolelist.allowedroles.includes(suffix)) {
|
||||||
//console.log('Role is in allowed roles.');
|
//console.log('Role is in allowed roles.');
|
||||||
//console.log('Role to add: ' + newrole);
|
//console.log('Role to add: ' + newrole);
|
||||||
if (!msg.member.roles.find("name", suffix)) {
|
if (!msg.member.roles.find("name", suffix)) {
|
||||||
msg.member
|
msg.member
|
||||||
.addRole(newrole)
|
.addRole(newrole)
|
||||||
.then(
|
.then(
|
||||||
msg.channel.send(
|
msg.channel.send(
|
||||||
msg.member + " has been added to the " + suffix + " role!"
|
msg.member + " has been added to the " + suffix + " role!"
|
||||||
)
|
)
|
||||||
);
|
|
||||||
//console.log('Added role')
|
|
||||||
//msg.channel.send(msg.member + ' has been added to the ' + suffix + ' role!');
|
|
||||||
} else {
|
|
||||||
msg.channel.send(
|
|
||||||
"It seems that you already have that role! Try removing it first with the " + botconfig.prefix + "delrole command!"
|
|
||||||
);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
msg.channel.send(
|
|
||||||
"That role isn't one you can add yourself too! Please run the " + botconfig.prefix + "roles command to find out which ones are allowed."
|
|
||||||
);
|
);
|
||||||
|
//console.log('Added role')
|
||||||
|
//msg.channel.send(msg.member + ' has been added to the ' + suffix + ' role!');
|
||||||
|
} else {
|
||||||
|
msg.channel.send(
|
||||||
|
"It seems that you already have that role! Try removing it first with the " +
|
||||||
|
botconfig.prefix +
|
||||||
|
"delrole command!"
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
msg.channel.send(
|
||||||
|
"That role isn't one you can add yourself too! Please run the " +
|
||||||
|
botconfig.prefix +
|
||||||
|
"roles command to find out which ones are allowed."
|
||||||
|
);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
msg.channel.send (
|
msg.channel.send(
|
||||||
"Please specify a role. Type " + botconfig.prefix + "roles to see which you may add!"
|
"Please specify a role. Type " +
|
||||||
)
|
botconfig.prefix +
|
||||||
|
"roles to see which you may add!"
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -64,29 +70,35 @@ exports.delrole = {
|
||||||
//console.log(msg);
|
//console.log(msg);
|
||||||
//console.log('Printing Suffix! ' + suffix);
|
//console.log('Printing Suffix! ' + suffix);
|
||||||
if (suffix) {
|
if (suffix) {
|
||||||
if (rolelist.allowedroles.includes(suffix)) {
|
if (rolelist.allowedroles.includes(suffix)) {
|
||||||
if (msg.member.roles.find("name", suffix)) {
|
if (msg.member.roles.find("name", suffix)) {
|
||||||
msg.member
|
msg.member
|
||||||
.removeRole(oldrole)
|
.removeRole(oldrole)
|
||||||
.then(
|
.then(
|
||||||
msg.channel.send(
|
msg.channel.send(
|
||||||
msg.member + " has been removed from the " + suffix + " role!"
|
msg.member + " has been removed from the " + suffix + " role!"
|
||||||
)
|
)
|
||||||
);
|
|
||||||
} else {
|
|
||||||
msg.channel.send(
|
|
||||||
"You don't seem to have that role! Try adding it first with the " + botconfig.prefix + "addrole command!"
|
|
||||||
);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
msg.channel.send(
|
|
||||||
"That role isn't one you can add yourself too! Please run the " + botconfig.prefix + "roles command to find out which ones are allowed."
|
|
||||||
);
|
);
|
||||||
|
} else {
|
||||||
|
msg.channel.send(
|
||||||
|
"You don't seem to have that role! Try adding it first with the " +
|
||||||
|
botconfig.prefix +
|
||||||
|
"addrole command!"
|
||||||
|
);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
msg.channel.send(
|
msg.channel.send(
|
||||||
"Please specify a role. Type " + botconfig.prefix + "roles to see which you may add!"
|
"That role isn't one you can add yourself too! Please run the " +
|
||||||
)
|
botconfig.prefix +
|
||||||
|
"roles command to find out which ones are allowed."
|
||||||
|
);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
msg.channel.send(
|
||||||
|
"Please specify a role. Type " +
|
||||||
|
botconfig.prefix +
|
||||||
|
"roles to see which you may add!"
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
"use strict";
|
'use strict';
|
||||||
|
|
||||||
const fs = require("fs"),
|
const fs = require('fs'),
|
||||||
path = require("path");
|
path = require('path');
|
||||||
|
|
||||||
function getPlugins(srcpath) {
|
function getPlugins(srcpath) {
|
||||||
return fs.readdirSync(srcpath);
|
return fs.readdirSync(srcpath);
|
||||||
}
|
}
|
||||||
let plugin_directory = path.join(__dirname, "modules");
|
let plugin_directory = path.join(__dirname, 'modules');
|
||||||
let plugins = getPlugins(plugin_directory);
|
let plugins = getPlugins(plugin_directory);
|
||||||
|
|
||||||
exports.init = function init() {
|
exports.init = function init() {
|
||||||
|
@ -14,7 +14,7 @@ exports.init = function init() {
|
||||||
};
|
};
|
||||||
|
|
||||||
function load_plugins() {
|
function load_plugins() {
|
||||||
const dbot = require("./bot.js");
|
const dbot = require('./bot.js');
|
||||||
let commandCount = 0;
|
let commandCount = 0;
|
||||||
let otherFunc = 0;
|
let otherFunc = 0;
|
||||||
for (let i = 0; i < plugins.length; i++) {
|
for (let i = 0; i < plugins.length; i++) {
|
||||||
|
@ -25,7 +25,7 @@ function load_plugins() {
|
||||||
console.log(`Improper setup of the '${plugins[i]}' plugin. : ${err}`);
|
console.log(`Improper setup of the '${plugins[i]}' plugin. : ${err}`);
|
||||||
}
|
}
|
||||||
if (plugin) {
|
if (plugin) {
|
||||||
if ("commands" in plugin) {
|
if ('commands' in plugin) {
|
||||||
for (let j = 0; j < plugin.commands.length; j++) {
|
for (let j = 0; j < plugin.commands.length; j++) {
|
||||||
if (plugin.commands[j] in plugin) {
|
if (plugin.commands[j] in plugin) {
|
||||||
dbot.addCommand(plugin.commands[j], plugin[plugin.commands[j]]);
|
dbot.addCommand(plugin.commands[j], plugin[plugin.commands[j]]);
|
||||||
|
@ -33,7 +33,7 @@ function load_plugins() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ("custom" in plugin) {
|
if ('custom' in plugin) {
|
||||||
for (let j = 0; j < plugin.custom.length; j++) {
|
for (let j = 0; j < plugin.custom.length; j++) {
|
||||||
if (plugin.custom[j] in plugin) {
|
if (plugin.custom[j] in plugin) {
|
||||||
dbot.addCustomFunc(plugin[plugin.custom[j]]);
|
dbot.addCustomFunc(plugin[plugin.custom[j]]);
|
||||||
|
@ -43,9 +43,5 @@ function load_plugins() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
console.log(
|
console.log(`Loaded ${dbot.commandCount()} chat commands and ${otherFunc} custom functions.`);
|
||||||
`Loaded ${dbot.commandCount()} chat commands and ${
|
|
||||||
otherFunc
|
|
||||||
} custom functions.`
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue