diff options
Diffstat (limited to 'src/modules/protocol.js')
-rw-r--r-- | src/modules/protocol.js | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/modules/protocol.js b/src/modules/protocol.js new file mode 100644 index 0000000..1aeb7f9 --- /dev/null +++ b/src/modules/protocol.js @@ -0,0 +1,39 @@ +const { app } = require("electron"); + +const win = require("../win"); +const version = require("./version"); + +module.exports = async (argv) => { + if (version.northstar() == "unknown") + return; + + const args = argv || process.argv; + + for (const key of args) { + if (key.startsWith("ror2mm://")) { + let fragments = key.slice(9).split("/"); + + if (fragments.length < 6) + return; + + const ver = fragments[0]; + const term = fragments[1]; + const domain = fragments[2]; + const author = fragments[3]; + const package_name = fragments[4]; + const version = fragments[5]; + + // There is only v1 + if (ver != "v1") + continue; + + // No support for custom thunderstore instances + if (domain != "thunderstore.io") + continue; + + if (term == "install") { + win().send("protocol-install-mod", [domain, author, package_name, version]); + } + } + } +} |