2018-09-19 00:01:55 +02:00
|
|
|
// Generated by CoffeeScript 1.12.7
|
2018-08-28 14:49:03 +02:00
|
|
|
(function() {
|
2018-09-17 19:43:24 +02:00
|
|
|
var APIManager, BaseObject, MarkOn, WVNC, require,
|
2018-08-28 14:49:03 +02:00
|
|
|
extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },
|
|
|
|
hasProp = {}.hasOwnProperty;
|
|
|
|
|
|
|
|
window.classes = {};
|
|
|
|
|
|
|
|
window.libraries = {};
|
|
|
|
|
|
|
|
window.myuri = "/";
|
|
|
|
|
|
|
|
window.mobilecheck = function() {
|
|
|
|
if (navigator.userAgent.match(/Android/i) || navigator.userAgent.match(/webOS/i) || navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPad/i) || navigator.userAgent.match(/iPod/i) || navigator.userAgent.match(/BlackBerry/i) || navigator.userAgent.match(/Windows Phone/i)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
|
|
|
window.makeclass = function(n, o) {
|
|
|
|
return window.classes[n] = o;
|
|
|
|
};
|
|
|
|
|
2018-09-17 19:43:24 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
window.require = (lib) ->
|
|
|
|
return new Promise (r, e) ->
|
|
|
|
return r() if window.libraries[lib]
|
|
|
|
$.getScript window.myuri + lib
|
|
|
|
.done (d) ->
|
|
|
|
window.libraries[lib] = true
|
|
|
|
r()
|
|
|
|
.fail (m, s) ->
|
|
|
|
e(m, s)
|
|
|
|
*/
|
|
|
|
|
|
|
|
require = function(lib) {
|
2018-08-28 14:49:03 +02:00
|
|
|
return new Promise(function(r, e) {
|
|
|
|
if (window.libraries[lib]) {
|
|
|
|
return r();
|
|
|
|
}
|
|
|
|
return $.getScript(window.myuri + lib).done(function(d) {
|
|
|
|
window.libraries[lib] = true;
|
|
|
|
return r();
|
|
|
|
}).fail(function(m, s) {
|
|
|
|
return e(m, s);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
BaseObject = (function() {
|
|
|
|
function BaseObject(name) {
|
|
|
|
this.name = name;
|
|
|
|
}
|
|
|
|
|
|
|
|
BaseObject.prototype.ready = function() {
|
|
|
|
var me;
|
|
|
|
me = this;
|
|
|
|
return new Promise(function(r, e) {
|
|
|
|
return me.resolveDep().then(function() {
|
|
|
|
return r();
|
|
|
|
})["catch"](function(m, s) {
|
|
|
|
return e(m, s);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
BaseObject.prototype.resolveDep = function() {
|
|
|
|
var me;
|
|
|
|
me = this;
|
|
|
|
return new Promise(function(r, e) {
|
|
|
|
var dep, fn;
|
|
|
|
dep = window.classes[me.name].dependencies;
|
|
|
|
if (!dep) {
|
|
|
|
r();
|
|
|
|
}
|
|
|
|
fn = function(l, i) {
|
|
|
|
if (i >= dep.length) {
|
|
|
|
return r();
|
|
|
|
}
|
|
|
|
return require(l[i]).then(function() {
|
|
|
|
return fn(l, i + 1);
|
|
|
|
})["catch"](function(m, s) {
|
|
|
|
return e(m, s);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
return fn(dep, 0);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
return BaseObject;
|
|
|
|
|
|
|
|
})();
|
|
|
|
|
|
|
|
makeclass("BaseObject", BaseObject);
|
|
|
|
|
|
|
|
APIManager = (function(superClass) {
|
|
|
|
extend(APIManager, superClass);
|
|
|
|
|
2018-09-17 19:43:24 +02:00
|
|
|
function APIManager(args) {
|
|
|
|
this.args = args;
|
2018-08-28 14:49:03 +02:00
|
|
|
APIManager.__super__.constructor.call(this, "APIManager");
|
|
|
|
}
|
|
|
|
|
2018-09-17 19:43:24 +02:00
|
|
|
APIManager.prototype.init = function() {
|
|
|
|
var cname, me;
|
|
|
|
me = this;
|
|
|
|
if (!(this.args && this.args.length > 0)) {
|
|
|
|
return console.error("No class found");
|
|
|
|
}
|
|
|
|
cname = (this.args.splice(0, 1))[0].trim();
|
2018-08-28 14:49:03 +02:00
|
|
|
return this.ready().then(function() {
|
|
|
|
if (mobilecheck()) {
|
|
|
|
mobileConsole.init();
|
|
|
|
}
|
|
|
|
if (!cname || cname === "") {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!window.classes[cname]) {
|
|
|
|
return console.error("Cannot find class ", cname);
|
|
|
|
}
|
2018-09-17 19:43:24 +02:00
|
|
|
return (new window.classes[cname](me.args)).init();
|
2018-08-28 14:49:03 +02:00
|
|
|
})["catch"](function(m, s) {
|
|
|
|
return console.error(m, s);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
return APIManager;
|
|
|
|
|
|
|
|
})(window.classes.BaseObject);
|
|
|
|
|
|
|
|
APIManager.dependencies = ["/assets/scripts/mobile_console.js"];
|
|
|
|
|
|
|
|
makeclass("APIManager", APIManager);
|
|
|
|
|
|
|
|
MarkOn = (function(superClass) {
|
|
|
|
extend(MarkOn, superClass);
|
|
|
|
|
2018-08-28 15:07:46 +02:00
|
|
|
function MarkOn() {
|
2018-08-28 14:49:03 +02:00
|
|
|
MarkOn.__super__.constructor.call(this, "MarkOn");
|
|
|
|
}
|
|
|
|
|
|
|
|
MarkOn.prototype.init = function() {
|
|
|
|
var me;
|
|
|
|
me = this;
|
|
|
|
return this.ready().then(function() {
|
|
|
|
return me.editor = new SimpleMDE({
|
2018-08-28 15:07:46 +02:00
|
|
|
element: $("#editor")[0]
|
2018-08-28 14:49:03 +02:00
|
|
|
});
|
|
|
|
})["catch"](function(m, s) {
|
|
|
|
return console.error(m, s);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
return MarkOn;
|
|
|
|
|
|
|
|
})(window.classes.BaseObject);
|
|
|
|
|
|
|
|
MarkOn.dependencies = ["/rst/gscripts/mde/simplemde.min.js"];
|
|
|
|
|
|
|
|
makeclass("MarkOn", MarkOn);
|
|
|
|
|
2018-09-17 19:43:24 +02:00
|
|
|
WVNC = (function(superClass) {
|
|
|
|
extend(WVNC, superClass);
|
|
|
|
|
|
|
|
function WVNC(args) {
|
|
|
|
this.args = args;
|
|
|
|
WVNC.__super__.constructor.call(this, "WVNC");
|
|
|
|
this.socket = void 0;
|
|
|
|
this.uri = void 0;
|
|
|
|
if (this.args && this.args.length > 0) {
|
|
|
|
this.uri = this.args[0];
|
|
|
|
}
|
2018-09-18 19:53:00 +02:00
|
|
|
this.canvas = void 0;
|
|
|
|
if (this.args && this.args.length > 1) {
|
|
|
|
this.canvas = ($(this.args[1]))[0];
|
|
|
|
}
|
|
|
|
this.buffer = $("<canvas>")[0];
|
|
|
|
this.counter = 0;
|
2018-09-17 19:43:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
WVNC.prototype.init = function() {
|
|
|
|
var me;
|
|
|
|
me = this;
|
|
|
|
return this.ready().then(function() {
|
2018-09-18 19:53:00 +02:00
|
|
|
$("#stop").click(function(e) {
|
|
|
|
if (me.socket) {
|
|
|
|
return me.socket.close();
|
|
|
|
}
|
|
|
|
});
|
2018-09-19 00:01:55 +02:00
|
|
|
$("#connect").click(function(e) {
|
2018-09-18 19:53:00 +02:00
|
|
|
me.counter = 0;
|
|
|
|
return me.openSession();
|
|
|
|
});
|
2018-09-19 00:01:55 +02:00
|
|
|
($(me.canvas)).css("cursor", "none");
|
|
|
|
return ($(me.canvas)).mousemove(function(e) {
|
|
|
|
var rect, x, y;
|
|
|
|
rect = me.canvas.getBoundingClientRect();
|
|
|
|
x = Math.floor(e.clientX - rect.left);
|
|
|
|
y = Math.floor(e.clientY - rect.top);
|
|
|
|
return me.sendPointEvent(x, y, 0);
|
|
|
|
});
|
2018-09-17 19:43:24 +02:00
|
|
|
})["catch"](function(m, s) {
|
|
|
|
return console.error(m, s);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2018-09-18 19:53:00 +02:00
|
|
|
WVNC.prototype.initCanvas = function(w, h, d) {
|
|
|
|
var ctx, data, me;
|
|
|
|
me = this;
|
|
|
|
this.depth = d;
|
|
|
|
this.buffer.width = w;
|
|
|
|
this.buffer.height = h;
|
|
|
|
ctx = this.buffer.getContext('2d');
|
|
|
|
data = ctx.createImageData(w, h);
|
|
|
|
ctx.putImageData(data, 0, 0);
|
|
|
|
return this.draw();
|
|
|
|
};
|
|
|
|
|
2018-09-20 00:03:53 +02:00
|
|
|
WVNC.prototype.decodeFB = function(d) {
|
|
|
|
var jpeg, pixels;
|
|
|
|
switch (d.flag) {
|
|
|
|
case 0x0:
|
|
|
|
return this.drawRaw(d.x, d.y, d.w, d.h, d.pixels);
|
|
|
|
case 0x1:
|
|
|
|
return this.drawJPEG(d.x, d.y, d.pixels);
|
|
|
|
case 0x2:
|
|
|
|
pixels = pako.inflate(d.pixels);
|
|
|
|
return this.drawRaw(d.x, d.y, d.w, d.h, pixels);
|
|
|
|
case 0x3:
|
|
|
|
jpeg = pako.inflate(d.pixels);
|
|
|
|
return this.drawJPEG(d.x, d.y, jpeg);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
WVNC.prototype.drawJPEG = function(x, y, data) {
|
|
|
|
var blob, me, reader;
|
|
|
|
me = this;
|
|
|
|
blob = new Blob([data], {
|
|
|
|
type: "image/jpeg"
|
|
|
|
});
|
|
|
|
reader = new FileReader();
|
|
|
|
reader.onloadend = function() {
|
|
|
|
var hiddenImage;
|
|
|
|
hiddenImage = new Image();
|
|
|
|
hiddenImage.style.position = "absolute";
|
|
|
|
hiddenImage.style.left = "-99999px";
|
|
|
|
document.body.appendChild(hiddenImage);
|
|
|
|
hiddenImage.onload = function() {
|
|
|
|
var ctx;
|
|
|
|
ctx = me.buffer.getContext('2d');
|
|
|
|
ctx.drawImage(hiddenImage, x, y);
|
|
|
|
document.body.removeChild(hiddenImage);
|
|
|
|
return me.draw();
|
|
|
|
};
|
|
|
|
return hiddenImage.src = reader.result;
|
|
|
|
};
|
|
|
|
return reader.readAsDataURL(blob);
|
|
|
|
};
|
|
|
|
|
|
|
|
WVNC.prototype.drawRaw = function(x, y, w, h, pixels) {
|
2018-09-18 19:53:00 +02:00
|
|
|
var ctx, imgData;
|
|
|
|
ctx = this.buffer.getContext('2d');
|
|
|
|
ctx.globalAlpha = 1.0;
|
|
|
|
imgData = ctx.createImageData(w, h);
|
|
|
|
imgData.data.set(this.getCanvasImageData(pixels, w, h));
|
|
|
|
ctx.putImageData(imgData, x, y);
|
|
|
|
this.counter = this.counter + 1;
|
2018-09-20 00:03:53 +02:00
|
|
|
return this.draw();
|
2018-09-18 19:53:00 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
WVNC.prototype.getCanvasImageData = function(pixels, w, h) {
|
|
|
|
var data, i, j, k, npixels, p, pixel, ref, ref1, step, value;
|
|
|
|
if (this.depth === 32) {
|
|
|
|
return pixels;
|
|
|
|
}
|
|
|
|
step = this.depth / 8;
|
|
|
|
npixels = pixels.length / step;
|
|
|
|
data = new Uint8ClampedArray(w * h * 4);
|
|
|
|
for (i = k = 0, ref = npixels - 1; 0 <= ref ? k <= ref : k >= ref; i = 0 <= ref ? ++k : --k) {
|
|
|
|
value = 0;
|
|
|
|
for (j = p = 0, ref1 = step - 1; 0 <= ref1 ? p <= ref1 : p >= ref1; j = 0 <= ref1 ? ++p : --p) {
|
|
|
|
value = value | pixels[i * step + j] << (j * 8);
|
|
|
|
}
|
|
|
|
pixel = this.pixelValue(value);
|
|
|
|
data[i * 4] = pixel.r;
|
|
|
|
data[i * 4 + 1] = pixel.g;
|
|
|
|
data[i * 4 + 2] = pixel.b;
|
|
|
|
data[i * 4 + 3] = pixel.a;
|
|
|
|
}
|
|
|
|
return data;
|
|
|
|
};
|
|
|
|
|
|
|
|
WVNC.prototype.draw = function() {
|
|
|
|
var ctx, h, scale, w;
|
|
|
|
if (!this.socket) {
|
|
|
|
return;
|
|
|
|
}
|
2018-09-19 00:01:55 +02:00
|
|
|
scale = 1.0;
|
2018-09-18 19:53:00 +02:00
|
|
|
w = this.buffer.width * scale;
|
|
|
|
h = this.buffer.height * scale;
|
|
|
|
this.canvas.width = w;
|
|
|
|
this.canvas.height = h;
|
|
|
|
ctx = this.canvas.getContext("2d");
|
|
|
|
ctx.save();
|
|
|
|
ctx.scale(scale, scale);
|
|
|
|
ctx.clearRect(0, 0, w, h);
|
|
|
|
ctx.drawImage(this.buffer, 0, 0);
|
|
|
|
return ctx.restore();
|
|
|
|
};
|
|
|
|
|
|
|
|
WVNC.prototype.pixelValue = function(value) {
|
|
|
|
var pixel;
|
|
|
|
pixel = {
|
|
|
|
r: 255,
|
|
|
|
g: 255,
|
|
|
|
b: 255,
|
|
|
|
a: 255
|
|
|
|
};
|
|
|
|
if (this.depth === 24 || this.depth === 32) {
|
|
|
|
pixel.r = value & 0xFF;
|
|
|
|
pixel.g = (value >> 8) & 0xFF;
|
|
|
|
pixel.b = (value >> 16) & 0xFF;
|
|
|
|
} else if (this.depth === 16) {
|
|
|
|
pixel.r = (value & 0x1F) * (255 / 31);
|
|
|
|
pixel.g = ((value >> 5) & 0x3F) * (255 / 63);
|
|
|
|
pixel.b = ((value >> 11) & 0x1F) * (255 / 31);
|
|
|
|
}
|
|
|
|
return pixel;
|
|
|
|
};
|
|
|
|
|
2018-09-17 19:43:24 +02:00
|
|
|
WVNC.prototype.openSession = function() {
|
|
|
|
var me;
|
|
|
|
me = this;
|
|
|
|
if (this.socket) {
|
|
|
|
this.socket.close();
|
|
|
|
}
|
|
|
|
if (!this.uri) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.socket = new WebSocket(this.uri);
|
|
|
|
this.socket.binaryType = "arraybuffer";
|
|
|
|
this.socket.onopen = function() {
|
|
|
|
console.log("socket opened");
|
|
|
|
return me.initConnection();
|
|
|
|
};
|
|
|
|
this.socket.onmessage = function(e) {
|
|
|
|
return me.consume(e);
|
|
|
|
};
|
|
|
|
return this.socket.onclose = function() {
|
|
|
|
me.socket = null;
|
|
|
|
return console.log("socket closed");
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
WVNC.prototype.initConnection = function() {
|
|
|
|
var vncserver;
|
2018-09-19 00:01:55 +02:00
|
|
|
vncserver = "192.168.1.8:5900";
|
2018-09-17 19:43:24 +02:00
|
|
|
return this.socket.send(this.buildCommand(0x01, vncserver));
|
|
|
|
};
|
|
|
|
|
2018-09-19 00:01:55 +02:00
|
|
|
WVNC.prototype.sendPointEvent = function(x, y, mask) {
|
|
|
|
var data;
|
|
|
|
if (!this.socket) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
data = new Uint8Array(5);
|
|
|
|
data[0] = x & 0xFF;
|
|
|
|
data[1] = x >> 8;
|
|
|
|
data[2] = y & 0xFF;
|
|
|
|
data[3] = y >> 8;
|
|
|
|
data[4] = 0;
|
|
|
|
return this.socket.send(this.buildCommand(0x05, data));
|
|
|
|
};
|
|
|
|
|
2018-09-17 19:43:24 +02:00
|
|
|
WVNC.prototype.buildCommand = function(hex, o) {
|
|
|
|
var cmd, data;
|
|
|
|
data = void 0;
|
|
|
|
switch (typeof o) {
|
|
|
|
case 'string':
|
|
|
|
data = (new TextEncoder()).encode(o);
|
|
|
|
break;
|
2018-09-18 19:53:00 +02:00
|
|
|
case 'number':
|
|
|
|
data = new Uint8Array([o]);
|
|
|
|
break;
|
2018-09-17 19:43:24 +02:00
|
|
|
default:
|
|
|
|
data = o;
|
|
|
|
}
|
|
|
|
cmd = new Uint8Array(data.length + 3);
|
|
|
|
cmd[0] = hex;
|
|
|
|
cmd[2] = data.length >> 8;
|
|
|
|
cmd[1] = data.length & 0x0F;
|
|
|
|
cmd.set(data, 3);
|
|
|
|
return cmd.buffer;
|
|
|
|
};
|
|
|
|
|
|
|
|
WVNC.prototype.consume = function(e) {
|
2018-09-20 00:03:53 +02:00
|
|
|
var arr, cmd, d, data, dec, depth, h, pass, user, w;
|
2018-09-18 01:35:13 +02:00
|
|
|
data = new Uint8Array(e.data);
|
|
|
|
cmd = data[0];
|
|
|
|
switch (cmd) {
|
|
|
|
case 0xFE:
|
|
|
|
data = data.subarray(1, data.length - 1);
|
|
|
|
dec = new TextDecoder("utf-8");
|
|
|
|
return console.log("Error", dec.decode(data));
|
2018-09-18 19:53:00 +02:00
|
|
|
case 0x81:
|
|
|
|
console.log("Request for password");
|
2018-09-19 00:01:55 +02:00
|
|
|
pass = "sang";
|
2018-09-18 19:53:00 +02:00
|
|
|
return this.socket.send(this.buildCommand(0x02, pass));
|
2018-09-18 01:35:13 +02:00
|
|
|
case 0x82:
|
|
|
|
console.log("Request for login");
|
|
|
|
user = "mrsang";
|
|
|
|
pass = "!x$@n9";
|
|
|
|
arr = new Uint8Array(user.length + pass.length + 1);
|
|
|
|
arr.set((new TextEncoder()).encode(user), 0);
|
|
|
|
arr.set(['\0'], user.length);
|
|
|
|
arr.set((new TextEncoder()).encode(pass), user.length + 1);
|
|
|
|
return this.socket.send(this.buildCommand(0x03, arr));
|
|
|
|
case 0x83:
|
|
|
|
console.log("resize");
|
|
|
|
w = data[1] | (data[2] << 8);
|
|
|
|
h = data[3] | (data[4] << 8);
|
|
|
|
depth = data[5];
|
2018-09-18 19:53:00 +02:00
|
|
|
this.initCanvas(w, h, depth);
|
|
|
|
return this.socket.send(this.buildCommand(0x04, 1));
|
2018-09-18 01:35:13 +02:00
|
|
|
case 0x84:
|
2018-09-20 00:03:53 +02:00
|
|
|
d = {};
|
|
|
|
d.x = data[1] | (data[2] << 8);
|
|
|
|
d.y = data[3] | (data[4] << 8);
|
|
|
|
d.w = data[5] | (data[6] << 8);
|
|
|
|
d.h = data[7] | (data[8] << 8);
|
|
|
|
d.flag = data[9];
|
|
|
|
d.pixels = data.subarray(10);
|
|
|
|
return this.decodeFB(d);
|
2018-09-18 01:35:13 +02:00
|
|
|
default:
|
|
|
|
return console.log(cmd);
|
|
|
|
}
|
2018-09-17 19:43:24 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
return WVNC;
|
|
|
|
|
|
|
|
})(window.classes.BaseObject);
|
|
|
|
|
2018-09-18 19:53:00 +02:00
|
|
|
WVNC.dependencies = ["/assets/scripts/pako.min.js"];
|
2018-09-17 19:43:24 +02:00
|
|
|
|
|
|
|
makeclass("WVNC", WVNC);
|
|
|
|
|
2018-08-28 14:49:03 +02:00
|
|
|
}).call(this);
|