-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.js
More file actions
executable file
·219 lines (189 loc) · 5.1 KB
/
main.js
File metadata and controls
executable file
·219 lines (189 loc) · 5.1 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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
#!/usr/bin/env node
const Conf = require('conf');
global.config = new Conf({ projectName: 'zelta' });
const {program} = require('commander');
const updateNotifier = require('update-notifier');
const pkg = require('./package.json');
program.version(`${pkg.version} (Code Blue) [Stable Release 2020]`);
const {register} = require('./interfaces/register');
const {login} = require('./interfaces/login');
const {logout} = require('./interfaces/logout');
const {createGroup} = require('./interfaces/create-group');
const {joinGrp} = require('./interfaces/join-group');
const {send} = require('./interfaces/send-msg');
const {inbox} = require('./interfaces/inbox');
const {inviteUser} = require('./interfaces/invite-user');
const {acceptInvite} = require('./interfaces/accept-invite');
const {kick} = require('./interfaces/kick-user');
const {setPrivate} = require('./interfaces/set-private');
const {setPublic} = require('./interfaces/set-public');
const {leave} = require('./interfaces/leave-group');
const {members} = require('./interfaces/list-members');
const {timezone} = require('./interfaces/timezone');
const {createRoom} = require('./interfaces/create-chat');
const {joinRoom} = require('./interfaces/join-chat');
const {typingEffect, typingDelay} = require('./interfaces/chat-animations');
const {chatRegion} = require('./interfaces/chat-region');
// Notify user about new updates
updateNotifier({pkg}).notify();
// Application server url
config.set('server-url', 'https://v1.zelta.gq');
// Username and token
if(config.get('username') === undefined && config.get('token') === undefined) {
config.set('username', null);
config.set('token', null);
}
// Live chat region
if(config.get('chat-url') === undefined) {
config.set('chat-url', 'http://eu.chat.zelta.gq');
}
// Chat animation
if(config.get('chat-animation') === undefined) {
config.set('chat-animation', false);
}
// Chat animation delay
if(config.get('typing-delay') === undefined) {
config.set('typing-delay', 115);
}
// -------- Commands --------
// Register
program
.command('register')
.description('Register a new username')
.action(() => {
register();
});
// Login
program
.command('login')
.description('Login')
.action(() => {
login();
});
// Logout
program
.command('logout')
.description('Logout')
.action(() => {
logout();
});
// Create Group
program
.command('group')
.description('Create a group')
.action(() => {
createGroup();
});
// Join Group
program
.command('join <group>')
.description('Join a group')
.action((group) => {
joinGrp(group);
});
// Send msg
program
.command('send')
.description('Send a message')
.action(() => {
send();
});
// Inbox
program
.command('inbox')
.description('View your inbox')
.action(() => {
inbox();
});
// Invite user to group
program
.command('invite <user> <group>')
.description('Invite a user to your group')
.action((user,group) => {
inviteUser(user,group);
});
// Accept an invite
program
.command('accept-invite <group>')
.description('Accept a group invitation')
.action((group) => {
acceptInvite(group);
});
// Kick user
program
.command('kick <user> <group>')
.description('Kick a group member')
.action((user, group) => {
kick(user,group);
});
// Change group access to private
program
.command('set-private <group>')
.description('Make a group private')
.action((group) => {
setPrivate(group);
});
// Change group access to public
program
.command('set-public <group>')
.description('Make a group public')
.action((group) => {
setPublic(group);
});
// Leave group
program
.command('leave <group>')
.description('Leave a group')
.action((group) => {
leave(group);
});
// List group members
program
.command('members <group>')
.description('List all the group members')
.action((group) => {
members(group);
});
// Configure local timezone
program
.command('timezone')
.description('Configure local timezone')
.action(() => {
timezone();
});
// Create chat room
program
.command('chatroom')
.description('Create a chat room')
.action(() => {
createRoom();
});
// Join chat room
program
.command('chat')
.description('Join a chat room')
.action(() => {
joinRoom();
});
// Enable or disable typing effect
program
.command('typing-effect <value>')
.description('Enable or disable chat typing effect')
.action((value) => {
typingEffect(value);
});
// Typing effect delay (typing speed)
program
.command('typing-delay <value>')
.description('Delay in milliseconds between typing each character when typing effect is on')
.action((value) => {
typingDelay(parseInt(value));
});
// Change chat server region
program
.command('region <value>')
.description('Set chat server region (default : europe)')
.action((region) => {
chatRegion(region);
});
program.parse(process.argv);