mirror of
https://github.com/immich-app/immich.git
synced 2025-05-24 01:12:58 -04:00
49 lines
1.2 KiB
TypeScript
49 lines
1.2 KiB
TypeScript
import {
|
|
AlbumApi,
|
|
AssetApi,
|
|
AuthenticationApi,
|
|
Configuration,
|
|
DeviceInfoApi,
|
|
JobApi,
|
|
ServerInfoApi,
|
|
UserApi
|
|
} from './open-api';
|
|
|
|
class ImmichApi {
|
|
public userApi: UserApi;
|
|
public albumApi: AlbumApi;
|
|
public assetApi: AssetApi;
|
|
public authenticationApi: AuthenticationApi;
|
|
public deviceInfoApi: DeviceInfoApi;
|
|
public serverInfoApi: ServerInfoApi;
|
|
public jobApi: JobApi;
|
|
|
|
private config = new Configuration({ basePath: '/api' });
|
|
|
|
constructor() {
|
|
this.userApi = new UserApi(this.config);
|
|
this.albumApi = new AlbumApi(this.config);
|
|
this.assetApi = new AssetApi(this.config);
|
|
this.authenticationApi = new AuthenticationApi(this.config);
|
|
this.deviceInfoApi = new DeviceInfoApi(this.config);
|
|
this.serverInfoApi = new ServerInfoApi(this.config);
|
|
this.jobApi = new JobApi(this.config);
|
|
}
|
|
|
|
public setAccessToken(accessToken: string) {
|
|
this.config.accessToken = accessToken;
|
|
}
|
|
|
|
public removeAccessToken() {
|
|
this.config.accessToken = undefined;
|
|
}
|
|
|
|
public setBaseUrl(baseUrl: string) {
|
|
this.config.basePath = baseUrl;
|
|
}
|
|
}
|
|
|
|
export const api = new ImmichApi();
|
|
export const serverApi = new ImmichApi();
|
|
serverApi.setBaseUrl('http://immich-server:3001');
|