-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
213 lines (183 loc) · 4.16 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
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
var request = require('request');
var createError = require('http-errors');
var express = require('express');
var path = require('path');
var cookieParser = require('cookie-parser');
var logger = require('morgan');
var ToneAnalyzerV3 = require('watson-developer-cloud/tone-analyzer/v3');
var credentials = require('./credentials.json'); // api credentials
toneAnalyzer = new ToneAnalyzerV3({
version: '2017-09-21',
username: credentials.watson.username,
password: credentials.watson.password,
headers: { 'X-Watson-Learning-Opt-Out': 'true' }
});
firebase = require("firebase");
// Required for side-effects
require("firebase/firestore");
// initialize firebase
firebase.initializeApp(credentials.firebase);
db = firebase.firestore();
db.settings({ timestampsInSnapshots: true });
var all_sentiments = [
// from general tone
'anger',
'disgust',
'fear',
'joy',
'sadness',
'analytical',
'confident',
'tentative',
// from chat tone
'sad',
'frustrated',
'satisfied',
'excited',
'polite',
'impolite',
'sympathetic'
];
// using chat tone sentiments as they are more relavant.
sentiments_used = [
'sad',
'frustrated',
'satisfied',
'excited',
// 'polite',
// 'impolite',
'sympathetic'
];
// colors to use for each sentiment
sentiment_colors = {
"frustrated": "#FF6383",
"sympathetic": "#FF9F40",
"excited": "#FFCD56",
"sad": "#36A2EB",
"polite": "#4BC0C0",
"impolite": "#7ED321",
"satisfied": "#8163FF",
};
sentiment_sample_comments = {
'frustrated': ['frustrated 1'],
'sympathetic': ['sympathetic 1'],
'excited': ['excited 1'],
'sad': ['sad 1'],
'polite': ['polite 1'],
'impolite': ['impolite 1'],
'satisfied': ['satisfied 1']
}
// sentiment count
sentiments_count = {}
// populate sentiment count object programmatically
for (var sentiment in sentiments_used) sentiments_count[sentiment] = 0;
// debug purposes, this list is used while twitter scrubber is being developed
twitter_data = [
{
id: 0,
user: "Bob",
message: "I really this product."
},
{
id: 1,
user: "Bob",
message: "I really this product."
},
{
id: 2,
user: "Bob",
message: "I really this product."
},
{
id: 3,
user: "Bob",
message: "I really this product."
},
{
id: 4,
user: "Bob",
message: "I really this product."
},
{
id: 5,
user: "Bob",
message: "I really this product."
},
{
id: 6,
user: "Bob",
message: "I really this product."
},
{
id: 7,
user: "Bob",
message: "I really this product."
},
{
id: 8,
user: "Bob",
message: "I really this product."
},
{
id: 9,
user: "Bob",
message: "I really this product."
},
{
id: 10,
user: "Bob",
message: "I really this product."
},
{
id: 11,
user: "Bob",
message: "I really this product."
},
{
id: 12,
user: "Bob",
message: "I really this product."
},
{
id: 13,
user: "Bob",
message: "I really this product."
},
{
id: 14,
user: "Bob",
message: "I really this product."
},
];
var indexRouter = require('./routes/index');
var analyzeRouter = require('./routes/analyze');
var hbs = require('express-handlebars');
const fs = require('fs');
var app = express();
// view engine setup
app.engine('hbs', hbs({ extname: 'hbs', defaultLayout: 'layout', layoutsDir: __dirname + '/views/' }));
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'hbs');
app.use(logger('dev'));
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
app.use(cookieParser());
app.use(express.static(__dirname + '/public'));
app.use('/scripts', express.static(__dirname + '/node_modules/'));
// route setup
app.use('/', indexRouter);
app.use('/analyze', analyzeRouter);
// catch 404 and forward to error handler
app.use(function (req, res, next) {
next(createError(404));
});
// error handler
app.use(function (err, req, res, next) {
// set locals, only providing error in development
res.locals.message = err.message;
res.locals.error = req.app.get('env') === 'development' ? err : {};
// render the error page
res.status(err.status || 500);
res.send('error');
});
module.exports = app;