// // 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 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 = []; final headerParams = {}; final formParams = {}; const contentTypes = ['application/json']; return apiClient.invokeAPI( path, 'PUT', queryParams, postBody, headerParams, formParams, contentTypes.isEmpty ? null : contentTypes.first, ); } /// Parameters: /// /// * [String] albumId (required): /// /// * [AddAssetsDto] addAssetsDto (required): Future 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), 'AddAssetsResponseDto',) as AddAssetsResponseDto; } return null; } /// Performs an HTTP 'PUT /album/{albumId}/users' operation and returns the [Response]. /// Parameters: /// /// * [String] albumId (required): /// /// * [AddUsersDto] addUsersDto (required): Future 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 = []; final headerParams = {}; final formParams = {}; const contentTypes = ['application/json']; return apiClient.invokeAPI( path, 'PUT', queryParams, postBody, headerParams, formParams, contentTypes.isEmpty ? null : contentTypes.first, ); } /// Parameters: /// /// * [String] albumId (required): /// /// * [AddUsersDto] addUsersDto (required): Future 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 createAlbumWithHttpInfo(CreateAlbumDto createAlbumDto,) async { // ignore: prefer_const_declarations final path = r'/album'; // ignore: prefer_final_locals Object? postBody = createAlbumDto; final queryParams = []; final headerParams = {}; final formParams = {}; const contentTypes = ['application/json']; return apiClient.invokeAPI( path, 'POST', queryParams, postBody, headerParams, formParams, contentTypes.isEmpty ? null : contentTypes.first, ); } /// Parameters: /// /// * [CreateAlbumDto] createAlbumDto (required): Future 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 deleteAlbumWithHttpInfo(String albumId,) async { // ignore: prefer_const_declarations final path = r'/album/{albumId}' .replaceAll('{albumId}', albumId); // ignore: prefer_final_locals Object? postBody; final queryParams = []; final headerParams = {}; final formParams = {}; const contentTypes = []; return apiClient.invokeAPI( path, 'DELETE', queryParams, postBody, headerParams, formParams, contentTypes.isEmpty ? null : contentTypes.first, ); } /// Parameters: /// /// * [String] albumId (required): Future 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/count-by-user-id' operation and returns the [Response]. Future getAlbumCountByUserIdWithHttpInfo() async { // ignore: prefer_const_declarations final path = r'/album/count-by-user-id'; // ignore: prefer_final_locals Object? postBody; final queryParams = []; final headerParams = {}; final formParams = {}; const contentTypes = []; return apiClient.invokeAPI( path, 'GET', queryParams, postBody, headerParams, formParams, contentTypes.isEmpty ? null : contentTypes.first, ); } Future getAlbumCountByUserId() async { final response = await getAlbumCountByUserIdWithHttpInfo(); 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), 'AlbumCountResponseDto',) as AlbumCountResponseDto; } return null; } /// Performs an HTTP 'GET /album/{albumId}' operation and returns the [Response]. /// Parameters: /// /// * [String] albumId (required): Future getAlbumInfoWithHttpInfo(String albumId,) async { // ignore: prefer_const_declarations final path = r'/album/{albumId}' .replaceAll('{albumId}', albumId); // ignore: prefer_final_locals Object? postBody; final queryParams = []; final headerParams = {}; final formParams = {}; const contentTypes = []; return apiClient.invokeAPI( path, 'GET', queryParams, postBody, headerParams, formParams, contentTypes.isEmpty ? null : contentTypes.first, ); } /// Parameters: /// /// * [String] albumId (required): Future 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: /// /// * [String] assetId: /// Only returns albums that contain the asset Ignores the shared parameter undefined: get all albums Future getAllAlbumsWithHttpInfo({ bool? shared, String? assetId, }) async { // ignore: prefer_const_declarations final path = r'/album'; // ignore: prefer_final_locals Object? postBody; final queryParams = []; final headerParams = {}; final formParams = {}; if (shared != null) { queryParams.addAll(_queryParams('', 'shared', shared)); } if (assetId != null) { queryParams.addAll(_queryParams('', 'assetId', assetId)); } const contentTypes = []; return apiClient.invokeAPI( path, 'GET', queryParams, postBody, headerParams, formParams, contentTypes.isEmpty ? null : contentTypes.first, ); } /// Parameters: /// /// * [bool] shared: /// /// * [String] assetId: /// Only returns albums that contain the asset Ignores the shared parameter undefined: get all albums Future?> getAllAlbums({ bool? shared, String? assetId, }) async { final response = await getAllAlbumsWithHttpInfo( shared: shared, assetId: assetId, ); 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') as List) .cast() .toList(); } return null; } /// Performs an HTTP 'DELETE /album/{albumId}/assets' operation and returns the [Response]. /// Parameters: /// /// * [String] albumId (required): /// /// * [RemoveAssetsDto] removeAssetsDto (required): Future 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 = []; final headerParams = {}; final formParams = {}; const contentTypes = ['application/json']; return apiClient.invokeAPI( path, 'DELETE', queryParams, postBody, headerParams, formParams, contentTypes.isEmpty ? null : contentTypes.first, ); } /// Parameters: /// /// * [String] albumId (required): /// /// * [RemoveAssetsDto] removeAssetsDto (required): Future removeAssetFromAlbum(String albumId, RemoveAssetsDto removeAssetsDto,) async { final response = await removeAssetFromAlbumWithHttpInfo(albumId, removeAssetsDto,); 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}/user/{userId}' operation and returns the [Response]. /// Parameters: /// /// * [String] albumId (required): /// /// * [String] userId (required): Future 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 = []; final headerParams = {}; final formParams = {}; const contentTypes = []; return apiClient.invokeAPI( path, 'DELETE', queryParams, postBody, headerParams, formParams, contentTypes.isEmpty ? null : contentTypes.first, ); } /// Parameters: /// /// * [String] albumId (required): /// /// * [String] userId (required): Future 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 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 = []; final headerParams = {}; final formParams = {}; const contentTypes = ['application/json']; return apiClient.invokeAPI( path, 'PATCH', queryParams, postBody, headerParams, formParams, contentTypes.isEmpty ? null : contentTypes.first, ); } /// Parameters: /// /// * [String] albumId (required): /// /// * [UpdateAlbumDto] updateAlbumDto (required): Future 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; } }