init commit

This commit is contained in:
zino
2021-02-16 23:07:41 +01:00
parent ec3fc78e0f
commit 12b4ef5db4
5000 changed files with 2596132 additions and 0 deletions

View File

@@ -0,0 +1,145 @@
/*
* Copyright (C) 2016-2020 phantombot.github.io/PhantomBot
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* Script : clipHandler.js
* Purpose : Configures the automatic display of clips in chat and captures the events from Twitch.
*/
(function () {
var toggle = $.getSetIniDbBoolean('clipsSettings', 'toggle', false),
message = $.getSetIniDbString('clipsSettings', 'message', '(name) created a clip: (url)');
/*
* @function reloadClips
*/
function reloadClips() {
toggle = $.getIniDbBoolean('clipsSettings', 'toggle', false);
message = $.getIniDbString('clipsSettings', 'message', '(name) created a clip: (url)');
}
/*
* @event twitchClip
*/
$.bind('twitchClip', function (event) {
var creator = event.getCreator(),
url = event.getClipURL(),
title = event.getClipTitle(),
s = message;
/* Even though the Core won't even query the API if this is false, we still check here. */
if (toggle === false) {
return;
}
if (s.match(/\(name\)/g)) {
s = $.replace(s, '(name)', creator);
}
if (s.match(/\(url\)/g)) {
s = $.replace(s, '(url)', url);
}
if (s.match(/\(title\)/g)) {
s = $.replace(s, '(title)', title);
}
if (s.match(/\(alert [,.\w\W]+\)/g)) {
var filename = s.match(/\(alert ([,.\w\W]+)\)/)[1];
$.alertspollssocket.alertImage(filename);
s = (s + '').replace(/\(alert [,.\w\W]+\)/, '');
if (s == '') {
return null;
}
}
if (s.match(/\(playsound\s([a-zA-Z1-9_]+)\)/g)) {
if (!$.audioHookExists(s.match(/\(playsound\s([a-zA-Z1-9_]+)\)/)[1])) {
$.log.error('Could not play audio hook: Audio hook does not exist.');
return null;
}
$.alertspollssocket.triggerAudioPanel(s.match(/\(playsound\s([a-zA-Z1-9_]+)\)/)[1]);
s = $.replace(s, s.match(/\(playsound\s([a-zA-Z1-9_]+)\)/)[0], '');
if (s == '') {
return null;
}
}
$.say(s);
});
/*
* @event command
*/
$.bind('command', function (event) {
var sender = event.getSender(),
command = event.getCommand(),
args = event.getArgs(),
argsString = event.getArguments(),
action = args[0];
/*
* @commandpath clipstoggle - Toggles the clips announcements.
*/
if (command.equalsIgnoreCase('clipstoggle')) {
toggle = !toggle;
$.setIniDbBoolean('clipsSettings', 'toggle', toggle);
$.say($.whisperPrefix(sender) + (toggle ? $.lang.get('cliphandler.toggle.on') : $.lang.get('cliphandler.toggle.off')));
}
/*
* @commandpath clipsmessage - Sets a message for when someone creates a clip.
*/
if (command.equalsIgnoreCase('clipsmessage')) {
if (action === undefined) {
$.say($.whisperPrefix(sender) + $.lang.get('cliphandler.message.usage'));
return;
}
message = argsString;
$.setIniDbString('clipsSettings', 'message', message);
$.say($.whisperPrefix(sender) + $.lang.get('cliphandler.message.set', message));
}
/*
* @commandpath lastclip - Displays information about the last clip captured.
*/
if (command.equalsIgnoreCase('lastclip')) {
var url = $.getIniDbString('streamInfo', 'last_clip_url', $.lang.get('cliphandler.noclip'));
$.say($.whisperPrefix(sender) + $.lang.get('cliphandler.lastclip', url));
}
/*
* @commandpath topclip - Displays the top clip from the past day.
*/
if (command.equalsIgnoreCase('topclip')) {
var url = $.getIniDbString('streamInfo', 'most_viewed_clip_url', $.lang.get('cliphandler.noclip'));
$.say($.whisperPrefix(sender) + $.lang.get('cliphandler.topclip', url));
}
});
/*
* @event initReady
*/
$.bind('initReady', function () {
$.registerChatCommand('./handlers/clipHandler.js', 'clipstoggle', 1);
$.registerChatCommand('./handlers/clipHandler.js', 'clipsmessage', 1);
$.registerChatCommand('./handlers/clipHandler.js', 'lastclip', 7);
$.registerChatCommand('./handlers/clipHandler.js', 'topclip', 7);
});
$.reloadClips = reloadClips;
})();