-
Notifications
You must be signed in to change notification settings - Fork 1
/
chatbot.js
executable file
·143 lines (116 loc) · 5.22 KB
/
chatbot.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
131
132
133
134
135
136
137
138
139
140
141
142
143
/*
Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with the License. A copy of the License is located at
http://aws.amazon.com/apache2.0/
or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
This file is what connects to chat and parses messages as they come along. The chat client connects via a
Web Socket to Twitch chat. The important part events are onopen and onmessage.
*/
var chatClient = function chatClient(options){
this.username = options.username;
this.password = options.password;
this.channel = options.channel;
this.server = 'irc-ws.chat.twitch.tv';
this.port = 443;
}
chatClient.prototype.open = function open(){
this.webSocket = new WebSocket('wss://' + this.server + ':' + this.port + '/', 'irc');
this.webSocket.onmessage = this.onMessage.bind(this);
this.webSocket.onerror = this.onError.bind(this);
this.webSocket.onclose = this.onClose.bind(this);
this.webSocket.onopen = this.onOpen.bind(this);
};
chatClient.prototype.onError = function onError(message){
console.log('Error: ' + message);
};
/* This is an example of a leaderboard scoring system. When someone sends a message to chat, we store
that value in local storage. It will show up when you click Populate Leaderboard in the UI.
*/
chatClient.prototype.onMessage = function onMessage(message){
if(message !== null){
var parsed = this.parseMessage(message.data);
if(parsed !== null){
if(parsed.command === "PRIVMSG") {
userPoints = localStorage.getItem(parsed.username);
if(userPoints === null){
localStorage.setItem(parsed.username, 10);
}
else {
localStorage.setItem(parsed.username, parseFloat(userPoints) + 0.25);
}
} else if(parsed.command === "PING") {
this.webSocket.send("PONG :" + parsed.message);
}
}
}
};
chatClient.prototype.onOpen = function onOpen(){
var socket = this.webSocket;
if (socket !== null && socket.readyState === 1) {
console.log('Connecting and authenticating...');
socket.send('CAP REQ :twitch.tv/tags twitch.tv/commands twitch.tv/membership');
socket.send('PASS ' + this.password);
socket.send('NICK ' + this.username);
socket.send('JOIN ' + this.channel);
}
};
chatClient.prototype.onClose = function onClose(){
console.log('Disconnected from the chat server.');
};
chatClient.prototype.close = function close(){
if(this.webSocket){
this.webSocket.close();
}
};
/* This is an example of an IRC message with tags. I split it across
multiple lines for readability. The spaces at the beginning of each line are
intentional to show where each set of information is parsed. */
//@badges=global_mod/1,turbo/1;color=#0D4200;display-name=TWITCH_UserNaME;emotes=25:0-4,12-16/1902:6-10;mod=0;room-id=1337;subscriber=0;turbo=1;user-id=1337;user-type=global_mod
// :twitch_username!twitch_username@twitch_username.tmi.twitch.tv
// PRIVMSG
// #channel
// :Kappa Keepo Kappa
chatClient.prototype.parseMessage = function parseMessage(rawMessage) {
var parsedMessage = {
message: null,
tags: null,
command: null,
original: rawMessage,
channel: null,
username: null
};
if(rawMessage[0] === '@'){
var tagIndex = rawMessage.indexOf(' '),
userIndex = rawMessage.indexOf(' ', tagIndex + 1),
commandIndex = rawMessage.indexOf(' ', userIndex + 1),
channelIndex = rawMessage.indexOf(' ', commandIndex + 1),
messageIndex = rawMessage.indexOf(':', channelIndex + 1);
parsedMessage.tags = rawMessage.slice(0, tagIndex);
parsedMessage.username = rawMessage.slice(tagIndex + 2, rawMessage.indexOf('!'));
parsedMessage.command = rawMessage.slice(userIndex + 1, commandIndex);
parsedMessage.channel = rawMessage.slice(commandIndex + 1, channelIndex);
parsedMessage.message = rawMessage.slice(messageIndex + 1);
} else if(rawMessage.startsWith("PING")) {
parsedMessage.command = "PING";
parsedMessage.message = rawMessage.split(":")[1];
}
return parsedMessage;
}
/* Builds out the top 10 leaderboard in the UI using a jQuery template. */
function buildLeaderboard(){
var chatKeys = Object.keys(localStorage),
outputTemplate = $('#entry-template').html(),
leaderboard = $('.leaderboard-output'),
sortedData = chatKeys.sort(function(a,b){
return localStorage[b]-localStorage[a]
});
leaderboard.empty();
for(var i = 0; i < 10; i++){
var viewerName = sortedData[i],
template = $(outputTemplate);
template.find('.rank').text(i + 1);
template.find('.user-name').text(viewerName);
template.find('.user-points').text(localStorage[viewerName]);
leaderboard.append(template);
}
}