-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.js
135 lines (125 loc) · 3.64 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
const express = require('express');
const app = express();
const port = process.env.PORT || 3000;
const env = process.env.NODE_ENV || 'development';
const getScraps = require('./controller.js');
let path = '/';
if(env == 'production') {
path = '/playground/ah-feed/'; // The path I use on my server
}
let citiesListTranslation = {
all: 'Цела Македонија',
tetovo: 'Тетово',
ohrid: 'Охрид',
struga: 'Струга',
skopje: 'Скопје',
gostivar: 'Гостивар',
veles: 'Велес',
prilep: 'Прилеп',
bitola: 'Битола',
kumanovo: 'Куманово',
svetinikole: 'Свети Николе',
strumica: 'Струмица',
kavadarci: 'Кавадарци',
kocani: 'Кочани',
kicevo: 'Кичево',
radovis: 'Радовиш',
gevgelija: 'Гевгелија',
debar: 'Дебар',
krivapalanka: 'Крива Паланка',
negotino: 'Неготино',
delcevo: 'Делчево',
vinica: 'Виница',
resen: 'Ресен',
stip: 'Штип',
probistip: 'Пробиштип',
berovo: 'Берово',
krusevo: 'Крушево',
valandovo: 'Валандово'
}
app.set('view engine', 'pug');
app.use(path, express.static('public'));
// Apartments
app.get(path, (req, res) => {
let query = req.query.query;
let city = req.query.city;
let price = req.query.price;
let sortby = req.query.sortby;
let type = 'apartments';
// Redirect to default values
if(city == undefined) {
res.redirect('?city=struga,ohrid&price=10000,35000');
}
getScraps(query, city, price, sortby, type)
.then(data => {
res.render("index", {
title: "Bojan's AH Feed",
path: path,
selectedCities: city,
priceRange: price,
citiesListTranslation: citiesListTranslation,
scraps: data
})
})
.catch(e => {
res.status(500, {
error: e
});
})
.catch((e) => {
console.log(e);
});
});
// Cars
app.get(path + 'cars/', (req, res) => {
let query = req.query.query;
let city = req.query.city;
let price = req.query.price;
let sortby = req.query.sortby;
let type = 'cars';
// Redirect to default values
if(city == undefined) {
res.redirect('?query=&city=all&price=1000,10000');
}
getScraps(query, city, price, sortby, type)
.then(data => {
res.render("cars-index", {
title: "Bojan's Cars Feed",
path: path,
query: query,
selectedCities: city,
priceRange: price,
citiesListTranslation: citiesListTranslation,
scraps: data
})
})
.catch(e => {
res.status(500, {
error: e
});
})
.catch((e) => {
console.log(e);
});
});
// RSS Feed
app.get(path + 'rss', (req, res) => {
let query = req.query.query;
let city = req.query.city;
let price = req.query.price;
let sortby = req.query.sortby;
let type = 'apartments';
getScraps(query, city, price, sortby, type, true)
.then(data => {
res.set('Content-Type', 'application/rss+xml').send(data.rss2());
})
.catch(e => {
res.status(500, {
error: e
});
})
.catch((e) => {
console.log(e);
});
});
app.listen(port, () => console.log('The feed is up and running on http://localhost:' + port));