-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
390 lines (346 loc) · 11.3 KB
/
Copy pathserver.js
File metadata and controls
390 lines (346 loc) · 11.3 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
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
const qsocks = require('qsocks');
var express = require('express');
var ExpressApp = express();
var bodyParser = require('body-parser');
var fs = require("fs");
var Products = {};
var SalesDates = {};
var global, senseApp, fields = {};
fields["ShelfNum"] = {};
fields["ProductName"] = {};
/**** Create Web Server to handle requests to/from Unity ****/
var urlencodedParser = bodyParser.urlencoded({ extended: false });
// Get list of projects
ExpressApp.post('/listProducts', urlencodedParser, function (req, res) {
// console.log( Products );
console.log("listing " + Object.keys(Products).length + " Products");
res.end(JSON.stringify(Products));
});
// Get projects by date
ExpressApp.post('/getSalesDates', urlencodedParser, function (req, res) {
console.log("listing " + Object.keys(SalesDates).length + " SalesDates");
res.end(JSON.stringify(SalesDates));
});
// Get field states
ExpressApp.post('/getFieldStates', urlencodedParser, function (req, res) {
console.log( fields );
res.end(JSON.stringify(fields));
});
// Filter
ExpressApp.post('/filter', urlencodedParser, function (req, res) {
var field = req.body.fieldName;
var value = req.body.fieldValue;
console.log("Selecting "+value+" in "+field);
filter(field, value);
res.end("filtered");
});
// Clear Selections
ExpressApp.post('/clear', urlencodedParser, function (req, res) {
console.log("Clearing Selections");
clear();
res.end("cleared");
});
// Test
ExpressApp.get('/test', function (req, res) {
console.log("TEST");
res.end("test");
});
// Start Server
//var server = ExpressApp.listen(8083, '172.100.19.130', 511, function () { //rdmobile
var server = ExpressApp.listen(8083, '10.150.143.37', 511, function () {
var host = server.address().address;
var port = server.address().port;
// console.log("server", host);
console.log("Retail middleware service listening on http://%s:%s", host, port);
});
/**** Connect to Qlik App via Virtual Proxy ****/
// var config = {
// host: 'rdmobile.qlikemm.com',
// isSecure: true,
// origin: 'localhost',
// rejectUnauthorized: true,
// appname: '06f6fb54-1ee0-4903-a69d-9f85e663084d' // Retail
// };
/**** Connect to Qlik App via Virtual Proxy ****/
var config = {
host: 'pe.qlik.com',
isSecure: true,
origin: 'http://localhost',
// rejectUnauthorized: true,
appname: '8eb18ccb-41c8-4cdc-a142-d34bf682e675' // Retail
};
// /**** Connect to Qlik App via Proxy using certificates ****/
// const client = fs.readFileSync('client.pem');
// const client_key = fs.readFileSync('client_key.pem');
// const config = {
// host: 'localhost',
// port: 4747, // Standard Engine port
// isSecure: true,
// headers: {
// 'X-Qlik-User': 'UserDirectory=Internal;UserId=sa_repository' // Passing a user to QIX to authenticate as
// },
// key: client_key,
// cert: client,
// rejectUnauthorized: false, // Don't reject self-signed certs
// appname: '0259c145-036e-4ee6-b332-1a4dde01eeb2' // Old Product Affinity app: 06f6fb54-1ee0-4903-a69d-9f85e663084d
// };
qsocks.ConnectOpenApp(config).then(function(connections) {
global = connections[0];
senseApp= connections[1];
console.log("got senseApp");
// Product Affinity + Inventory
senseApp.createSessionObject({
"qInfo": {
"qType": 'myProjectCube'
},
"qHyperCubeDef": {
"qInitialDataFetch": [
{
"qHeight": 3000,
"qWidth": 3
}
],
"qDimensions": [
{
"qDef" : {
"qFieldDefs" : ["Product Name"]
}
},
{
"qDef" : {
"qFieldDefs" : ["Affinity Product"]
}
}
],
"qMeasures": [
{
qDef: {
qLabel: 'Inventory',
qDef: '=Avg(Inventory)'
},
qSortBy: {qSortByNumeric: 1}
}
],
// "qSuppressZero": false,
"qSuppressMissing": true,
// "qMode": "S",
// "qInterColumnSortOrder": [],
"qStateName": "$"
}
}).then(function(prodModel){
prodModel.getLayout().then(function(layout) {
// console.log("got prodModel layout",JSON.stringify(layout));
var qMatrix = layout.qHyperCube.qDataPages[0].qMatrix;
// console.log("prodModel",JSON.stringify(qMatrix));
// console.log("size of prodModel: " + qMatrix.length);
for(i=0; i<qMatrix.length; i++){
p = qMatrix[i][0].qText;
a = qMatrix[i][1].qText;
iv = qMatrix[i][2].qNum;
if(!(Products.hasOwnProperty(p))){
Products[p] = {};
}
if(!(Products[p].hasOwnProperty('affinities'))){
Products[p].affinities = [a];
}else{
Products[p].affinities.push(a);
}
Products[p].inventory = iv;
}
console.log("got " + Object.keys(Products).length + " Products");
});
prodModel.on('change', function(layout) {
prodModel.getLayout().then(function(layout) {
// console.log("got new data",JSON.stringify(layout));
var qMatrix = layout.qHyperCube.qDataPages[0].qMatrix;
// console.log("data",JSON.stringify(qMatrix));
Products = {};
for(i=0; i<qMatrix.length; i++){
p = qMatrix[i][0].qText;
a = qMatrix[i][1].qText;
iv = qMatrix[i][2].qNum;
if(!(Products.hasOwnProperty(p))){
Products[p] = {};
}
if(!(Products[p].hasOwnProperty('affinities'))){
Products[p].affinities = [a];
}else{
Products[p].affinities.push(a);
}
Products[p].inventory = iv;
}
console.log("Cube updated. Now " + Object.keys(Products).length + " Products");
});
});
});
// SalesData Cube
senseApp.createSessionObject({
"qInfo": {
"qType": 'mySalesDates'
},
"qHyperCubeDef": {
"qInitialDataFetch": [
{
"qHeight": 5000,
"qWidth": 2
}
],
"qDimensions": [
{
"qDef" : {
"qFieldDefs" : ["Date"]
}
}
],
"qMeasures": [
{
qDef: {
qLabel: 'Sales',
qDef: '=Sum(QuarterSales)'
},
qSortBy: {qSortByNumeric: 1}
}
],
// "qSuppressZero": false,
"qSuppressMissing": true,
// "qMode": "S",
// "qInterColumnSortOrder": [],
"qStateName": "$"
}
}).then(function(salesModel){
salesModel.getLayout().then(function(layout) {
// console.log("got salesModel layout",JSON.stringify(layout));
var qMatrix = layout.qHyperCube.qDataPages[0].qMatrix;
// console.log("salesModel",JSON.stringify(qMatrix));
for(i=0; i<qMatrix.length; i++){
d = qMatrix[i][0].qText;
s = qMatrix[i][1].qNum;
if(!(SalesDates.hasOwnProperty(d))){
SalesDates[d] = {};
}
SalesDates[d].sales = s;
}
console.log("got " + Object.keys(SalesDates).length + " SalesDates");
console.log("SalesDates", SalesDates);
});
salesModel.on('change', function(layout) {
salesModel.getLayout().then(function(layout) {
// console.log("got new data",JSON.stringify(layout));
var qMatrix = layout.qHyperCube.qDataPages[0].qMatrix;
// console.log("data",JSON.stringify(qMatrix));
SalesDates = {};
for(i=0; i<qMatrix.length; i++){
d = qMatrix[i][0].qText;
s = qMatrix[i][1].qNum;
if(!(SalesDates.hasOwnProperty(d))){
SalesDates[d] = {};
}
SalesDates[d].sales = s;
}
console.log("Cube updated. Now " + Object.keys(SalesDates).length + " SalesDates");
});
});
});
// Fields Table
var ListObjDefs = {
"qInfo": {
"qId": "CB04",
"qType": 'Combo'
},
"ListObject1": {
"qListObjectDef": {
"qStateName": "$",
"qLibraryId": "",
"qDef": {
"qFieldDefs" : ["Shelf Number"],
"qSortCriterias": [{
"qSortByAscii": -1
}],
"qFieldLabels": ["Shelf Number"]
},
"qInitialDataFetch": [
{
"qTop": 0,
"qLeft": 0,
"qHeight": 10,
"qWidth": 2,
}
],
"qShowAlternatives": true
}
},
"ListObject2": {
"qListObjectDef": {
"qStateName": "$",
"qLibraryId": "",
"qDef": {
"qFieldDefs" : ["Product Name"],
"qSortCriterias": [{
"qSortByAscii": -1
}],
"qFieldLabels": ["Product Name"]
},
"qInitialDataFetch": [
{
"qTop": 0,
"qLeft": 0,
"qHeight": 100,
"qWidth": 2,
}
],
"qShowAlternatives": true
}
}
};
senseApp.createSessionObject(ListObjDefs).then(function(list){
list.getLayout().then(function(layout) {
var qMatrix = layout.ListObject1.qListObject.qDataPages[0].qMatrix;
for(i=0; i<qMatrix.length; i++){
console.log("Shelf Number: ", qMatrix[i][0].qText, qMatrix[i][0].qState);
fields.ShelfNum[qMatrix[i][0].qText] = qMatrix[i][0].qState;
}
var qMatrix = layout.ListObject2.qListObject.qDataPages[0].qMatrix;
for(i=0; i<qMatrix.length; i++){
console.log("Product Name: ", qMatrix[i][0].qText, qMatrix[i][0].qState);
fields.ProductName[qMatrix[i][0].qText] = qMatrix[i][0].qState;
}
});
list.on('change', function(layout) {
list.getLayout().then(function(layout) {
console.log("Shelf Number",layout.ListObject1.qListObject.qDimensionInfo.qStateCounts.qExcluded);
var qMatrix = layout.ListObject1.qListObject.qDataPages[0].qMatrix;
for(i=0; i<qMatrix.length; i++){
fields.ShelfNum[qMatrix[i][0].qText] = qMatrix[i][0].qState;
}
console.log("Product Name",layout.ListObject2.qListObject.qDimensionInfo.qStateCounts.qExcluded);
var qMatrix = layout.ListObject2.qListObject.qDataPages[0].qMatrix;
for(i=0; i<qMatrix.length; i++){
fields.ProductName[qMatrix[i][0].qText] = qMatrix[i][0].qState;
}
});
});
});
}).catch(function(err){
console.log(err);
})
// Fetch a field
function filter(fieldName, fieldValue){
senseApp.getField("["+fieldName+"]").then(function(field) {
// Issue a selection on the field handle.
field.select(fieldValue, false, 1).then(console.log, console.log);
});
}
// Clear Selections
function clear(){
senseApp.clearAll().then(function() {
console.log("Cleared selections");
// reset();
});
}
// Reset Selections
function reset(){
senseApp.getField("[First Procedure]").then(function(field) {
// field.select("1 INT MAM-COR ART BYPASS").then(console.log, console.log);
field.select("ALVEOLOPLASTY").then(console.log, console.log);
});
}