mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-17 17:25:19 +01:00
feat: Add a little tool that runs multiple protocols for an ip
This commit is contained in:
parent
da464a5149
commit
c264138e54
1 changed files with 33 additions and 0 deletions
33
tools/attempt_protocols.js
Normal file
33
tools/attempt_protocols.js
Normal file
|
@ -0,0 +1,33 @@
|
|||
import Minimist from 'minimist'
|
||||
import GameDig from './../lib/index.js'
|
||||
|
||||
const argv = Minimist(process.argv.slice(2), {})
|
||||
|
||||
const options = {}
|
||||
if (argv._.length >= 1) {
|
||||
const target = argv._[0]
|
||||
const split = target.split(':')
|
||||
options.host = split[0]
|
||||
if (split.length >= 2) {
|
||||
options.port = split[1]
|
||||
}
|
||||
}
|
||||
|
||||
const gamedig = new GameDig(options)
|
||||
|
||||
const protocols = ['valve', 'gamespy1', 'gamespy2', 'gamespy3', 'goldsrc', 'minecraft', 'quake1', 'quake2', 'quake3', 'unreal2', 'valve']
|
||||
|
||||
protocols.forEach(protocol => {
|
||||
gamedig.query({
|
||||
...options,
|
||||
debug: true,
|
||||
type: `protocol-${protocol}`
|
||||
})
|
||||
.then(data => {
|
||||
console.log(data)
|
||||
process.exit()
|
||||
})
|
||||
.catch(error => {
|
||||
console.log(`Error on '${protocol}': ${error}`)
|
||||
})
|
||||
})
|
Loading…
Reference in a new issue