-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
482 lines (381 loc) · 13.6 KB
/
server.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
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
const { log } = require('react-modal/lib/helpers/ariaAppHider');
const {Telegraf, Markup,session} = require('telegraf')
require('dotenv').config({})
const geminiResponse = require('./geminiResponse')
const { message } = require('telegraf/filters')
const ariaAppHider = require('react-modal/lib/helpers/ariaAppHider');
const bot = new Telegraf(process.env.TELEGRAM_BOT_API);
const express = require('express')
const expressApp = express()
const port = process.env.PORT || 3000
expressApp.get('/', (req, res) => {
res.send('Hello World!')
})
expressApp.listen(port, () => {
console.log(`Listening on port ${port}`)
})
// bot.start(async(ctx) => {
// const userInfo = ctx.update.message.from ;
// try{
// await User.findOneAndUpdate({teleId : userInfo.id},{
// teleId : userInfo.id,
// isBot : userInfo.is_bot,
// firstname : userInfo.first_name,
// lastname : userInfo.last_name
// },{upsert : true, new : true})
// await ctx.reply(`Welcome ${userInfo.first_name} to the brand new EMO platform ~ Abhishek, founder`)
// }catch(err)
// {
// await ctx.reply("Error in updating data❌")
// console.error("Error :",err)
// }
// console.log("context",ctx.update.message.from);
// })
// Track of user states
const userStates = {};
bot.use(session());
bot.start(async(ctx) => {
const userInfo = ctx.update.message.from ;
if(!ctx.session || ctx.session.login == false)
{
ctx.session = {} ;
ctx.session.login = false ;
ctx.session.delId = "" ;
ctx.session.userId = "" ;
ctx.session.jobs = {};
ctx.session.email = "";
ctx.session.username = "";
ctx.session.token = "";
ctx.reply(`Hi ${userInfo.first_name}, welcome to EMO ~Abhishek, admin`)
ctx.reply('Please enter your phone number:');
userStates[ctx.chat.id] = { state: 'awaiting_username' };
}
else
{
ctx.reply(`Welcome back ${userInfo.first_name} how can I assist you ?`) ;
}
console.log("User details : ",ctx);
console.log("session", ctx.session);
// ctx.session.login = false
// console.log(userStates);
});
bot.command('logout',async(ctx)=>{
await ctx.reply("You have successfully logged out, see u again...")
ctx.session.login=false
ctx.session.token = ""
delete userStates[ctx.chat.id]
})
// find Cricket scores :
// bot.command('cricket-scores',async(ctx)=>{
// const getScores = await fetch('https://api.cricapi.com/v1/countries?apikey=99564502-2503-43df-8a75-f88a86698c42')
// const getJSON = await getScores.json() ;
// await ctx.reply(getJSON)
// })
bot.command('menu', (ctx) => {
if(ctx.session != undefined && ctx.session.login == true)
{
ctx.reply('Choose an option:', Markup.inlineKeyboard([
Markup.button.callback('Find Jobs', 'find_jobs'),
Markup.button.callback('Create Job', 'create_job'),
Markup.button.callback('Query Admin', 'query_admin'),
Markup.button.callback('Find Workers', 'find_workers')
]));
}
else
ctx.reply("You need to login first...")
});
// Callback handlers for the buttons
bot.action('find_jobs', async(ctx) => {
ctx.answerCbQuery(); // Acknowledge the button click
// ctx.userStates[ctx.chat.id].state = "await_job_sequence"
try{
const response = await fetch(`https://online-job-portal-part-time.onrender.com/api/jobs/getalljobs`, {
method : 'GET',
headers : {
"Authorization" : ctx.session.token
}
})
if(response.ok)
{
const workersData = await response.json() ;
await ctx.reply("Enter the job sequence to apply..")
// console.log(workersData.msg);
if(workersData.msg.length > 0)
{
userStates[ctx.chat.id].state = "awaiting_job_sequence"
workersData.msg.map((worker,index)=>{
const content = ["Job sequence : " + index,"Employer name : " + worker.employer.username, "Phone number : "+ worker.employer.phone,
"Category : "+worker.category, "Description : "+ worker.description, "Address : "+ worker.locationAdd
] ;
const newLineContent = content.join('\n') ;
ctx.reply(newLineContent)
ctx.session.jobs = workersData.msg
})
}
else
ctx.reply("There are no available jobs...")
}
else
{
ctx.reply("Zuck")
}
}catch(err)
{
ctx.reply("Some error occurred in fetching data")
console.log(err, "===========>");
}
});
bot.action('create_job', (ctx) => {
ctx.answerCbQuery();
const chatId = ctx.chat.id ;
const userState = userStates[chatId] || {} ;
userState.state = "awaiting_job_details"
userStates[chatId].state = "awaiting_job_details" ;
ctx.reply('Please provide the job details to create new job');
ctx.reply("category?")
});
bot.action('query_admin', (ctx) => {
ctx.answerCbQuery();
const chatId = ctx.chat.id ;
const userState = userStates[chatId] || {} ;
userStates[chatId].state = "awaiting_query" ;
ctx.reply('Please enter your query you want to ask:');
});
bot.action('find_workers', async(ctx) => {
ctx.answerCbQuery(); // Acknowledge the button click
ctx.reply("showing results")
try{
const response = await fetch(`https://online-job-portal-part-time.onrender.com/api/auth/profile`, {
method : 'GET',
headers:{
"Content-Type" : "application/json",
"Authorization" : ctx.session.token
}
})
if(response.ok)
{
const workersData = await response.json() ;
console.log(workersData.msg);
if(workersData.msg.length > 0)
{
workersData.msg.map((worker)=>{
const content = ["Username : " + worker.username, "Email : "+ worker.email,
"Phone number : "+worker.phone, "Skills : "+ worker.skills, "Address : "+ worker.locationAdd
] ;
const newLineContent = content.join('\n') ;
ctx.reply(newLineContent)
})
}
// ctx.reply(JSON.stringify(workersData.msg))
}
else
{
ctx.reply("Zuck")
}
}catch(err)
{
ctx.reply("Some error occurred in fetching data")
console.log(err, "===========>");
}
});
bot.action('query_admin', (ctx) => {
ctx.answerCbQuery(); // Acknowledge the button click
ctx.reply('Please enter your query...');
});
bot.on('text', async(ctx) => {
const chatId = ctx.chat.id;
const userState = userStates[chatId] || {};
console.log(ctx.message.text);
let getMessage= ctx.message.text
if (userState.state === 'awaiting_username') {
userState.username = ctx.message.text;
userState.state = 'awaiting_password';
ctx.reply('Please enter your password:');
}
else if (userState.state === 'awaiting_password') {
userState.password = ctx.message.text;
userState.state = 'complete';
const loginDetails = {
phone : userState.username,
password : userState.password
}
ctx.session.delId = (await ctx.reply("Connecting to server 🌐, please wait...")) ;
try{
const response = await fetch(`http://online-job-portal-part-time.onrender.com/api/auth/login`, {
method : 'POST',
headers : {
"Content-Type" : "application/json"
},
body : JSON.stringify(loginDetails)
})
if(response.ok)
{
const logindata = await response.json() ;
ctx.session.login = true
ctx.session.userId = logindata.userId ;
ctx.session.email = logindata.email ;
ctx.session.username = logindata.username ;
ctx.session.token = logindata.token ;
ctx.reply(`Thank you, ${logindata.username}. You have successfully logged in.`)
}
else
{
ctx.reply("invalid credentials...")
}
ctx.deleteMessage(ctx.session.delId.message_id) ;
ctx.session.delId = "";
}catch(err)
{
ctx.reply("some error occurred : " + err)
}
// Clear the user state after processing
// delete userStates[chatId];
}
else if(userState.state == "awaiting_job_sequence")
{
userState.state="awaiting_job_budget" ;
userState.jobseq = parseInt(getMessage)
ctx.reply("Enter your expected budget")
}
else if(userState.state == "awaiting_job_budget")
{
userState.state = "awaiting_job_message" ;
userState.jobBudget = getMessage
ctx.reply("Enter your message to recruiter:")
console.log(ctx.session);
}
else if(userState.state == "awaiting_job_message")
{
userState.jobMessage = getMessage
userState.state = "done"
try{
const apply = await fetch('https://online-job-portal-part-time.onrender.com/api/jobs/jobapply',{
method: "POST",
headers: {
"Content-Type": "application/json",
"Authorization" : ctx.session.token
},
body : JSON.stringify({userId : ctx.session.userId,
jobId : ctx.session.jobs[userState.jobseq],demandedBudget: userState.jobBudget,description: userState.jobMessage})
})
if(apply.ok)
{
ctx.reply("Job Applied successfully!!!");
}
else
{
const mesg = await apply.json()
console.log("errrrror",mesg.msg);
// console.log(apply);
ctx.reply(mesg.msg)
}
}catch(err)
{
console.log(err)
ctx.reply("Unable to apply to job: " + err)
}
}
else if(userState.state == "awaiting_job_details")
{
userState.state = "awaiting_description"
userState.category = getMessage
ctx.reply("Job description ?")
}
else if(userState.state == "awaiting_description")
{
userState.state = "awaiting_duration"
userState.description = getMessage
ctx.reply("Duration ?")
}
else if(userState.state == "awaiting_duration")
{
userState.state = "awaiting_budget"
userState.duration = getMessage
ctx.reply("Expected budget ?")
}
else if(userState.state == "awaiting_budget")
{
userState.state = "awaiting_location"
userState.budget = getMessage
ctx.reply("Location for job ?")
}
else if(userState.state == "awaiting_location")
{
userState.state = "done"
userState.location = getMessage
try{
const response = await fetch(`https://online-job-portal-part-time.onrender.com/api/jobs/createjob`, {
method : 'POST',
headers : {
"Content-Type" : "application/json",
"Authorization" : ctx.session.token
},
body : JSON.stringify({
category:userState.category,
description : userState.description,
startDate : Date.now(),
locationAdd : userState.location,
employer : ctx.session.userId,
budget : userState.budget
})
})
if(response.ok)
{
// const jsonData = await response.json()
// console.log("Job details" , jsonData.msg);
ctx.reply("Job created successfully")
}
else
{
const jsonData = await response.json()
ctx.reply(jsonData)
}
} catch(err){
console.log("Error:", err);
ctx.reply("Unable to create job")
}
}
else if(userState.state == "awaiting_query")
{
try{
const sendMessage = await fetch(`https://online-job-portal-part-time.onrender.com/api/contact`, {
method : 'POST',
headers : {
"Content-Type" : "application/json"
},
body : JSON.stringify({
username : ctx.session.username,
email : ctx.session.email,
message : getMessage
})
})
if(sendMessage.ok)
{
ctx.reply("Message sent successfully...")
}
}catch(err)
{
ctx.reply("Some occurred, please try later.")
}
}
else
{
const aiResponse = await geminiResponse(getMessage)
await ctx.reply(aiResponse)
}
});
bot.command('generate',async(ctx)=> ctx.reply("💖"))
bot.launch()
// Launch the bot
// bot.launch().catch(error => {
// console.error('Failed to launch bot:', error);
// });
// Enable graceful stop
process.once('SIGINT', () => {
console.log('Received SIGINT, stopping bot...');
bot.stop('SIGINT');
});
process.once('SIGTERM', () => {
console.log('Received SIGTERM, stopping bot...');
bot.stop('SIGTERM');
});