commonMain.org.jellyfin.sdk.api.operations.RemoteImageApi.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jellyfin-api-jvm Show documentation
Show all versions of jellyfin-api-jvm Show documentation
Official Kotlin/Java SDK for Jellyfin. org.jellyfin.sdk:jellyfin-api-jvm
// !! WARNING
// !! DO NOT EDIT THIS FILE
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.sdk.api.operations
import kotlin.Any
import kotlin.Boolean
import kotlin.Int
import kotlin.String
import kotlin.Unit
import kotlin.collections.List
import kotlin.collections.buildMap
import kotlin.collections.emptyMap
import org.jellyfin.sdk.api.client.ApiClient
import org.jellyfin.sdk.api.client.Response
import org.jellyfin.sdk.api.client.extensions.`get`
import org.jellyfin.sdk.api.client.extensions.post
import org.jellyfin.sdk.model.UUID
import org.jellyfin.sdk.model.api.ImageProviderInfo
import org.jellyfin.sdk.model.api.ImageType
import org.jellyfin.sdk.model.api.RemoteImageResult
import org.jellyfin.sdk.model.api.request.GetRemoteImagesRequest
public class RemoteImageApi(
private val api: ApiClient,
) : Api {
/**
* Downloads a remote image for an item.
*
* @param itemId Item Id.
* @param type The image type.
* @param imageUrl The image url.
*/
public suspend fun downloadRemoteImage(
itemId: UUID,
type: ImageType,
imageUrl: String? = null,
): Response {
val pathParameters = buildMap(1) {
put("itemId", itemId)
}
val queryParameters = buildMap(2) {
put("type", type)
put("imageUrl", imageUrl)
}
val data = null
val response = api.post("/Items/{itemId}/RemoteImages/Download", pathParameters,
queryParameters, data)
return response
}
/**
* Gets available remote image providers for an item.
*
* @param itemId Item Id.
*/
public suspend fun getRemoteImageProviders(itemId: UUID): Response> {
val pathParameters = buildMap(1) {
put("itemId", itemId)
}
val queryParameters = emptyMap()
val data = null
val response = api.`get`>("/Items/{itemId}/RemoteImages/Providers",
pathParameters, queryParameters, data)
return response
}
/**
* Gets available remote images for an item.
*
* @param itemId Item Id.
* @param type The image type.
* @param startIndex Optional. The record index to start at. All items with a lower index will be
* dropped from the results.
* @param limit Optional. The maximum number of records to return.
* @param providerName Optional. The image provider to use.
* @param includeAllLanguages Optional. Include all languages.
*/
public suspend fun getRemoteImages(
itemId: UUID,
type: ImageType? = null,
startIndex: Int? = null,
limit: Int? = null,
providerName: String? = null,
includeAllLanguages: Boolean? = false,
): Response {
val pathParameters = buildMap(1) {
put("itemId", itemId)
}
val queryParameters = buildMap(5) {
put("type", type)
put("startIndex", startIndex)
put("limit", limit)
put("providerName", providerName)
put("includeAllLanguages", includeAllLanguages)
}
val data = null
val response = api.`get`("/Items/{itemId}/RemoteImages", pathParameters,
queryParameters, data)
return response
}
/**
* Gets available remote images for an item.
*
* @param request The request parameters
*/
public suspend fun getRemoteImages(request: GetRemoteImagesRequest): Response =
getRemoteImages(
itemId = request.itemId,
type = request.type,
startIndex = request.startIndex,
limit = request.limit,
providerName = request.providerName,
includeAllLanguages = request.includeAllLanguages,
)
}