forked from roerohan/Sam-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
185 lines (136 loc) · 4.18 KB
/
index.js
File metadata and controls
185 lines (136 loc) · 4.18 KB
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
const api = require(`./api.js`);
const commands = require(`./commands.js`);
const customStrings = require(`./strings`)
// Add user
// Add transaction
// View users
// View transactions
// View for specific user
// Finite State Machine
api.on(`message`, async (message) => {
console.log(message);
try {
var user = getUser(message);
if (message.from.is_bot) {
return;
}
if (message.text === `/start`) {
if (await commands.checkUserRegistered(user)) {
api.sendMessage({
chat_id: message.chat.id,
text: customStrings.welcomeBack,
reply_markup: JSON.stringify({
keyboard: customStrings.commandList,
one_time_keyboard: true,
resize_keyboard: true
})
})
}
} else if (message.reply_to_message && message.reply_to_message.from.is_bot) {
if (/cancel/i.test(message.text)) {
api.sendMessage({
chat_id: message.chat.id,
text: customStrings.actionAborted,
});
return;
}
if (message.reply_to_message.text === customStrings.askName) {
if (await addUser(user, message)) {
api.sendMessage({
chat_id: message.chat.id,
text: customStrings.userAdded
});
} else {
api.sendMessage({
chat_id: message.chat.id,
text: customStrings.nameExists
});
}
} else if (message.reply_to_message.text === customStrings.askNameTransaction) {
// input
api.sendMessage({
chat_id: message.chat.id,
text: customStrings.askAmount,
reply_markup: JSON.stringify({
force_reply: true
})
});
} else if (message.reply_to_message.text === customStrings.askAmount) {
// input
api.sendMessage({
chat_id: message.chat.id,
text: customStrings.askDescription,
reply_markup: JSON.stringify({
force_reply: true
})
});
} else if (message.reply_to_message.text === customStrings.askDescription) {
// input
api.sendMessage({
chat_id: message.chat.id,
text: customStrings.transactionAdded,
});
}
} else {
if (/hey/i.test(message.text) || /hello/i.test(message.text) || /hi/i.test(message.text) || /sup/i.test(message.text)) {
api.sendMessage({
chat_id: message.chat.id,
text: customStrings.sayHello,
});
} else if (/add user/i.test(message.text)) {
api.sendMessage({
chat_id: message.chat.id,
text: customStrings.askName,
reply_markup: JSON.stringify({
force_reply: true
})
});
} else if (/add transaction/i.test(message.text)) {
api.sendMessage({
chat_id: message.chat.id,
text: customStrings.askNameTransaction,
reply_markup: JSON.stringify({
force_reply: true
})
});
} else if (/view users/i.test(message.text)) {
let reply = await commands.viewUsers(user);
api.sendMessage({
chat_id: message.chat.id,
text: reply,
});
} else if (/view transactions/i.test(message.text)) {
let reply = await commands.viewTransactions(user);
api.sendMessage({
chat_id: message.chat.id,
text: reply,
});
}
// else if (/remove user/i.test(message.text)) {
// TODO: remove user
// } else if (/add budget/i.test(message.text)) {
// TODO: add budget functionality
// }
else {
await api.sendMessage({
chat_id: message.chat.id,
text: customStrings.understandFailure,
reply_markup: JSON.stringify({
keyboard: customStrings.commandList,
one_time_keyboard: true,
resize_keyboard: true
})
});
}
}
} catch (e) {
console.log(`Error: ${e}`)
}
});
getUser = (message) => {
var user = {};
user.username = message.from.username;
user.name = `${message.from.first_name} ${message.from.last_name}`
user.chat_id = message.from.id;
return user;
}