-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
130 lines (118 loc) · 3.29 KB
/
index.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
const axios = require('axios')
const http = require('http');
const https = require('https');
const util = require('util');
const defaultUrl = 'http://127.0.0.1:3000';
const defaultToken = 'DEMO';
const httpAgent = new http.Agent({ keepAlive: true });
const httpsAgent = new https.Agent({ keepAlive: true });
module.exports = function (session) {
var Store = session.Store
function DataBunkerSessionStore(options) {
options = options || {}
this.srv = options.url ? options.url : defaultUrl;
this.token = options.token ? options.token : defaultToken;
if (this.srv.endsWith("/")) {
this.srv = this.srv.slice(0, -1);
}
delete(options.token);
delete(options.url);
Store.call(this, options)
}
util.inherits(DataBunkerSessionStore, Store)
DataBunkerSessionStore.prototype._getUrl = function(sid) {
return this.srv + "/v1/session/" + sid;
}
DataBunkerSessionStore.prototype.get = function (sid, cb) {
const url = this._getUrl(sid);
const headers = {'X-Bunker-Token': this.token};
const options = {
httpAgent, httpsAgent, headers
};
axios.get(url, options)
.then(res => {
if (res.data && res.data.status && res.data.status == "ok") {
cb(null, res.data.data);
} else {
if (res.data && res.data.status && res.data.status == "error") {
cb(res.data.message);
} else {
cb('bad response');
}
}
})
.catch(err => {
const res = err.response;
if (res.data && res.data.status && res.data.status == "error" && res.data.message == "not found") {
cb(null, null);
} else {
if (res.data && res.data.message) {
cb(res.data.message);
} else {
cb('error');
}
}
});
}
DataBunkerSessionStore.prototype.set = function (sid, session, cb) {
const url = this._getUrl(sid);
const headers = {'X-Bunker-Token': this.token};
const options = {
httpAgent, httpsAgent, headers
};
axios.post(url, session, options)
.then(res => {
if (res.data && res.data.status && res.data.status == "ok") {
cb(null, null);
} else {
if (res.data && res.data.status && res.data.status == "error") {
cb(res.data.message);
} else {
cb('error');
}
}
})
.catch(error => {
const res = err.response;
if (res.data && res.data.status && res.data.status == "error" && res.data.message) {
cb(res.data.message);
} else {
cb('error');
}
});
}
DataBunkerSessionStore.prototype.destroy = function (sid, cb) {
const url = this._getUrl(sid);
const headers = {'X-Bunker-Token': this.token};
const options = {
httpAgent, httpsAgent, headers
};
axios.delete(url, options)
.then(res => {
if (cb) {
cb();
}
})
.catch(error => {
if (cb) {
cb(error);
}
});
}
DataBunkerSessionStore.prototype.touch = function (sid, session, cb) {
return this.set(sid, session, cb);
}
DataBunkerSessionStore.prototype.clear = function (cb) {
// not implemented
if (cb) {
cb();
}
}
DataBunkerSessionStore.prototype.length = function (cb) {
// not implemented
if (cb) {
cb(null, null);
}
}
return DataBunkerSessionStore
}