-
Notifications
You must be signed in to change notification settings - Fork 1
/
server.js
208 lines (185 loc) · 6.36 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
"use strict";
// This is accomplished with a help from the example open source of Jared HANDSON
// big credit to him, here's the link to his repo: https://github.com/jaredhanson
var express = require('express');
var passport = require('passport');
var Strategy = require('passport-facebook').Strategy;
const https = require('https');
const fs = require('fs');
const execSync = require('child_process').execSync;
const port = 3000
const httpsOptions = {
key: fs.readFileSync('./ssl/key.pem'),
cert: fs.readFileSync('./ssl/cert.pem')
}
// Configure the Facebook strategy for use by Passport.
//
// OAuth 2.0-based strategies require a `verify` function which receives the
// credential (`accessToken`) for accessing the Facebook API on the user's
// behalf, along with the user's profile. The function must invoke `cb`
// with a user object, which will be set at `req.user` in route handlers after
// authentication.
passport.use(new Strategy({
clientID: 240447903194882 || process.env.CLIENT_ID,
clientSecret: "015a9838fbcefb810c5d022b73226185" || process.env.CLIENT_SECRET,
callbackURL: 'https://localhost:3000/login/facebook/return',
profileFields: ['displayName', 'feed.limit(4)']
},
function (accessToken, refreshToken, profile, cb) {
// In this example, the user's Facebook profile is supplied as the user
// record. In a production-quality application, the Facebook profile should
// be associated with a user record in the application's database, which
// allows for account linking and authentication with other identity
// providers.
return cb(null, profile);
}));
// Configure Passport authenticated session persistence.
//
// In order to restore authentication state across HTTP requests, Passport needs
// to serialize users into and deserialize users out of the session. In a
// production-quality application, this would typically be as simple as
// supplying the user ID when serializing, and querying the user record by ID
// from the database when deserializing. However, due to the fact that this
// example does not have a database, the complete Facebook profile is serialized
// and deserialized.
passport.serializeUser(function (user, cb) {
cb(null, user);
});
passport.deserializeUser(function (obj, cb) {
cb(null, obj);
});
// Create a new Express application.
var app = express();
// Configure view engine to render EJS templates.
app.set('views', __dirname + '/views');
app.set('view engine', 'ejs');
// Use application-level middleware for common functionality, including
// logging, parsing, and session handling.
app.use(require('morgan')('combined'));
app.use(require('cookie-parser')());
app.use(require('body-parser').urlencoded({ extended: true }));
app.use(require('express-session')({ secret: 'keyboard cat', resave: true, saveUninitialized: true }));
// Initialize Passport and restore authentication state, if any, from the
// session.
app.use(passport.initialize());
app.use(passport.session());
app.use(express.static('views'))
// Define routes.
app.get('/',
function (req, res) {
res.render('home', { user: req.user });
});
app.get('/login',
function (req, res) {
res.render('login');
});
app.get('/login/facebook',
passport.authenticate('facebook', { scope: 'user_posts' }));
app.get('/login/facebook/return',
passport.authenticate('facebook', { failureRedirect: '/login', scope: 'user_posts' }),
function (req, res) {
res.redirect('/');
});
app.get('/profile',
require('connect-ensure-login').ensureLoggedIn(),
function (req, res) {
res.render('profile', { user: req.user, post_user: req.user._json.feed.data });
analyse_text(req.user._json.feed);
});
const server = https.createServer(httpsOptions, app).listen(port, () => {
console.log('server running at ' + port)
})
let analyse_text = function (result) {
let watson_text = require('./watson-test.js');
let messages = [];
for (let i in result.data) {
messages.push(result.data[i].message);
}
// console.log(messages);
watson_text = watson_text.analyse();
let results = [];
let promise;
for (let i in messages) {
if (i == 0) {
promise = watson_text(messages[0]);
} else {
promise = promise.then(
function(result) {
// console.log(result);
results.push(result);
return watson_text(messages[i]);
},
function(error) {
console.log("error");
}
);
}
}
// get text analysed result
if (promise) {
promise.then(
function(result) {
// console.log(result);
results.push(result);
var stmt = mk_matlab_stmt(results);
var response = execSync('matlab -nojvm -nosplash -nodesktop -r "' + stmt + '"');
console.log("finished matlab");
// var response = execSync('echo "' + stmt + '"');
// console.log(response.toString());
const player = require('node-wav-player');
player.play({
path: './output.wav',
}).then(() => {
console.log('The wav file started to be played successfully.');
}).catch((error) => {
console.error(error);
});
},
//play the sound
function(error) {
console.log("error");
}
);
}
// const request = require('request-promise');
// const user = require('./config.js');
// const options = {
// method: 'GET',
// uri: 'https://graph.facebook.com/545189548932708/feed',
// qs: {
// access_token: user.hao.access_token,
// limit: 3
// }
// };
// request(options).then(fbRes => {
// let result = JSON.parse(fbRes);
// let message = [];
// for (let i in result.data) {
// message.push(result.data[i].message);
// }
// watson_text = watson_text.analyse();
// let final_result = watson_text(message[2]);
// console.log(message[2]);
// })
}
function len_str(word_lengths) {
let str = ", [";
for (let i in word_lengths) {
str = str + " " + word_lengths[i];
}
str = str + "]";
return str;
}
function mk_list_item(obj) {
let str = obj.emotions.sadness + ", " + obj.emotions.joy + ", " + obj.emotions.fear + ", ";
str = str + obj.emotions.disgust + ", " + obj.emotions.anger + ", " + obj.sentiment;
str = str + len_str(obj.word_lengths);
return str;
}
function mk_matlab_stmt(obj_array) {
let str = "music({";
for (let i in obj_array) {
str = str + mk_list_item(obj_array[i]) + "; ";
}
return str + "})";
}