-
Notifications
You must be signed in to change notification settings - Fork 20
/
app.js
359 lines (329 loc) · 10.9 KB
/
app.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
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
const firebase = require('firebase')
const firebaseConfig = require('./firebaseConf.json')
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
const firestore = firebase.firestore()
const auth = firebase.auth()
const chalk = require('chalk');
const fs = require('fs');
let allColors = "blue, black, red, green, orange, violet"
const open = require('open');
const axios = require('axios');
const {prompt} = require('inquirer')
const {styleCommandLog, styleErrorLog} = require('./LoggingModules/commandListLogging')
const userJsonFilePath = "./conf/user.json"
const configJsonFilePath = "./conf/config.json"
const hexCodes = require('./LoggingModules/hexCodes.json');
const getUserInfo = () => {
try {
signInIfUserExists().then(r => {
successLog(chalk.green(`User Email -> ${auth.currentUser.email}`))
stop()
}).catch(e => {
errorLog(e)
stop()
})
} catch (e) {
errorLog("Please login in before adding commands with 'acommands login'.")
}
}
const logout = (forced) => {
auth.signOut().then(() => {
if (!forced)
successLog("Logged out!")
else
errorLog("Login has expired. Please login again with 'acommands login' to continue.")
//deleting the user record
try {
fs.unlinkSync(userJsonFilePath)
stop()
//file removed
} catch (err) {
console.error(err)
}
}).catch(e => {
errorLog("Error logging out :(")
})
}
const signInIfUserExists = function (isVerbose) {
return new Promise((resolve, reject) => {
if (fs.existsSync(userJsonFilePath)) {
fs.readFile(userJsonFilePath, (err, userDataString) => {
if (err) {
reject("No logged in user detected. Please use 'acommands login' to login into your andronix account.")
console.error(err)
}
const userData = JSON.parse(userDataString.toString())
const user = new firebase.User(userData, userData.stsTokenManager, userData)
firebase.auth().updateCurrentUser(user).then(r => {
if (isVerbose) {
resolve("User Logged in with " + user.email)
} else {
resolve("")
}
}).catch(e => {
errorLog(e)
reject("Login failed")
})
})
} else {
reject("No logged in user detected. Please use 'acommands login' to login into your andronix account.")
}
})
}
const getCommands = (color) => {
let uid = auth.currentUser.uid
if (!color) {
//fetch all the commands
firestore.collection("users").doc(uid).collection("commands").orderBy("com").get().then(function (querySnapshot) {
let counter = 0
if (querySnapshot.size === 0) {
errorLog("No commands found.")
stop()
}
querySnapshot.forEach(function (doc) {
let commandData = Object.assign(doc.data(), {id: doc.id})
if (counter === 0) {
styleCommandLog(commandData, true)
++counter
} else
styleCommandLog(commandData, false)
})
stop()
})
.catch(function (error) {
errorLog("Error getting commands.");
});
} else {
let hex = hexCodes[color.toString().toLowerCase()]
if (hex) {
firestore.collection("users")
.doc(uid)
.collection("commands")
.orderBy("com")
.where("color", "==", hex).get().then(function (querySnapshot) {
let counter = 0
if (querySnapshot.size === 0) {
errorLog("No commands found.")
stop()
}
querySnapshot.forEach(function (doc) {
let commandData = Object.assign(doc.data(), {id: doc.id})
if (counter === 0) {
styleCommandLog(commandData, true)
++counter
} else
styleCommandLog(commandData, false)
})
stop()
})
.catch(function (error) {
errorLog("Error getting documents: ", error);
stop()
});
} else {
//wrong color flag
errorLog(`Please pass the correct color i.e from ${allColors}`)
stop()
}
}
}
const addCommands = async (commandObj) => {
try {
let isLoginValid = await checkIfLoginValid()
if (isLoginValid) {
let uid = auth.currentUser.uid
if (isObjFilled(commandObj)) {
try {
let docReference = await firestore.collection("users").doc(uid).collection("commands").add({
com: commandObj.command.toString(),
dis: commandObj.description.toString(),
color: hexCodes[(commandObj.color).toString().toLowerCase()]
})
successLog(`Command Added ${docReference.id}`)
stop()
} catch (e) {
errorLog("Error adding command!")
}
} else {
errorLog("Please provide all the values i.e a command, a description and a color of your choice.")
stop()
}
}
} catch (e) {
errorLog(e)
}
}
const login = async () => {
runAll()
try {
processingLog("Opening the browser to login. If you can't use a browser on this device, please visit" +
" https://cli-login.andronix.app manually.")
setTimeout(openBrowser, 3000)
async function openBrowser() {
await open('https://cli-login.andronix.app/');
// ask the user for the token now
let tokenQuestion = [{
type: 'input',
message: 'Please enter the token here.',
name: 'token'
}]
prompt(tokenQuestion).then(tokenObj => {
const token = tokenObj.token
loginUser(token)
})
}
} catch (e) {
errorLog("Logging while logging in the user.")
}
}
async function checkDirectory() {
let mkdirp = require('mkdirp');
return new Promise((resolve, reject) => {
let configDirectory = "./conf"
try {
if (fs.existsSync(configDirectory)) {
resolve(true)
} else {
mkdirp(configDirectory).then(r => {
resolve(true)
}).catch(e => {
console.error(e)
reject(false)
})
}
} catch (err) {
console.error(err)
reject(false)
}
})
}
async function loginUser(token) {
let tokenPassed = token.toString()
if (!tokenPassed) {
errorLog("Token not detected. Please enter the token and then press enter.")
} else {
try {
let res = await axios.get("https://us-central1-andronix-techriz.cloudfunctions.net/authTokenFetch", {
params: {
token: tokenPassed,
}
})
let token = res.data.token
auth.signInWithCustomToken(token).then(async user => {
const userJson = JSON.stringify(auth.currentUser.toJSON())
try {
await checkDirectory()
fs.writeFileSync(userJsonFilePath, userJson)
successLog("User logged in")
successLog(`Welcome ${auth.currentUser.email}`)
let currentTime = new Date().valueOf().toString()
await writeToConfig("loginTime", currentTime)
stop()
} catch (e) {
errorLog(`Error logging in the user. ${e}`)
stop()
}
}).catch(e => {
errorLog(`Error logging in the user. ${e}`)
stop()
})
} catch (e) {
errorLog(`Error logging in the user. ${e}`)
stop()
}
}
}
const removeCommands = async (id) => {
let uid = auth.currentUser.uid
if (isFilled(id)) {
await firestore.collection("users").doc(uid).collection("commands").doc(id.docID).delete().then(r => {
successLog(`Command Deleted`)
stop()
}).catch(e => {
errorLog("Something went wrong or incorrect command ID.")
stop()
})
} else {
errorLog("Please supply the ID of the command you want to delete.")
stop()
}
}
function isFilled(string) {
return string.length !== 0 || string
}
function isObjFilled(object) {
let temp = true
for (let element in object) {
if (object.hasOwnProperty(element)) {
let val = object[element];
if (!val || val.toString().length === 0)
temp = false
}
}
return temp
}
const checkIfLoginValid = async function checkIfLoginValid() {
return new Promise(async (resolve, reject) => {
fs.readFile(configJsonFilePath, async (err, data) => {
if (err) {
errorLog("Error reading the login config.")
reject(false)
}
let dataFromFile = JSON.parse(data.toString());
let loginTime = dataFromFile.loginTime;
let currentTime = new Date().valueOf()
//4 days
if (currentTime - loginTime >= 345600000) {
logout(true)
reject(false)
} else {
resolve(true)
}
});
}
)
}
async function writeToConfig(key, value) {
let dataToWrite = JSON.stringify({[key]: value})
try {
await checkDirectory()
fs.writeFileSync(configJsonFilePath, dataToWrite);
} catch (e) {
errorLog(e)
}
}
const errorLog = function errorLog(e) {
console.log(chalk.red(e))
}
const successLog = function successLog(s) {
console.log(chalk.green(s))
}
const processingLog = function processingLog(l) {
console.log(chalk.yellow(l))
}
function updateNotifier() {
const updateNotifier = require('update-notifier');
const pkg = require('./package.json');
updateNotifier({pkg}).notify();
}
function runAll() {
updateNotifier()
}
function stop() {
process.exit(-1);
process.exit(-1);
}
module.exports = {
addCommands,
getCommands,
removeCommands,
login,
getUserInfo,
logout,
signInIfUserExists,
errorLog,
successLog,
processingLog,
checkIfLoginValid
}