This repository has been archived on 2023-09-20. You can view files and clone it, but cannot push or open issues or pull requests.
chromesoul/lib/ns_client.js

152 lines
4.2 KiB
JavaScript
Raw Normal View History

2012-10-21 19:45:45 +02:00
//
// Copyright (c) 2012 Rodolphe Breard
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice appear in all copies.
//
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
//
var NsClient = function() {
this.storage = chrome.storage.sync;
this.state = "actif";
this.allowed_statuses = ["actif", "away", "idle", "lock"];
this.is_connected = false;
2012-10-21 23:18:55 +02:00
this.socket = null;
2012-10-21 19:45:45 +02:00
};
NsClient.prototype.connect = function() {
var cnt = function(elem) {
return function(infos) {
if (typeof infos.login !== "undefined" && typeof infos.pwd_socks !== "undefined") {
2012-10-21 23:18:55 +02:00
chrome.socket.create('tcp', {}, function(sock_inf) {
elem.socket = sock_inf.socketId;
chrome.socket.connect(elem.socket, "ns-server.epita.fr", 4242, function(res) {
chrome.socket.read(elem.socket, null, function(rd_inf) {
if (rd_inf.resultCode > 0) {
var data = ab2str(rd_inf.data).split(' '),
auth = "ext_user_log ";
auth += infos.login + " ";
auth += hex_md5(data[2] + "-" + data[3] + "/" + data[4] + infos.pwd_socks) + " ";
auth += "chromesoul chromesoul\n";
chrome.socket.write(elem.socket, str2ab("auth_ag ext_user none none\n"), function(w_inf) {
chrome.socket.read(elem.socket, null, function(rd_inf) {
if (rd_inf.resultCode > 0) {
chrome.socket.write(elem.socket, str2ab(auth), function(w_inf) {
chrome.socket.read(elem.socket, null, function(rd_inf) {
if (rd_inf.resultCode > 0) {
elem.is_connected = true;
console.info("connected to the netsoul server");
elem.updateStatus();
elem.daemonize();
}
});
});
}
});
});
}
});
});
});
2012-10-21 19:45:45 +02:00
}
};
};
if (!this.is_connected) {
this.storage.get(null, cnt(this));
} else {
console.warn("already connected");
}
};
NsClient.prototype.disconnect = function() {
if (this.is_connected) {
2012-10-21 23:18:55 +02:00
chrome.socket.disconnect(this.socket);
2012-10-21 19:45:45 +02:00
this.is_connected = false;
console.info("disconnected");
2012-10-21 23:18:55 +02:00
} else {
console.warn("not connected");
}
};
NsClient.prototype.daemonize = function() {
var dm = function(elem) {
return function(rd_inf) {
if (rd_inf.resultCode > 0) {
var data = ab2str(rd_inf.data);
2012-10-21 23:48:41 +02:00
2012-10-21 23:18:55 +02:00
if (data.substr(0, 5) === "ping ") {
chrome.socket.write(elem.socket, rd_inf.data, function(w_inf) {
chrome.socket.read(elem.socket, null, this);
});
}
}
};
};
if (this.is_connected) {
chrome.socket.read(this.socket, null, dm(this));
2012-10-21 19:45:45 +02:00
} else {
console.warn("not connected");
}
};
NsClient.prototype.updateStatus = function() {
if (this.is_connected) {
2012-10-21 23:18:55 +02:00
var status_msg = "user_cmd state ";
status_msg += this.state + ":";
status_msg += Math.round(new Date().getTime() / 1000) + "\n";
chrome.socket.write(this.socket, str2ab(status_msg), function(w_inf) {});
2012-10-21 19:45:45 +02:00
} else {
console.warn("not connected");
}
};
NsClient.prototype.recv = function() {
if (this.is_connected) {
} else {
console.warn("not connected");
}
};
NsClient.prototype.changeStatus = function(new_status) {
if (this.is_connected) {
if (this.allowed_statuses.indexOf(new_status) !== -1) {
this.status = new_status;
} else {
console.warn("invalid status: " + new_status);
}
} else {
console.warn("not connected");
}
};
NsClient.prototype.init = function() {
var upd = function(elem) {
return function() {
if (elem.is_connected) {
elem.updateStatus();
}
};
},
con = function(elem) {
return function() {
if (!elem.is_connected) {
elem.connect();
}
};
};
con(this).apply();
2012-10-21 23:18:55 +02:00
setInterval(con(this), 10000);
2012-10-21 19:45:45 +02:00
setInterval(upd(this), 600000);
};