-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexpress.js
213 lines (199 loc) · 5.61 KB
/
express.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
const path = require('path');
require('dotenv').config({
path: path.join(__dirname, '.env')
});
const express = require('express');
const livereload = require('livereload');
const connectLiveReload = require("connect-livereload");
const https = require('https');
const cors = require('cors');
const apicache = require('apicache');
const compression = require('compression');
const app = express();
const port = process.env.PORT || 3000;
let cache = apicache.middleware;
// live reload
if (!process.env.RENDER) {
const liveReloadServer = livereload.createServer();
liveReloadServer.watch(path.join(__dirname, 'public'));
liveReloadServer.server.once('connection', () => {
setTimeout(() => {
liveReloadServer.refresh('/');
}, 100);
});
app.use(connectLiveReload());
}
app.use(cors());
app.use(express.static(path.join(__dirname, 'public')));
//website
app.get('/apps/weather', (req, res) => {
res.sendFile(path.join(__dirname, '/public/apps/weather.html'));
});
app.get('/apps/ssc', (req, res) => {
res.sendFile(path.join(__dirname, '/public/apps/ssc.html'));
});
app.get('/apps/ssc/*', (req, res) => {
res.sendFile(path.join(__dirname, '/public/apps/ssc.html'));
});
app.get('/imprint', (req, res) => {
res.sendFile(path.join(__dirname, '/public/imprint.html'));
});
// weather api calls
app.get('/weather', (req, res) => {
https.request({
host: 'api.openweathermap.org',
path: `/data/2.5/weather?lat=${req.query.lat}&lon=${req.query.lon}&appid=${process.env.WEATHER_API_KEY}&units=metric`,
method: 'GET'
}, (response) => {
let data = '';
response.on('data', (chunk) => {
data += chunk;
});
response.on('end', () => {
res.send(data);
});
}).end();
});
app.get('/direct', (req, res) => {
https.request({
host: 'api.openweathermap.org',
path: `/geo/1.0/direct?q=${req.query.q}&appid=${process.env.WEATHER_API_KEY}&units=metric&limit=20`,
method: 'GET'
}, (response) => {
let data = '';
response.on('data', (chunk) => {
data += chunk;
});
response.on('end', () => {
res.send(data);
});
}).end();
});
app.get('/forecast', (req, res) => {
https.request({
host: 'api.openweathermap.org',
path: `/data/2.5/forecast?lat=${req.query.lat}&lon=${req.query.lon}&appid=${process.env.WEATHER_API_KEY}&units=metric`,
method: 'GET'
}, (response) => {
let data = '';
response.on('data', (chunk) => {
data += chunk;
});
response.on('end', () => {
res.send(data);
});
}).end();
});
// steam api calls
app.get('/api/featured', cache('1 minute'), (req, res) => {
// get country code and language from request header
const accepted = req.headers['accept-language'].split(',')[0];
const country = accepted.split('-')[1];
const language = 'english';
https.request({
host: 'store.steampowered.com',
path: `/api/featured?cc=${country}&l=${language}`,
method: 'GET'
}, (response) => {
let data = '';
response.on('data', (chunk) => {
data += chunk;
});
response.on('end', () => {
res.send(data);
});
}).end();
});
app.get('/api/featuredcategories', cache('1 minute'), (req, res) => {
const accepted = req.headers['accept-language'].split(',')[0];
const country = accepted.split('-')[1];
const language = 'english';
https.request({
host: 'store.steampowered.com',
path: `/api/featuredcategories?cc=${country}&l=${language}`,
method: 'GET'
}, (response) => {
let data = '';
response.on('data', (chunk) => {
data += chunk;
});
response.on('end', () => {
res.send(data);
});
}).end();
});
app.get('/api/appdetails/:appid', cache('1 minute'), (req, res) => {
const appid = req.params.appid;
const accepted = req.headers['accept-language'].split(',')[0];
const country = accepted.split('-')[1];
const language = 'english';
https.request({
host: 'store.steampowered.com',
path: `/api/appdetails?cc=${country}&l=${language}&appids=${appid}`,
method: 'GET',
}, (response) => {
let data = '';
response.on('data', (chunk) => {
data += chunk;
});
response.on('end', () => {
// check if data is json
try {
JSON.parse(data);
} catch (e) {
res.status(500).send('Internal Server Error');
return;
}
res.send(data);
});
response.on('error', (err) => {
res.send(err);
});
}).end();
});
app.get('api/trailerslideshow', (req, res) => {
const accepted = req.headers['accept-language'].split(',')[0];
const country = accepted.split('-')[1];
const language = 'english';
https.request({
host: 'store.steampowered.com',
path: `api/trailerslideshow/?cc=${country}&l=${language}`,
method: 'GET',
}, (response) => {
let data = '';
response.on('data', (chunk) => {
data += chunk;
});
response.on('end', () => {
res.send(data);
});
}).end();
});
app.get('/api/search/:query', (req, res) => {
const q = req.params.query;
const accepted = req.headers['accept-language'].split(',')[0];
const country = accepted.split('-')[1];
const language = 'english';
https.request({
host: 'steamcommunity.com',
path: `/actions/SearchApps/${encodeURIComponent(q)}?cc=${country}&l=${language}`,
method: 'GET',
}, (response) => {
let data = '';
response.on('data', (chunk) => {
data += chunk;
});
response.on('end', () => {
res.send(data);
});
}).end();
});
app.get('/health', (req, res) => {
res.send('OK');
});
// redirect everything else to index.html
app.get('*', (req, res) => {
res.redirect('/');
});
// start server on ipv4 and ipv6
app.listen(port, '::', () => {});