Created
March 27, 2017 10:30
-
-
Save prasadtalasila/00849611f089eec6faff8f7002fcb3df to your computer and use it in GitHub Desktop.
node.js submit script for socket.io client
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var argv = require('minimist')(process.argv.slice(2)); | |
var io = require('socket.io-client'); | |
var submit = function(host, id_no, current_lab, commit_hash, language) { | |
var req = [id_no, current_lab , commit_hash, language]; | |
var socket = io.connect(host); | |
socket.emit('submission', req); | |
socket.on('invalid', function(data) { | |
console.log('Access Denied. Please try submitting again'); | |
socket.disconnect(); | |
}); | |
socket.on('submission_pending',function(data) { | |
console.log('You have a pending submission. Please try after some time.'); | |
socket.disconnect(); | |
}); | |
socket.on('scores', function(data) { | |
total_score=0; | |
console.log('\nSubmission successful. Retreiving results'); | |
delete data.socket; | |
console.log("\nResults object: %j", data); | |
socket.disconnect(); | |
}); | |
}; | |
/* | |
commandline options are: | |
-l lab name | |
-i student id number | |
-h commit hash of the student repository | |
--lang programming language | |
--host server url, ex: localhost:9000 | |
*/ | |
if (argv.host && argv.l && argv.i && argv.lang) { | |
if (argv.h) { | |
submit(argv.host, argv.i, argv.l, argv.h, argv.lang); | |
} | |
else { | |
submit(argv.host, argv.i, argv.l, '', argv.lang); | |
} | |
} | |
else { | |
console.log('Please fill required arguments'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment