-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdreamland.js
190 lines (153 loc) · 5.55 KB
/
dreamland.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
const fetch = require('node-fetch');
const {
cleanMessage,
wrapInCodeBlock,
escapeMarkdown,
} = require('./telegram/utils');
const api = 'https://dreamland.rocks/api';
//const api = 'http://localhost:1235';
let toDream = Promise.resolve();
const enqueueToDream = (url, options = {}) => {
const chain = async prev => {
try {
await prev;
const response = await fetch(url, options);
return response;
} catch (error) {
console.log('DreamLand error', error);
}
};
toDream = chain(toDream);
return toDream;
};
class DreamLand {
constructor(bottype) {
this.bottype = bottype;
this.token = process.env.DREAMLAND_TOKEN;
this.types = {
bug: { url: '/bug', title: '_Баг-репорт:_\n\n' },
typo: { url: '/typo', title: '_Друкарська помилка:_\n\n' },
idea: { url: '/idea', title: '_Ідея:_\n\n' },
nohelp: { url: '/nohelp', title: '_Відсутність розділу довідки:_\n\n' },
};
}
body(args) {
return { args, token: this.token, bottype: this.bottype };
}
options(args) {
return { method: 'POST', body: JSON.stringify(this.body(args)) };
}
async sendReport(type, args) {
const { url, title } = this.types[type];
const cleanedMessage = cleanMessage(args.message);
const wrappedMessage = wrapInCodeBlock(cleanedMessage);
const response = await enqueueToDream(`${api}${url}`, this.options(args));
let result;
if (response.ok) {
const { id } = args;
result =
`${title}` +
`*Відправник:* ${escapeMarkdown(id)}\n` +
`${wrappedMessage}` +
`${title.trim()} успішно надіслано.`;
} else {
result = `Цей користувач Telegram не повʼязан з жодним персонажем. Використовуй *'режим телеграм'* у грі.`;
}
return result;
}
async who() {
const args = { message: '' };
const response = await enqueueToDream(`${api}/who`, this.options(args));
const who = await response.json();
let result = '';
if (who.total === 0) {
result = 'У світі нікого немає!';
} else {
if (who.people && who.people.length > 0)
result +=
'\nЗараз у світі:\n\n' +
who.people
.map(
p =>
(p.name.ru || p.name.en) +
', ' +
p.race.ru +
(p.clan ? ', клан ' + p.clan.en : '')
)
.join('\n');
if (who.discord && who.discord.length > 0)
result +=
'\n\nЧують канали: ' +
who.discord.map(p => p.name.ru || p.name.en).join(', ');
result += '\n\nУсього гравців: ' + who.total + '.';
}
return wrapInCodeBlock(result);
}
async whois(playerName) {
const args = { message: playerName };
const response = await enqueueToDream(`${api}/whois`, this.options(args));
const whoisData = await response.json();
let result = '';
if (response.ok && !whoisData.error) {
const name = whoisData.name?.ru || whoisData.name?.en || playerName;
const race = whoisData.race || 'Невідомо';
const clan = whoisData.clan ? whoisData.clan.name : 'Нет';
const remorts = whoisData.remorts || '0';
const title = whoisData.clan?.title
? `Титул у клані: ${whoisData.clan.title}\n`
: '';
const capitalizedPlayerName =
name.charAt(0).toUpperCase() + name.slice(1);
result =
`Інформація про гравця:\n\n` +
`Ім'я: ${capitalizedPlayerName}\n` +
`Раса: ${race}\n` +
`Клан: ${clan}\n` +
title +
`Кількість перероджень: ${remorts}`;
} else if (whoisData.error === 'player not found') {
result = `Персонаж із таким ім'ям не знайдений`;
} else {
result = 'Сталася помилка, спробуйте пізніше.';
}
return wrapInCodeBlock(result);
}
async ooc(args) {
const response = await enqueueToDream(`${api}/ooc`, this.options(args));
let result;
if (response.ok) result = undefined;
else if (response.status === 404)
result =
'Ти не приєднаний до жодного персонажа. Зайди в DreamLand і набери config' +
this.bottype +
'.';
else result = 'Відбулася помилка, спробуй пізніше.';
return result;
}
async link(args) {
const response = await enqueueToDream(`${api}/link`, this.options(args));
let result;
if (response.ok) result = 'Успішно приєднано до персонажа.';
else if (response.status === 404)
result =
'Персонажу з таким секретним словом немає. Зайди в DreamLand і набери config' +
this.bottype +
'.';
else result = 'Відбулася помилка, спробуй пізніше.';
return result;
}
async admin(args) {
const response = await enqueueToDream(`${api}/admin`, this.options(args));
if (!response.ok)
return response.statusText;
const commandResult = await response.json();
return wrapInCodeBlock(commandResult.message);
}
async updateAll(args) {
await enqueueToDream(`${api}/update/all`, this.options(args));
}
async updateOne(args) {
await enqueueToDream(`${api}/update/one`, this.options(args));
}
}
module.exports = DreamLand;