-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
101 lines (82 loc) · 2.23 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
var request = require('request');
var cheerio = require('cheerio');
var resString = null;
var nodemailer = require('nodemailer');
var express = require('express');
var fs = require('fs');
var app = express();
require('dotenv').config();
const sgMail = require('@sendgrid/mail');
sgMail.setApiKey(process.env.SENDGRID_API_KEY);
var mailOptions = {
from: '[email protected]',
to: '[email protected]',
subject: 'Result Notification'
};
app.get('/',function(req,res){
fs.readFile('index.html',null,function(error,data){
if(error)
{
console.log('error');
}
else {
console.log('no error in loading index.html');
res.write(data);
}
});
request('http://exam.dtu.ac.in/result.htm',function(err,response,html){
if(!err && response.statusCode == 200)
{
console.log('inside if');
var $ = cheerio.load(html);
$('#AutoNumber1').filter(function(){
var data = $(this);
var title = data.children().children().eq(2).children().next().children().text();
console.log(title);
resString = title;
});
}
});
setInterval(function(){
console.log('inside while ');
request('http://exam.dtu.ac.in/result.htm',function(err,response,html){
if(!err && response.statusCode == 200)
{
console.log('inside if');
var $ = cheerio.load(html);
$('#AutoNumber1').filter(function(){
var data = $(this);
var title = data.children().children().eq(2).children().next().children().text();
console.log(title);
if(!title.includes(resString))
{
console.log("declared");
mailOptions.text = 'result of ' + title + 'declared';
sgMail.send(mailOptions, function (err, info) {
if (err) {
console.log(err.response.body);
return 'err';
}
else {
console.log(info.response);
return 'success';
}
});
}
else
console.log("not declared");
resString = title;
});
}
else
{
console.log('else');
}
});
},30000);
});
var port = process.env.PORT || 5000;
app.listen(port,function()
{
console.log('server started at port '+port);
});