fix(server): rename android-links api endpoint to apk-links (#18790)

* remove auth from endpoint and change android to apk

* add auth back to `apk-links`
This commit is contained in:
Nicholas 2025-05-31 00:27:55 -04:00 committed by GitHub
parent e2defbc49a
commit 3a5fed99e1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 14 additions and 14 deletions

View File

@ -184,7 +184,7 @@ Class | Method | HTTP request | Description
*SearchApi* | [**searchSmart**](doc//SearchApi.md#searchsmart) | **POST** /search/smart |
*ServerApi* | [**deleteServerLicense**](doc//ServerApi.md#deleteserverlicense) | **DELETE** /server/license |
*ServerApi* | [**getAboutInfo**](doc//ServerApi.md#getaboutinfo) | **GET** /server/about |
*ServerApi* | [**getAndroidLinks**](doc//ServerApi.md#getandroidlinks) | **GET** /server/android-links |
*ServerApi* | [**getApkLinks**](doc//ServerApi.md#getapklinks) | **GET** /server/apk-links |
*ServerApi* | [**getServerConfig**](doc//ServerApi.md#getserverconfig) | **GET** /server/config |
*ServerApi* | [**getServerFeatures**](doc//ServerApi.md#getserverfeatures) | **GET** /server/features |
*ServerApi* | [**getServerLicense**](doc//ServerApi.md#getserverlicense) | **GET** /server/license |

View File

@ -90,10 +90,10 @@ class ServerApi {
return null;
}
/// Performs an HTTP 'GET /server/android-links' operation and returns the [Response].
Future<Response> getAndroidLinksWithHttpInfo() async {
/// Performs an HTTP 'GET /server/apk-links' operation and returns the [Response].
Future<Response> getApkLinksWithHttpInfo() async {
// ignore: prefer_const_declarations
final apiPath = r'/server/android-links';
final apiPath = r'/server/apk-links';
// ignore: prefer_final_locals
Object? postBody;
@ -116,8 +116,8 @@ class ServerApi {
);
}
Future<ServerApkLinksDto?> getAndroidLinks() async {
final response = await getAndroidLinksWithHttpInfo();
Future<ServerApkLinksDto?> getApkLinks() async {
final response = await getApkLinksWithHttpInfo();
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}

View File

@ -5275,9 +5275,9 @@
]
}
},
"/server/android-links": {
"/server/apk-links": {
"get": {
"operationId": "getAndroidLinks",
"operationId": "getApkLinks",
"parameters": [],
"responses": {
"200": {

View File

@ -2874,11 +2874,11 @@ export function getAboutInfo(opts?: Oazapfts.RequestOpts) {
...opts
}));
}
export function getAndroidLinks(opts?: Oazapfts.RequestOpts) {
export function getApkLinks(opts?: Oazapfts.RequestOpts) {
return oazapfts.ok(oazapfts.fetchJson<{
status: 200;
data: ServerApkLinksDto;
}>("/server/android-links", {
}>("/server/apk-links", {
...opts
}));
}

View File

@ -35,10 +35,10 @@ export class ServerController {
return this.service.getAboutInfo();
}
@Get('android-links')
@Get('apk-links')
@Authenticated()
getAndroidLinks(): ServerApkLinksDto {
return this.service.getAndroidLinks();
getApkLinks(): ServerApkLinksDto {
return this.service.getApkLinks();
}
@Get('storage')

View File

@ -49,7 +49,7 @@ export class ServerService extends BaseService {
};
}
getAndroidLinks(): ServerApkLinksDto {
getApkLinks(): ServerApkLinksDto {
const baseUrl = `https://github.com/immich-app/immich/releases/download/v${serverVersion.toString()}`;
return {
arm64v8a: `${baseUrl}/app-arm64-v8a-release.apk`,