forked from hasura-imad/imad-2016-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
193 lines (179 loc) · 4.75 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
var express = require('express');
var morgan = require('morgan');
var path = require('path');
var app = express();
app.use(morgan('combined'));
/*var articles={
'article1': {
title:'Article1',
heading: 'Article1',
date: 'Sept 28,2016',
content:`This is my first article.
howz you`
},
'article2': {
title:'Article2',
heading: 'Article2',
date: 'Sept 28,2016',
content:`This is my second article.
howz you`
},
'article3': {
title:'Article3',
heading: 'Article3',
date: 'Sept 28,2016',
content:`This is my third article.
howz you`
},
};*/
var friends={
'ayush': {
title:'Ayush',
heading: 'Ayush Verma',
date: 'Oct 09,2016',
college:'Gl bajaj Institute of Technology And Management ',
room_no:'Room C-310',
content:`Ayush Verma
Hometown-Kanpur UP`
},
'ankit': {
title:'Ankit',
heading: 'Ankit Kumar',
date: 'Oct 09,2016',
college:'Gl bajaj Institute of Technology And Management ',
room_no:'Room C-310',
content:`Ankit Kumar
Hometown-Patna Bihar`,
},
'shivam': {
title:'Shivam',
heading: 'Shivam Sharma',
date: 'Oct 09,2016',
college:'IEC ',
room_no:'Room C-311',
content:`Shivam Sharma
Hometown-Patna Bihar`,
},
'surud':{
title:'Surud',
heading: 'Surud Iqbal',
date: 'Oct 09,2016',
college:'IEC ',
room_no:'Room C-311',
content:`Surud Iqbal
Hometown-Gaya Bihar`,
},
};
/*function createtemplate(dat){
var title1=dat.title;
var date1=dat.date;
var heading1=dat.heading ;
var content1=dat.content;
var htmltemplate=`
<html>
<head>
<title>
${title1}
</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="/ui/style.css" rel="stylesheet" />
</head>
<body>
<div class="container">
<div>
<a href="/">Home</a>
</div>
<hr/>
<h3>
${heading1}
</h3>
<div>
${date1}
</div>
<div>
<p>
${content1}
</p>
</div>
</div>
</body>
</html>
`;
return htmltemplate;
}*/
function createtemplate1(data){
var title=data.title;
var date=data.date;
var heading=data.heading ;
var content=data.content;
var room_no=data.room_no;
var college=data.college;
var htmltemplate1 =`
<html>
<head>
<title>
${title}
</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="/ui/style.css" rel="stylesheet" />
</head>
<body>
<div class="container">
<div>
<a href="/">Home</a>
</div>
<hr/>
<h3>
${heading}
</h3>
<div>
${date}
</div>
<div>
<p>
${content}
</p>
</div>
<div>
<p>
${college}
</p>
</div>
<div>
<p>
${room_no}
</p>
</div>
</div>
</body>
</html>
`;
return htmltemplate1;
}
app.get('/', function (req, res) {
res.sendFile(path.join(__dirname, 'ui', 'index.html'));
});
/*app.get('/:articleName',function(req, res){
var articleName= req.params.articleName;
res.send(createtemplate(articles[articleName]));
});*/
app.get('/gn:Name',function(req, res){
var Name= req.params.Name;
res.send(createtemplate1(friends[Name]));
});
app.get('/ui/style.css', function (req, res) {
res.sendFile(path.join(__dirname, 'ui', 'style.css'));
});
app.get('/ui/main.js', function (req, res) {
res.sendFile(path.join(__dirname, 'ui', 'main.js'));
});
app.get('/ui/PicsArt_09-15-02.44.58.jpg', function (req, res) {
res.sendFile(path.join(__dirname, 'ui', 'PicsArt_09-15-02.44.58.jpg'));
});
app.get('/ui/fb.png', function (req, res) {
res.sendFile(path.join(__dirname, 'ui', 'fb.png'));
});
var port = 8080; // Use 8080 for local development because you might already have apache running on 80
app.listen(8080, function () {
console.log(`IMAD course app listening on port ${port}!`);
});