forked from IBM-Cloud/personality-insights-nodejs-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
executable file
·60 lines (46 loc) · 1.7 KB
/
Copy pathapp.js
File metadata and controls
executable file
·60 lines (46 loc) · 1.7 KB
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
/*eslint-env node*/
//------------------------------------------------------------------------------
// node.js starter application for Bluemix
//------------------------------------------------------------------------------
// This application uses express as its web server
// for more info, see: http://expressjs.com
var express = require('express');
// cfenv provides access to your Cloud Foundry environment
// for more info, see: https://www.npmjs.com/package/cfenv
var cfenv = require('cfenv');
// create a new express server
var app = express();
// serve the files out of ./public as our main files
app.use(express.static(__dirname + '/public'));
// get the app environment from Cloud Foundry
var appEnv = cfenv.getAppEnv();
// start server on the specified port and binding host
app.listen(appEnv.port, '0.0.0.0', function() {
// print a message when the server starts listening
console.log("server starting on " + appEnv.url);
});
var watson = require('watson-developer-cloud');
var creds = appEnv.getServiceCreds('personality-insights-tutorial');
creds.version = 'v2';
var personalityInsights = watson.personality_insights(creds);
var multer = require('multer');
var uploading = multer({
storage: multer.memoryStorage()
});
app.set('json spaces', 4);
app.post('/upload', uploading.single('file'), function (request, response) {
console.log("file");
var txtFile = request.file.buffer.toString();
console.log(request.file.buffer);
personalityInsights.profile({
text: txtFile },
function (error, result) {
if (error) {
response.send(error);
}
else {
response.send(result);
}
}
);
});