mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
f8431bbfee
Summary: Provide a reasonable JS API for the Aphlict client. Provide an example behavior to invoke it. Test Plan: Ran "aphlict_server.js" with: $ sudo node aphlict_server.js Loaded /aphlict/. Opened console. Got "hello" from the server every second. Got reasonable errors with the server not present ("Security exception", but this is because it can't connect to port 843 to access the policy server). Reviewers: ddfisher, keebuhm, allenjohnashton, btrahan Reviewed By: btrahan CC: aran, epriestley Maniphest Tasks: T944 Differential Revision: https://secure.phabricator.com/D1800
42 lines
969 B
JavaScript
Executable file
42 lines
969 B
JavaScript
Executable file
var net = require('net');
|
|
|
|
function getFlashPolicy() {
|
|
return [
|
|
'<?xml version="1.0"?>',
|
|
'<!DOCTYPE cross-domain-policy SYSTEM ' +
|
|
'"http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">',
|
|
'<cross-domain-policy>',
|
|
'<allow-access-from domain="*" to-ports="2600"/>',
|
|
'</cross-domain-policy>'
|
|
].join("\n");
|
|
}
|
|
|
|
net.createServer(function(socket) {
|
|
socket.on('data', function() {
|
|
socket.write(getFlashPolicy() + '\0');
|
|
});
|
|
}).listen(843);
|
|
|
|
var sp_server = net.createServer(function(socket) {
|
|
function xwrite() {
|
|
var data = {hi: "hello"};
|
|
var serial = JSON.stringify(data);
|
|
|
|
var length = Buffer.byteLength(serial, 'utf8');
|
|
length = length.toString();
|
|
while (length.length < 8) {
|
|
length = "0" + length;
|
|
}
|
|
|
|
socket.write(length + serial);
|
|
|
|
console.log('write : ' + length + serial);
|
|
}
|
|
|
|
socket.on('connect', function() {
|
|
|
|
xwrite();
|
|
setInterval(xwrite, 1000);
|
|
|
|
});
|
|
}).listen(2600);
|