feat(route): add App Center Release (#8983)

/app-center/release/:user/:app/:distribution_group

Signed-off-by: Rongrong <15956627+Rongronggg9@users.noreply.github.com>
This commit is contained in:
Rongrong 2022-02-03 21:47:52 +08:00 committed by GitHub
parent b8c95ddee2
commit 4e356e15eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 192 additions and 0 deletions

View File

@ -16,6 +16,20 @@ pageClass: routes
<Route author="nczitzk" example="/anytxt/release-notes" path="/anytxt/release-notes"/>
## App Center
### Release
<RouteEn author="Rongronggg9" example="/app-center/release/cloudflare/1.1.1.1-windows/beta" path="/app-center/release/:user/:app/:distribution_group" :paramsDesc="['User', 'App name', 'Distribution group']" radar="1" rssbud="1">
::: tip
The parameters can be extracted from the Release page URL: `https://install.appcenter.ms/users/:user/apps/:app/distribution_groups/:distribution_group`
:::
</RouteEn>
## Apkpure
### Versions

View File

@ -32,6 +32,20 @@ pageClass: routes
<Route author="maple3142" example="/apkpure/versions/jp/jp.co.craftegg.band" path="/apkpure/versions/:region/:pkg" :paramsDesc="['區域代號', 'package name']"/>
## App Center
### Release
<Route author="Rongronggg9" example="/app-center/release/cloudflare/1.1.1.1-windows/beta" path="/app-center/release/:user/:app/:distribution_group" :paramsDesc="['用户', 'App 名称', '分发组']" radar="1" rssbud="1">
::: tip 提示
参数可从 Release 页的 URL 中提取: `https://install.appcenter.ms/users/:user/apps/:app/distribution_groups/:distribution_group`
:::
</Route>
## App Store/Mac App Store
### 应用更新

View File

@ -0,0 +1,3 @@
module.exports = {
'/release/:user/:app/:distribution_group': ['Rongronggg9'],
};

View File

@ -0,0 +1,13 @@
module.exports = {
'appcenter.ms': {
_name: 'App Center',
install: [
{
title: 'App Center Release',
docs: 'https://docs.rsshub.app/program-update.html#app-center',
source: ['/users/:user/apps/:app/distribution_groups/:distribution_group', '/orgs/:user/apps/:app/distribution_groups/:distribution_group'],
target: '/app-center/release/:user/:app/:distribution_group',
},
],
},
};

View File

@ -0,0 +1,121 @@
const got = require('@/utils/got');
const { parseDate } = require('@/utils/parse-date');
const { art } = require('@/utils/render');
const path = require('path');
const MarkdownIt = require('markdown-it');
module.exports = async (ctx) => {
const user = ctx.params.user;
const app = ctx.params.app;
const distribution_group = ctx.params.distribution_group;
const baseUrl = 'https://install.appcenter.ms/api/v0.1/apps';
const apiUrl = `${baseUrl}/${user}/${app}/distribution_groups/${distribution_group}`;
const releasesListUrl = `${apiUrl}/public_releases?scope=tester`;
// const releaseUrl = `${apiUrl}/releases/${release_id}?is_install_page=true`;
const response = await got(releasesListUrl);
let title;
const link = `https://install.appcenter.ms/users/${user}/apps/${app}/distribution_groups/${distribution_group}`;
let icon;
let items = response.data.map((item) => ({
// item:
// {
// "id": 504,
// "short_version": "8.5.0.0",
// "version": "18558",
// "origin": "appcenter",
// "uploaded_at": "2022-02-02T11:36:06.044Z",
// "mandatory_update": false,
// "enabled": true,
// "is_external_build": false
// }
pubDate: parseDate(item.uploaded_at),
link: `${apiUrl}/releases/${item.id}?is_install_page=true`,
}));
// Release info examples:
// Android: https://install.appcenter.ms/api/v0.1/apps/rafalense-70ux/plus-release/distribution_groups/public/releases/42?is_install_page=true
// iOS: https://install.appcenter.ms/api/v0.1/apps/gameonline/baitomobile/distribution_groups/baito/releases/26?is_install_page=true
// Windows: https://install.appcenter.ms/api/v0.1/apps/remitano/remitano-windows/distribution_groups/beta/releases/5?is_install_page=true
// macOS: https://install.appcenter.ms/api/v0.1/apps/rdmacios-k2vy/microsoft-remote-desktop-for-mac/distribution_groups/all-users-of-microsoft-remote-desktop-for-mac/releases/635?is_install_page=true
const md = new MarkdownIt();
items = await Promise.all(
items.map((item) =>
ctx.cache.tryGet(item.link, async () => {
const releaseResponse = await got(item.link);
const releaseInfo = releaseResponse.data;
const userName = releaseInfo.owner.display_name;
const appOS = releaseInfo.app_os;
const shortVersion = releaseInfo.short_version; // will be an empty string for Windows
const versionCode = releaseInfo.version;
const isExternalBuild = releaseInfo.is_external_build;
const isMandatoryUpdate = releaseInfo.mandatory_update;
// const isLatest = releaseInfo.is_latest; // this is not representing the latest release, but the latest version of a certain release
const sizeInMBytes = (releaseInfo.size / (1024 * 1024)).toFixed(2);
const releaseDate = releaseInfo.uploaded_at; // use original text here because it is already an ISO 8601 time
const fingerprint = releaseInfo.fingerprint;
const minOS = releaseInfo.min_os; // `null` for Windows
const androidMinApiLevel = releaseInfo.android_min_api_level; // only for Android
const deviceFamily = releaseInfo.device_family; // only for iOS, `null` for others
const bundleId = releaseInfo.bundle_identifier; // can be a hash or a package name
const releaseNotes = releaseInfo.release_notes; // markdown, can be an empty string
const downloadUrl = releaseInfo.download_url;
const installUrl = releaseInfo.install_url;
const fileExtension = releaseInfo.fileExtension;
if (!(title && icon)) {
const appName = releaseInfo.app_display_name;
const distributionGroupId = releaseInfo.distribution_group_id;
const distributionGroupName = releaseInfo.distribution_groups.filter((group) => group.id === distributionGroupId)[0].display_name;
title = `${appName} (${distributionGroupName}) for ${appOS} by ${userName} - App Center Releases`;
icon = releaseInfo.app_icon_url;
}
const version = shortVersion && versionCode ? `${shortVersion} (${versionCode})` : shortVersion || versionCode;
item.title =
(isMandatoryUpdate ? '[Mandatory]' : '') +
// + (isLatest ? "[Latest]" : "")
(isExternalBuild ? '[External Build]' : '') +
`Version ${version}`;
item.link = link; // replace the link with the release page
item.author = userName;
item.description = art(
path.join(__dirname, 'templates/description.art'),
{
releaseDate,
sizeInMBytes,
minOS,
deviceFamily,
androidMinApiLevel,
bundleId,
downloadUrl,
installUrl,
fingerprint,
appOS,
fileExtension,
releaseNotes: releaseNotes && md.render(releaseNotes),
},
{ minimize: true }
);
item.guid = fingerprint;
return item;
})
)
);
ctx.state.data = {
title,
link,
description: title,
image: icon,
item: items,
};
};

View File

@ -0,0 +1,3 @@
module.exports = function (router) {
router.get('/release/:user/:app/:distribution_group', require('./release'));
};

View File

@ -0,0 +1,24 @@
<p>
<b>Release Date</b>: {{releaseDate}}<br>
<b>Fingerprint</b>: {{fingerprint}}<br>
<b>OS</b>: {{appOS}}<br>
{{if minOS}}<b>Minimum OS Version</b>: {{minOS}}<br>{{/if}}
{{if androidMinApiLevel}}<b>Android Minimum API Level</b>: {{androidMinApiLevel}}<br>{{/if}}
{{if deviceFamily}}<b>Device Family</b>: {{deviceFamily}}<br>{{/if}}
{{if bundleId}}<b>Bundle ID</b>: {{bundleId}}<br>{{/if}}
{{if fileExtension}}<b>File Extension</b>: {{fileExtension}}<br>{{/if}}
<b>Size</b>: {{sizeInMBytes}} MB
</p>
{{if releaseNotes}}
<p>
<b>Release Notes</b>:
</p>
{{@ releaseNotes }}
{{/if}}
<p>
{{if downloadUrl===installUrl}}
[ <a href='{{downloadUrl}}'>Download</a> ]
{{else}}
[ <a href='{{downloadUrl}}'>Download</a> | <a href='{{installUrl}}'>Install</a> ]
{{/if}}
</p>