TWA/assetlinks support

This commit is contained in:
ThatOneCalculator 2023-01-21 12:55:38 -08:00
parent 1c434a2331
commit b759ec4539
No known key found for this signature in database
GPG key ID: 8703CACD01000000
4 changed files with 29 additions and 1 deletions

View file

@ -145,6 +145,12 @@ id: 'aid'
# '127.0.0.1/32'
#]
# TWA
#twa:
# nameSpace: android_app
# packageName: tld.domain.twa
# sha256CertFingerprints: ['AB:CD:EF']
# Upload or download file size limits (bytes)
#maxFileSize: 262144000

View file

@ -1,6 +1,6 @@
{
"name": "calckey",
"version": "13.0.8-rc4",
"version": "13.0.9-rc",
"codename": "aqua",
"repository": {
"type": "git",

View file

@ -64,6 +64,12 @@ export type Source = {
mediaProxy?: string;
proxyRemoteFiles?: boolean;
twa: {
nameSpace?: string;
packageName?: string;
sha256CertFingerprints?: string[];
};
// Managed hosting stuff
maxUserSignups?: number;
isManagedHosting?: boolean;

View file

@ -74,6 +74,22 @@ router.get("/.well-known/host-meta.json", async (ctx) => {
};
});
if (config.twa.nameSpace != null) {
router.get("/.well-known/assetlinks.json", async (ctx) => {
ctx.set("Content-Type", "application/json");
ctx.body = [
{
relation: ["delegate_permission/common.handle_all_urls"],
target: {
namespace: config.twa.nameSpace,
package_name: config.twa.packageName,
sha256_cert_fingerprints: config.twa.sha256CertFingerprints,
},
},
];
});
}
router.get("/.well-known/nodeinfo", async (ctx) => {
ctx.body = { links };
});