mirror of
https://github.com/immich-app/immich.git
synced 2024-11-17 02:49:01 -07:00
453 lines
14 KiB
Dart
453 lines
14 KiB
Dart
|
//
|
||
|
// AUTO-GENERATED FILE, DO NOT MODIFY!
|
||
|
//
|
||
|
// @dart=2.12
|
||
|
|
||
|
// ignore_for_file: unused_element, unused_import
|
||
|
// ignore_for_file: always_put_required_named_parameters_first
|
||
|
// ignore_for_file: constant_identifier_names
|
||
|
// ignore_for_file: lines_longer_than_80_chars
|
||
|
|
||
|
part of openapi.api;
|
||
|
|
||
|
|
||
|
class AlbumApi {
|
||
|
AlbumApi([ApiClient? apiClient]) : apiClient = apiClient ?? defaultApiClient;
|
||
|
|
||
|
final ApiClient apiClient;
|
||
|
|
||
|
/// Performs an HTTP 'PUT /album/{albumId}/assets' operation and returns the [Response].
|
||
|
/// Parameters:
|
||
|
///
|
||
|
/// * [String] albumId (required):
|
||
|
///
|
||
|
/// * [AddAssetsDto] addAssetsDto (required):
|
||
|
Future<Response> addAssetsToAlbumWithHttpInfo(String albumId, AddAssetsDto addAssetsDto,) async {
|
||
|
// ignore: prefer_const_declarations
|
||
|
final path = r'/album/{albumId}/assets'
|
||
|
.replaceAll('{albumId}', albumId);
|
||
|
|
||
|
// ignore: prefer_final_locals
|
||
|
Object? postBody = addAssetsDto;
|
||
|
|
||
|
final queryParams = <QueryParam>[];
|
||
|
final headerParams = <String, String>{};
|
||
|
final formParams = <String, String>{};
|
||
|
|
||
|
const contentTypes = <String>['application/json'];
|
||
|
|
||
|
|
||
|
return apiClient.invokeAPI(
|
||
|
path,
|
||
|
'PUT',
|
||
|
queryParams,
|
||
|
postBody,
|
||
|
headerParams,
|
||
|
formParams,
|
||
|
contentTypes.isEmpty ? null : contentTypes.first,
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/// Parameters:
|
||
|
///
|
||
|
/// * [String] albumId (required):
|
||
|
///
|
||
|
/// * [AddAssetsDto] addAssetsDto (required):
|
||
|
Future<AlbumResponseDto?> addAssetsToAlbum(String albumId, AddAssetsDto addAssetsDto,) async {
|
||
|
final response = await addAssetsToAlbumWithHttpInfo(albumId, addAssetsDto,);
|
||
|
if (response.statusCode >= HttpStatus.badRequest) {
|
||
|
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
|
||
|
}
|
||
|
// When a remote server returns no body with a status of 204, we shall not decode it.
|
||
|
// At the time of writing this, `dart:convert` will throw an "Unexpected end of input"
|
||
|
// FormatException when trying to decode an empty string.
|
||
|
if (response.body.isNotEmpty && response.statusCode != HttpStatus.noContent) {
|
||
|
return await apiClient.deserializeAsync(await _decodeBodyBytes(response), 'AlbumResponseDto',) as AlbumResponseDto;
|
||
|
|
||
|
}
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
/// Performs an HTTP 'PUT /album/{albumId}/users' operation and returns the [Response].
|
||
|
/// Parameters:
|
||
|
///
|
||
|
/// * [String] albumId (required):
|
||
|
///
|
||
|
/// * [AddUsersDto] addUsersDto (required):
|
||
|
Future<Response> addUsersToAlbumWithHttpInfo(String albumId, AddUsersDto addUsersDto,) async {
|
||
|
// ignore: prefer_const_declarations
|
||
|
final path = r'/album/{albumId}/users'
|
||
|
.replaceAll('{albumId}', albumId);
|
||
|
|
||
|
// ignore: prefer_final_locals
|
||
|
Object? postBody = addUsersDto;
|
||
|
|
||
|
final queryParams = <QueryParam>[];
|
||
|
final headerParams = <String, String>{};
|
||
|
final formParams = <String, String>{};
|
||
|
|
||
|
const contentTypes = <String>['application/json'];
|
||
|
|
||
|
|
||
|
return apiClient.invokeAPI(
|
||
|
path,
|
||
|
'PUT',
|
||
|
queryParams,
|
||
|
postBody,
|
||
|
headerParams,
|
||
|
formParams,
|
||
|
contentTypes.isEmpty ? null : contentTypes.first,
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/// Parameters:
|
||
|
///
|
||
|
/// * [String] albumId (required):
|
||
|
///
|
||
|
/// * [AddUsersDto] addUsersDto (required):
|
||
|
Future<AlbumResponseDto?> addUsersToAlbum(String albumId, AddUsersDto addUsersDto,) async {
|
||
|
final response = await addUsersToAlbumWithHttpInfo(albumId, addUsersDto,);
|
||
|
if (response.statusCode >= HttpStatus.badRequest) {
|
||
|
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
|
||
|
}
|
||
|
// When a remote server returns no body with a status of 204, we shall not decode it.
|
||
|
// At the time of writing this, `dart:convert` will throw an "Unexpected end of input"
|
||
|
// FormatException when trying to decode an empty string.
|
||
|
if (response.body.isNotEmpty && response.statusCode != HttpStatus.noContent) {
|
||
|
return await apiClient.deserializeAsync(await _decodeBodyBytes(response), 'AlbumResponseDto',) as AlbumResponseDto;
|
||
|
|
||
|
}
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
/// Performs an HTTP 'POST /album' operation and returns the [Response].
|
||
|
/// Parameters:
|
||
|
///
|
||
|
/// * [CreateAlbumDto] createAlbumDto (required):
|
||
|
Future<Response> createAlbumWithHttpInfo(CreateAlbumDto createAlbumDto,) async {
|
||
|
// ignore: prefer_const_declarations
|
||
|
final path = r'/album';
|
||
|
|
||
|
// ignore: prefer_final_locals
|
||
|
Object? postBody = createAlbumDto;
|
||
|
|
||
|
final queryParams = <QueryParam>[];
|
||
|
final headerParams = <String, String>{};
|
||
|
final formParams = <String, String>{};
|
||
|
|
||
|
const contentTypes = <String>['application/json'];
|
||
|
|
||
|
|
||
|
return apiClient.invokeAPI(
|
||
|
path,
|
||
|
'POST',
|
||
|
queryParams,
|
||
|
postBody,
|
||
|
headerParams,
|
||
|
formParams,
|
||
|
contentTypes.isEmpty ? null : contentTypes.first,
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/// Parameters:
|
||
|
///
|
||
|
/// * [CreateAlbumDto] createAlbumDto (required):
|
||
|
Future<AlbumResponseDto?> createAlbum(CreateAlbumDto createAlbumDto,) async {
|
||
|
final response = await createAlbumWithHttpInfo(createAlbumDto,);
|
||
|
if (response.statusCode >= HttpStatus.badRequest) {
|
||
|
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
|
||
|
}
|
||
|
// When a remote server returns no body with a status of 204, we shall not decode it.
|
||
|
// At the time of writing this, `dart:convert` will throw an "Unexpected end of input"
|
||
|
// FormatException when trying to decode an empty string.
|
||
|
if (response.body.isNotEmpty && response.statusCode != HttpStatus.noContent) {
|
||
|
return await apiClient.deserializeAsync(await _decodeBodyBytes(response), 'AlbumResponseDto',) as AlbumResponseDto;
|
||
|
|
||
|
}
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
/// Performs an HTTP 'DELETE /album/{albumId}' operation and returns the [Response].
|
||
|
/// Parameters:
|
||
|
///
|
||
|
/// * [String] albumId (required):
|
||
|
Future<Response> deleteAlbumWithHttpInfo(String albumId,) async {
|
||
|
// ignore: prefer_const_declarations
|
||
|
final path = r'/album/{albumId}'
|
||
|
.replaceAll('{albumId}', albumId);
|
||
|
|
||
|
// ignore: prefer_final_locals
|
||
|
Object? postBody;
|
||
|
|
||
|
final queryParams = <QueryParam>[];
|
||
|
final headerParams = <String, String>{};
|
||
|
final formParams = <String, String>{};
|
||
|
|
||
|
const contentTypes = <String>[];
|
||
|
|
||
|
|
||
|
return apiClient.invokeAPI(
|
||
|
path,
|
||
|
'DELETE',
|
||
|
queryParams,
|
||
|
postBody,
|
||
|
headerParams,
|
||
|
formParams,
|
||
|
contentTypes.isEmpty ? null : contentTypes.first,
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/// Parameters:
|
||
|
///
|
||
|
/// * [String] albumId (required):
|
||
|
Future<void> deleteAlbum(String albumId,) async {
|
||
|
final response = await deleteAlbumWithHttpInfo(albumId,);
|
||
|
if (response.statusCode >= HttpStatus.badRequest) {
|
||
|
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// Performs an HTTP 'GET /album/{albumId}' operation and returns the [Response].
|
||
|
/// Parameters:
|
||
|
///
|
||
|
/// * [String] albumId (required):
|
||
|
Future<Response> getAlbumInfoWithHttpInfo(String albumId,) async {
|
||
|
// ignore: prefer_const_declarations
|
||
|
final path = r'/album/{albumId}'
|
||
|
.replaceAll('{albumId}', albumId);
|
||
|
|
||
|
// ignore: prefer_final_locals
|
||
|
Object? postBody;
|
||
|
|
||
|
final queryParams = <QueryParam>[];
|
||
|
final headerParams = <String, String>{};
|
||
|
final formParams = <String, String>{};
|
||
|
|
||
|
const contentTypes = <String>[];
|
||
|
|
||
|
|
||
|
return apiClient.invokeAPI(
|
||
|
path,
|
||
|
'GET',
|
||
|
queryParams,
|
||
|
postBody,
|
||
|
headerParams,
|
||
|
formParams,
|
||
|
contentTypes.isEmpty ? null : contentTypes.first,
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/// Parameters:
|
||
|
///
|
||
|
/// * [String] albumId (required):
|
||
|
Future<AlbumResponseDto?> getAlbumInfo(String albumId,) async {
|
||
|
final response = await getAlbumInfoWithHttpInfo(albumId,);
|
||
|
if (response.statusCode >= HttpStatus.badRequest) {
|
||
|
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
|
||
|
}
|
||
|
// When a remote server returns no body with a status of 204, we shall not decode it.
|
||
|
// At the time of writing this, `dart:convert` will throw an "Unexpected end of input"
|
||
|
// FormatException when trying to decode an empty string.
|
||
|
if (response.body.isNotEmpty && response.statusCode != HttpStatus.noContent) {
|
||
|
return await apiClient.deserializeAsync(await _decodeBodyBytes(response), 'AlbumResponseDto',) as AlbumResponseDto;
|
||
|
|
||
|
}
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
/// Performs an HTTP 'GET /album' operation and returns the [Response].
|
||
|
/// Parameters:
|
||
|
///
|
||
|
/// * [bool] shared:
|
||
|
Future<Response> getAllAlbumsWithHttpInfo({ bool? shared, }) async {
|
||
|
// ignore: prefer_const_declarations
|
||
|
final path = r'/album';
|
||
|
|
||
|
// ignore: prefer_final_locals
|
||
|
Object? postBody;
|
||
|
|
||
|
final queryParams = <QueryParam>[];
|
||
|
final headerParams = <String, String>{};
|
||
|
final formParams = <String, String>{};
|
||
|
|
||
|
if (shared != null) {
|
||
|
queryParams.addAll(_queryParams('', 'shared', shared));
|
||
|
}
|
||
|
|
||
|
const contentTypes = <String>[];
|
||
|
|
||
|
|
||
|
return apiClient.invokeAPI(
|
||
|
path,
|
||
|
'GET',
|
||
|
queryParams,
|
||
|
postBody,
|
||
|
headerParams,
|
||
|
formParams,
|
||
|
contentTypes.isEmpty ? null : contentTypes.first,
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/// Parameters:
|
||
|
///
|
||
|
/// * [bool] shared:
|
||
|
Future<List<AlbumResponseDto>?> getAllAlbums({ bool? shared, }) async {
|
||
|
final response = await getAllAlbumsWithHttpInfo( shared: shared, );
|
||
|
if (response.statusCode >= HttpStatus.badRequest) {
|
||
|
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
|
||
|
}
|
||
|
// When a remote server returns no body with a status of 204, we shall not decode it.
|
||
|
// At the time of writing this, `dart:convert` will throw an "Unexpected end of input"
|
||
|
// FormatException when trying to decode an empty string.
|
||
|
if (response.body.isNotEmpty && response.statusCode != HttpStatus.noContent) {
|
||
|
final responseBody = await _decodeBodyBytes(response);
|
||
|
return (await apiClient.deserializeAsync(responseBody, 'List<AlbumResponseDto>') as List)
|
||
|
.cast<AlbumResponseDto>()
|
||
|
.toList();
|
||
|
|
||
|
}
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
/// Performs an HTTP 'DELETE /album/{albumId}/assets' operation and returns the [Response].
|
||
|
/// Parameters:
|
||
|
///
|
||
|
/// * [String] albumId (required):
|
||
|
///
|
||
|
/// * [RemoveAssetsDto] removeAssetsDto (required):
|
||
|
Future<Response> removeAssetFromAlbumWithHttpInfo(String albumId, RemoveAssetsDto removeAssetsDto,) async {
|
||
|
// ignore: prefer_const_declarations
|
||
|
final path = r'/album/{albumId}/assets'
|
||
|
.replaceAll('{albumId}', albumId);
|
||
|
|
||
|
// ignore: prefer_final_locals
|
||
|
Object? postBody = removeAssetsDto;
|
||
|
|
||
|
final queryParams = <QueryParam>[];
|
||
|
final headerParams = <String, String>{};
|
||
|
final formParams = <String, String>{};
|
||
|
|
||
|
const contentTypes = <String>['application/json'];
|
||
|
|
||
|
|
||
|
return apiClient.invokeAPI(
|
||
|
path,
|
||
|
'DELETE',
|
||
|
queryParams,
|
||
|
postBody,
|
||
|
headerParams,
|
||
|
formParams,
|
||
|
contentTypes.isEmpty ? null : contentTypes.first,
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/// Parameters:
|
||
|
///
|
||
|
/// * [String] albumId (required):
|
||
|
///
|
||
|
/// * [RemoveAssetsDto] removeAssetsDto (required):
|
||
|
Future<void> removeAssetFromAlbum(String albumId, RemoveAssetsDto removeAssetsDto,) async {
|
||
|
final response = await removeAssetFromAlbumWithHttpInfo(albumId, removeAssetsDto,);
|
||
|
if (response.statusCode >= HttpStatus.badRequest) {
|
||
|
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// Performs an HTTP 'DELETE /album/{albumId}/user/{userId}' operation and returns the [Response].
|
||
|
/// Parameters:
|
||
|
///
|
||
|
/// * [String] albumId (required):
|
||
|
///
|
||
|
/// * [String] userId (required):
|
||
|
Future<Response> removeUserFromAlbumWithHttpInfo(String albumId, String userId,) async {
|
||
|
// ignore: prefer_const_declarations
|
||
|
final path = r'/album/{albumId}/user/{userId}'
|
||
|
.replaceAll('{albumId}', albumId)
|
||
|
.replaceAll('{userId}', userId);
|
||
|
|
||
|
// ignore: prefer_final_locals
|
||
|
Object? postBody;
|
||
|
|
||
|
final queryParams = <QueryParam>[];
|
||
|
final headerParams = <String, String>{};
|
||
|
final formParams = <String, String>{};
|
||
|
|
||
|
const contentTypes = <String>[];
|
||
|
|
||
|
|
||
|
return apiClient.invokeAPI(
|
||
|
path,
|
||
|
'DELETE',
|
||
|
queryParams,
|
||
|
postBody,
|
||
|
headerParams,
|
||
|
formParams,
|
||
|
contentTypes.isEmpty ? null : contentTypes.first,
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/// Parameters:
|
||
|
///
|
||
|
/// * [String] albumId (required):
|
||
|
///
|
||
|
/// * [String] userId (required):
|
||
|
Future<void> removeUserFromAlbum(String albumId, String userId,) async {
|
||
|
final response = await removeUserFromAlbumWithHttpInfo(albumId, userId,);
|
||
|
if (response.statusCode >= HttpStatus.badRequest) {
|
||
|
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// Performs an HTTP 'PATCH /album/{albumId}' operation and returns the [Response].
|
||
|
/// Parameters:
|
||
|
///
|
||
|
/// * [String] albumId (required):
|
||
|
///
|
||
|
/// * [UpdateAlbumDto] updateAlbumDto (required):
|
||
|
Future<Response> updateAlbumInfoWithHttpInfo(String albumId, UpdateAlbumDto updateAlbumDto,) async {
|
||
|
// ignore: prefer_const_declarations
|
||
|
final path = r'/album/{albumId}'
|
||
|
.replaceAll('{albumId}', albumId);
|
||
|
|
||
|
// ignore: prefer_final_locals
|
||
|
Object? postBody = updateAlbumDto;
|
||
|
|
||
|
final queryParams = <QueryParam>[];
|
||
|
final headerParams = <String, String>{};
|
||
|
final formParams = <String, String>{};
|
||
|
|
||
|
const contentTypes = <String>['application/json'];
|
||
|
|
||
|
|
||
|
return apiClient.invokeAPI(
|
||
|
path,
|
||
|
'PATCH',
|
||
|
queryParams,
|
||
|
postBody,
|
||
|
headerParams,
|
||
|
formParams,
|
||
|
contentTypes.isEmpty ? null : contentTypes.first,
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/// Parameters:
|
||
|
///
|
||
|
/// * [String] albumId (required):
|
||
|
///
|
||
|
/// * [UpdateAlbumDto] updateAlbumDto (required):
|
||
|
Future<AlbumResponseDto?> updateAlbumInfo(String albumId, UpdateAlbumDto updateAlbumDto,) async {
|
||
|
final response = await updateAlbumInfoWithHttpInfo(albumId, updateAlbumDto,);
|
||
|
if (response.statusCode >= HttpStatus.badRequest) {
|
||
|
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
|
||
|
}
|
||
|
// When a remote server returns no body with a status of 204, we shall not decode it.
|
||
|
// At the time of writing this, `dart:convert` will throw an "Unexpected end of input"
|
||
|
// FormatException when trying to decode an empty string.
|
||
|
if (response.body.isNotEmpty && response.statusCode != HttpStatus.noContent) {
|
||
|
return await apiClient.deserializeAsync(await _decodeBodyBytes(response), 'AlbumResponseDto',) as AlbumResponseDto;
|
||
|
|
||
|
}
|
||
|
return null;
|
||
|
}
|
||
|
}
|