forked from gcardoso89/portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js.orig
327 lines (253 loc) · 8.47 KB
/
server.js.orig
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
/**
* 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 = [];
//Create an express app
var app = express();
var slack = new Slack('gcardoso', process.env.GCARDOSO_INWEBOOK_TOKEN);
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: 'timesUP32'
}
});
//Create the HTTP server with the express app as an argument
var server = http.createServer(app);
// Twitter symbols array
var watchSymbols = ['#gcardoso','@goncalocardo_o','#angularjs','#nodejs','#javascript','#mongodb','#html','#css','#frontend'];
//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;
});
//Generic Express setup
app.set('port', process.env.OPENSHIFT_NODEJS_PORT || 8084);
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.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')));
//Start a Socket.IO listen
var sockets = io.listen(server);
//Set the sockets.io configuration.
//THIS IS NECESSARY ONLY FOR HEROKU!
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
});
});
//Instantiate the twitter component
//You will need to get your own key. Don't worry, it's free. But I cannot provide you one
//since it will instantiate a connection on my behalf and will drop all other streaming connections.
//Check out: https://dev.twitter.com/
var t = new twitter({
consumer_key: 'XHHh0St57xEb0uZ6zlVxAzgFv', // <--- FILL ME IN
consumer_secret: 'qxbmnjQau0W6ofQsJeByRuIi2iGMFLW2aJMNd5aXjnTZ4Ic8tU', // <--- FILL ME IN
access_token_key: '93891411-DtXySlEpuTNnM09dUEjb0aHnoj6mBrXb0gPQAgz87', // <--- FILL ME IN
access_token_secret: 'mEegi29Ivz0eZJHDxwxURk32wMqbWf0CxgUJvBqWimf2g' // <--- FILL ME IN
});
var arr = [];
function processTweetData(tweets){
var newArr = [];
for (var i = 0; i < tweets.length; i++) {
var data = tweets[i];
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]));
}
});
});
<<<<<<< HEAD
var server_ip_address = process.env.OPENSHIFT_NODEJS_IP || 'localhost';
=======
var server_ip_address = process.env.OPENSHIFT_NODEJS_IP || '192.168.1.2';
>>>>>>> fe2b9a922cd6c99dde7c2ed7e0a6eca51e2d78b1
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');
// development only
if ('development' == enviromnent) {
app.use(express.errorHandler());
mongoUrl = 'mongodb://localhost:27017/gcardoso';
}
var isOffline = false;
//Our only route! Render it with the current watchList
app.get('/', express.basicAuth('gcardoso89', 'timesUP32'), function (req, res) {
if ( isOffline ) {
res.status(500);
res.render('error/500.html', {error: "500 error page", layout : null});
res.end();
return true;
}
var token = jwt.encode({
ip : req.headers["x-forwarded-for"] || req.connection.remoteAddress
}, 'timesUP32');
var ip = geoip.lookup(req.headers["x-forwarded-for"] || req.connection.remoteAddress);
mongo.connect(mongoUrl, function (err, db) {
if (err!=null) {
res.render('homepage', { portfolio: [], portfolioString: JSON.stringify([]), token: token, country : (ip != null ) ? ip.country : "No country" });
return false;
}
var collection = db.collection('portfolio');
collection.find({}).toArray(function (err, docs) {
portfolioList = docs;
res.render('homepage', { portfolio: portfolioList, portfolioString: JSON.stringify(portfolioList), token: token, country : (ip != null ) ? ip.country : "No country" });
db.close();
});
});
});
app.post('/getFirstTweets', function(req, res){
var token = jwt.encode({
ip : req.headers["x-forwarded-for"] || req.connection.remoteAddress
}, 'timesUP32');
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.get('/teste', function (req, res) {
res.status(200).end();
});
app.post('/sendEmail', function(req, res){
var token = jwt.encode({
ip : req.headers["x-forwarded-for"] || req.connection.remoteAddress
}, 'timesUP32');
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){
console.log(req.body);
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/404.html', {error: "404 error page", layout : null});
});
// Handle 500
app.use(function(error, req, res, next) {
res.render('error/500.html', {error: "500 error page", layout : null});
});
//Create the server
server.listen(app.get('port'), server_ip_address, function () {
console.log('Express server listening on port ' + app.get('port'));
});