add 2 examples : client_http_proxy and client_socks_proxy. fix #185 fix #436

This commit is contained in:
Romain Beaumont 2017-07-13 14:42:42 +02:00
parent 5e64acce36
commit ed425e775d
No known key found for this signature in database
GPG Key ID: DB60E388B3BCF286
5 changed files with 104 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
node_modules
test/npm-debug.log
test/server
package-lock.json

View File

@ -0,0 +1,46 @@
const mc = require('minecraft-protocol');
const Http = require("http");
if(process.argv.length < 6 || process.argv.length > 8) {
console.log("Usage : node echo.js <host> <port> <proxyHost> <proxyPort> [<name>] [<password>]");
process.exit(1);
}
const proxyHost=process.argv[4];
const proxyPort=process.argv[5];
const req = Http.request({
host: proxyHost,
port: proxyPort,
method: 'CONNECT',
path: process.argv[2] + ":" + parseInt(process.argv[3])
});
req.on("connect", function(res, stream) {
const client = mc.createClient({
stream: stream,
username: process.argv[6] ? process.argv[6] : "echo",
password: process.argv[7]
});
client.on('connect', function() {
console.info('connected');
});
client.on('disconnect', function(packet) {
console.log('disconnected: '+ packet.reason);
});
client.on('end', function(err) {
console.log('Connection lost');
});
client.on('chat', function(packet) {
const jsonMsg = JSON.parse(packet.message);
if(jsonMsg.translate === 'chat.type.announcement' || jsonMsg.translate === 'chat.type.text') {
const username = jsonMsg.with[0].text;
const msg = jsonMsg.with[1];
if(username === client.username) return;
client.write('chat', {message: msg});
}
});
});

View File

@ -0,0 +1,8 @@
{
"name": "node-minecraft-protocol-example",
"version": "0.0.0",
"private": true,
"dependencies": {
},
"description": "A node-minecraft-protocol example"
}

View File

@ -0,0 +1,40 @@
const mc = require('minecraft-protocol');
const Socks = require("socks5-client");
if(process.argv.length < 6 || process.argv.length > 8) {
console.log("Usage : node echo.js <host> <port> <proxyHost> <proxyPort> [<name>] [<password>]");
process.exit(1);
}
const proxyHost=process.argv[4];
const proxyPort=process.argv[5];
const client = mc.createClient({
stream: Socks.createConnection({
host: process.argv[2],
port: parseInt(process.argv[3]),
socksHost: proxyHost,
socksPort: proxyPort
}),
username: process.argv[6] ? process.argv[6] : "echo",
password: process.argv[7]
});
client.on('connect', function() {
console.info('connected');
});
client.on('disconnect', function(packet) {
console.log('disconnected: '+ packet.reason);
});
client.on('end', function(err) {
console.log('Connection lost');
});
client.on('chat', function(packet) {
const jsonMsg = JSON.parse(packet.message);
if(jsonMsg.translate === 'chat.type.announcement' || jsonMsg.translate === 'chat.type.text') {
const username = jsonMsg.with[0].text;
const msg = jsonMsg.with[1];
if(username === client.username) return;
client.write('chat', {message: msg});
}
});

View File

@ -0,0 +1,9 @@
{
"name": "node-minecraft-protocol-example",
"version": "0.0.0",
"private": true,
"dependencies": {
"socks5-client": "^1.2.5"
},
"description": "A node-minecraft-protocol example"
}