forked from KamilaBorowska/PSDevBot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
showdown.js
132 lines (110 loc) · 3.77 KB
/
showdown.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
"use strict"
var MINUTE = 60000
var EventEmitter = require('events')
var format = require('python-format')
var WebSocketClient = require('websocket').client
var request = require('request')
function objectHas(object, key) {
return Object.prototype.hasOwnProperty.call(object, key)
}
function copySafely(target, configuration, keys) {
var added = 0
for (var key in configuration) {
if (!objectHas(configuration, key)) return
if (!objectHas(keys, key)) {
throw new TypeError(format("Unrecognized key '{}'", key))
}
target[key] = configuration[key]
added += 1
}
if (added !== Object.keys(keys).length) {
var message = format("Expected {} keys, got {}.", keys.size, added)
throw new TypeError(message)
}
}
function Showdown(configuration) {
copySafely(this, configuration, Showdown.keys)
}
Showdown.keys = {
server: true,
serverport: true,
serverid: true,
nickname: true,
password: true,
room: true
}
Showdown.commands = new Map([
['challstr', 'finalize'],
['c:', 'onChatMessage'],
])
Showdown.prototype = new EventEmitter
Showdown.prototype.connect = function connect() {
var connection = new WebSocketClient
connection.on('connectFailed', this.onConnectionFailure.bind(this))
connection.on('connect', this.onConnect.bind(this))
var connectionString = this.getConnectionString()
connection.connect(connectionString, [])
}
Showdown.prototype.getConnectionString = function getConnectionString() {
return format(
'ws://{}:{}/showdown/websocket',
this.server,
this.serverport
)
}
Showdown.prototype.onConnectionFailure = function onConnectionFailure(error) {
console.error('Error occured (%s), will connect in a minute', error)
setTimeout(this.connect.bind(this), MINUTE)
}
Showdown.prototype.onConnect = function onConnect(connection) {
this.connection = connection
var onConnectionFailure = this.onConnectionFailure.bind(this)
connection.on('error', onConnectionFailure)
connection.on('close', onConnectionFailure)
connection.on('message', this.onMessage.bind(this))
console.info('Connected to Showdown server')
}
Showdown.prototype.onMessage = function onMessage(message) {
if (message.type !== 'utf8') return
this.parseMessage(message.utf8Data)
}
Showdown.prototype.parseMessage = function parseMessage(message) {
console.log(message)
var parts = message.split('|')
if (Showdown.commands.has(parts[1])) {
this[Showdown.commands.get(parts[1])](parts)
}
}
Showdown.prototype.finalize = function finalize(parts) {
var id = parts[2]
var str = parts[3]
var nickname = this.nickname
var password = this.password
request.post(
format('https://play.pokemonshowdown.com/~~{}/action.php', this.serverid),
{
form: {
act: 'login',
challengekeyid: id,
challenge: str,
name: nickname,
pass: password
}
},
function finish(error, response, body) {
var result = JSON.parse(body.replace(/^]/, ""))
var assertion = result.assertion
var command = format('|/trn {},0,{}', nickname, assertion)
this.connection.send(command)
setTimeout(function() {this.connection.send('|/join ' + this.room)}.bind(this), 2000)
setTimeout(function() {this.connection.send('|/away')}.bind(this), 4000)
}.bind(this)
)
}
Showdown.prototype.onChatMessage = function onChatMessage(parts) {
this.emit('message', parts[3], parts.slice(4).join('|'))
}
Showdown.prototype.report = function report(message) {
this.connection.send(format('{}|{}', this.room, message))
}
module.exports = Showdown