forked from gcardoso89/portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
396 lines (303 loc) · 9.38 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
/**
* Module dependencies.
*/
var express = require('express')
, mailer = require('express-mailer')
, io = require('socket.io')
, http = require('http')
, twitter = require('twitter')
, _ = require('underscore')
, path = require('path')
, util = require('util')
, mongo = require('mongodb').MongoClient
, jwt = require('jwt-simple')
, geoip = require("geoip-lite")
, Slack = require("node-slack")
, portfolioList = [];
/**
* ---------------
* ----- APP -----
* ---------------
* */
//Create an express app!
var app = express();
//Create the HTTP server with the express app as an argument
var server = http.createServer(app);
//Generic Express setup
app.set('port', process.env.OPENSHIFT_NODEJS_PORT || 8080);
app.set('views', __dirname + '/views');
app.set('view engine', 'html');
app.set('layout', 'layout');
app.set('partials', {
header : 'includes/header',
banner : 'pages/banner',
me : 'pages/me',
profile : 'pages/profile',
skills : 'pages/skills',
workeducation : 'pages/workeducation',
portfolio : 'pages/portfolio',
twitterwall : 'pages/twitterwall',
contact : 'pages/contact',
footer : 'includes/footer'
});
//app.enable('view cache');
app.engine('html', require('hogan-express'));
app.use(express.compress());
app.use(express.logger('dev'));
app.use(express.bodyParser());
app.use(express.methodOverride());
app.use(app.router);
app.use(require('stylus').middleware(__dirname + '/public'));
app.use(express.static(path.join(__dirname, 'public')));
//We're using bower components so add it to the path to make things easier
app.use('/components', express.static(path.join(__dirname, 'components')));
var server_ip_address = process.env.OPENSHIFT_NODEJS_IP || '127.0.0.1';
/**
* --------------------
* ----- MONGO DB -----
* --------------------
* */
var mongoUrl = 'mongodb://admin:' + process.env.GCARDOSO_MONGODB_PASSWORD + '@' + process.env.OPENSHIFT_MONGODB_DB_HOST+':'+ process.env.OPENSHIFT_MONGODB_DB_PORT +'/gcardoso';
var enviromnent = app.get('env');
var production = (enviromnent != 'development');
// development only
if (enviromnent == 'development') {
app.use(express.errorHandler());
mongoUrl = 'mongodb://localhost:27017/gcardoso';
require("./gcardoso/env-variables")();
}
/**
* -----------------------------
* ----- SLACK INTEGRATION -----
* -----------------------------
* */
var slack = new Slack('gcardoso', process.env.GCARDOSO_INWEBOOK_TOKEN);
/**
* ------------------------
* ----- TWITTER WALL -----
* ------------------------
* */
// Twitter symbols array
var watchSymbols = ['#gcardoso','@goncalocardo_o','#angularjs','#nodejs','#javascript','#mongodb','#html','#css','#frontend'];
//var watchSymbols = ['#gcardoso','@goncalocardo_o'];
//This structure will keep the total number of tweets received and a map of all the symbols and how many tweets received of that symbol
var watchList = {
total: 0,
symbols: {}
};
//Set the watch symbols to zero.
_.each(watchSymbols, function (v) {
watchList.symbols[v] = 0;
});
var t = new twitter({
consumer_key: process.env.TWITTER_CONSUMER_KEY,
consumer_secret: process.env.TWITTER_CONSUMER_SECRET,
access_token_key: process.env.TWITTER_ACCESS_TOKEN_KEY,
access_token_secret: process.env.TWITTER_ACCESS_TOKEN_SECRET
});
var arr = [];
function processTweetData(tweets){
var newArr = [];
for (var i = 0; i < tweets.length; i++) {
var data = tweets[i];
if(data.user.screen_name == "seedupio") continue;
newArr.push({
name : data.user.name,
username : '@' + data.user.screen_name,
image : data.user.profile_image_url.replace("_normal", "_bigger"),
text : data.text,
imageVisible : true,
created_at : new Date(data.created_at).getTime(),
date : data.created_at,
tweeturl : 'http://www.twitter.com/' + data.user.screen_name + '/status/' + data.id_str
});
}
return newArr;
}
//Tell the twitter API to filter on the watchSymbols
t.stream('statuses/filter', { track: watchSymbols }, function (stream) {
//We have a connection. Now watch the 'data' event for incomming tweets.
stream.on('data', function (data) {
//Make sure it was a valid tweet
if (data.text !== undefined) {
sockets.sockets.emit('data', processTweetData([data]));
}
});
stream.on('error', function(error) {
slack.send({
text: "@gcardoso Erro na conexão do Twitter. Erro: " + error,
channel: '#gcardoso-portfolio',
username: 'Portfolio',
link_names: 1
});
});
});
//Start a Socket.IO listen
var sockets = io.listen(server);
sockets.configure(function () {
sockets.set('transports', ['xhr-polling']);
//sockets.set('polling duration', 3600);
});
sockets.on('disconnect', function(){
slack.send({
text: "@gcardoso Os sockets estão em baixo. Reconnectar pff",
channel: '#gcardoso-portfolio',
username: 'Portfolio',
link_names: 1
});
});
/**
* -----------------------------
* ----- EMAIL INTEGRATION -----
* -----------------------------
* */
mailer.extend(app, {
from: '[email protected]',
host: 'smtp.gcardoso.pt', // hostname
secureConnection: false, // use SSL
port: 25, // port for secure SMTP
transportMethod: 'SMTP', // default is SMTP. Accepts anything that nodemailer accepts
auth: {
user: '[email protected]',
pass: process.env.GCARDOSO_EMAIL_PASSWORD
}
});
/**
* --------------------
* ----- ROUTES -------
* --------------------
* */
var isOffline = false;
/*-- Redirect --*/
if (production){
app.get('/*', function(req, res, next) {
if (req.headers.host.match(/^www/) == null ){
console.log("entrou no redirect");
res.redirect(301, 'http://www.' + req.headers.host);
}
else {
console.log("não entrou no redirect");
next();
}
});
}
//Our only route! Render it with the current watchList
app.get('/', function (req, res) {
if ( isOffline ) {x
res.status(200);
res.render('error.html', {error: "500", layout : null, production : production});
res.end();
return true;
}
var token = jwt.encode({
ip : req.headers["x-forwarded-for"] || req.connection.remoteAddress
}, process.env.GCARDOSO_EMAIL_PASSWORD);
var ip = geoip.lookup(req.headers["x-forwarded-for"] || req.connection.remoteAddress);
mongo.connect(mongoUrl, function (err, db) {
if (err!=null ) {
if ( enviromnent != 'development' ){
slack.send({
text: "@gcardoso Erro no acesso à BD - " + err,
channel: '#gcardoso-portfolio',
username: 'Portfolio',
link_names: 1
});
}
res.render('homepage', { portfolio: [], portfolioString: JSON.stringify([]), token: token, country : (ip != null ) ? ip.country : "No country", production : production });
return false;
}
var collection = db.collection('portfolio');
collection.find({}).toArray(function (err, docs) {
portfolioList = docs.reverse();
res.render('homepage', { portfolio: portfolioList, portfolioString: JSON.stringify(portfolioList), token: token, country : (ip != null ) ? ip.country : "No country", production : production });
db.close();
});
});
});
app.post('/getFirstTweets', function(req, res){
var token = jwt.encode({
ip : req.headers["x-forwarded-for"] || req.connection.remoteAddress
}, process.env.GCARDOSO_EMAIL_PASSWORD);
if (req.body.token == token){
t.search('#gcardoso', function(data) {
var newData = _.sortBy(data.statuses, function(o){ return new Date(o.created_at) });
res.json({success:true, tweets: processTweetData(newData) });
});
}
else {
res.status(403).end();
}
});
app.post('/sendEmail', function(req, res){
var token = jwt.encode({
ip : req.headers["x-forwarded-for"] || req.connection.remoteAddress
}, process.env.GCARDOSO_EMAIL_PASSWORD);
if ( req.body.token == token){
slack.send({
text: "@gcardoso " + req.body.name + " (" + req.body.email + ") enviou email com o seguinte texto: " + req.body.message,
channel: '#gcardoso-portfolio',
username: 'Portfolio',
link_names: 1
});
app.mailer.send('emails/email',{
from: 'gcardoso',
to: '[email protected]', // REQUIRED. This can be a comma delimited string just like a normal email to field.
subject: 'Portfolio', // REQUIRED.
emailobject: req.body, // All additional properties are also passed to the template as local variables.
layout : null
}, function (err) {
if (err) {
res.status(403).end();
return;
}
res.json(200, { success : true });
});
}
else {
res.status(403).end();
}
});
app.post('/outwebook', function(req, res){
if (req.body.token == process.env.GCARDOSO_OUTWEBOOK_TOKEN){
switch ( req.body.trigger_word.toLocaleLowerCase() ){
case 'socket':
switch (req.body.text.toLocaleLowerCase()){
case 'socket reconnect':
sockets.socket.connect();
break;
case 'socket disconnect':
sockets.socket.disconnect();
break;
}
break;
case 'offline':
switch (req.body.text.toLocaleLowerCase()){
case 'offline yes':
isOffline = true;
break;
case 'offline no':
isOffline = false;
break;
default:
isOffline = true;
break;
}
}
res.status(200).end();
}
else {
res.status(403).end();
}
});
// Handle 404
app.use(function(req, res) {
res.render('error.html', {error: "404", layout : null, production : production});
});
// Handle 500
app.use(function(error, req, res, next) {
res.render('error.html', {error: "500", layout : null, production : production});
});
//Create the server
server.listen(app.get('port'), server_ip_address, function () {
console.log('Express server listening on port ' + app.get('port'));
});