-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathredis.js
69 lines (58 loc) · 1.27 KB
/
redis.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
// redis.js
var redis = require('redis');
var db;
var connected = false;
exports.getActions = function(addAction){
}
exports.connect = function (host, port, pass, callback) {
if(!connected){
db = redis.createClient(port, host);
db.auth(pass);
connected = true;
db.on('ready', function(){
callback();
});
db.on('error', function(error){
console.log("REDIS ERROR".red);
});
}else{
callback();
}
}
exports.test = function (host, port, pass, callback){
callbackTriggered = false;
if(host != null && port != null && pass != null){
client = redis.createClient(port, host);
client.auth(pass);
client.on('ready', function(e){
client.end();
callback(true);
callbackTriggered = true;
});
client.on('error', function(e){
if(!callbackTriggered){
callback(false);
callbackTriggered = true;
}else{
//client.end();
// can't close connection -> get a unhandled error...
}
delete client;
});
}else{
if(!callbackTriggered){
callback(false);
callbackTriggered = true;
}
}
}
exports.getAccounts = function (callback) {
db.SMEMBERS('accounts', function(err, data){
callback(data);
})
}
exports.createAccount = function(username, data, callback){
db.SADD('accounts','username', function(err,data){
callback(data);
})
}