-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: support thunderstore ror2mm protocol for installing mods
- Loading branch information
Showing
3 changed files
with
73 additions
and
1 deletion.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
const { app, ipcMain } = require("electron"); | ||
|
||
const requests = require("./requests"); | ||
const version = require("./version"); | ||
|
||
async function install_mod(domain, author, package_name, version) { | ||
let package_data = JSON.parse(await requests.get( | ||
domain, `/api/experimental/package/${author}/${package_name}/${version}/` | ||
)); | ||
|
||
for (const dep of package_data.dependencies) { | ||
let fragments = dep.split("-"); | ||
if (fragments.length != 3) { | ||
console.error("bad dep") | ||
return; | ||
} | ||
|
||
if (fragments[0] != "northstar") | ||
await install_mod(domain, ...fragments); | ||
} | ||
|
||
let result = ipcMain.emit("install-from-url", null, package_data.download_url, author, package_name, version); | ||
if (!result) { | ||
console.error("no install-from-url handler") | ||
} | ||
} | ||
|
||
module.exports = async () => { | ||
if (version.northstar() == "unknown") | ||
return; | ||
|
||
const args = process.argv.slice(app.isPackaged ? 1 : 2); | ||
|
||
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 mod = 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; | ||
|
||
try { | ||
if (term == "install") { | ||
await install_mod(domain, author, mod, version); | ||
} | ||
}catch(err) { | ||
console.error(err); | ||
continue; | ||
} | ||
} | ||
} | ||
} |