js-libp2p-websockets/src/ma-to-url.js

38 lines
790 B
JavaScript
Raw Normal View History

2017-03-23 15:09:06 +00:00
'use strict'
const debug = require('debug')
const log = debug('libp2p:websockets:dialer')
2017-03-23 15:09:06 +00:00
function maToUrl (ma) {
const maStrSplit = ma.toString().split('/')
let proto
try {
proto = ma.protoNames().filter((proto) => {
return proto === 'ws' || proto === 'wss'
})[0]
} catch (e) {
log(e)
throw new Error('Not a valid websocket address', e)
2017-03-23 15:09:06 +00:00
}
let port
try {
port = ma.stringTuples().filter((tuple) => {
if (tuple[0] === ma.protos().filter((proto) => {
return proto.name === 'tcp'
})[0].code) {
return true
}
})[0][1]
} catch (e) {
log('No port, skipping')
2017-03-23 15:09:06 +00:00
}
let url = `${proto}://${maStrSplit[2]}${(port && (port !== 80 || port !== 443) ? `:${port}` : '')}`
2017-03-23 15:09:06 +00:00
return url
}
module.exports = maToUrl