4b3e640175
The recommended version should always be the latest server version (which is stored in apiVersion). The minimumVersion should be the latest server version without significant API changes and is manually updated. |
||
---|---|---|
.github | ||
buildSrc | ||
gradle | ||
jellyfin-api | ||
jellyfin-core | ||
jellyfin-model | ||
jellyfin-platform-android | ||
openapi-generator | ||
samples/kotlin-cli | ||
.editorconfig | ||
.gitattributes | ||
.gitignore | ||
build.gradle.kts | ||
CODEOWNERS | ||
detekt.yml | ||
gradle.properties | ||
gradlew | ||
gradlew.bat | ||
LICENSE | ||
openapi.json | ||
README.md | ||
settings.gradle.kts |
Jellyfin Kotlin SDK
Part of the Jellyfin Project
The Jellyfin Kotlin SDK is a library implementing the Jellyfin API to easily access servers. It is currently available for the JVM and Android.
Setup
Releases are published to mavenCentral()
. Make sure to use the correct library depending on your
platform.
Gradle with Kotlin DSL
implementation("org.jellyfin.sdk:jellyfin-core:$sdkVersion")
// Or when using Android
implementation("org.jellyfin.sdk:jellyfin-platform-android:$sdkVersion")
Gradle with Groovy
implementation "org.jellyfin.sdk:jellyfin-core:$sdkVersion"
// Or when using Android
implementation "org.jellyfin.sdk:jellyfin-platform-android:$sdkVersion"
Maven
<dependency>
<groupId>org.jellyfin.sdk</groupId>
<artifactId>jellyfin-core</artifactId>
<version>$sdkVersion</version>
</dependency>
<!-- Or when using Android -->
<dependency>
<groupId>org.jellyfin.sdk</groupId>
<artifactId>jellyfin-platform-android</artifactId>
<version>$sdkVersion</version>
</dependency>
Usage
Creating a Jellyfin instance
Most functionality of the SDK requires an instance of the Jellyfin class. This class holds the configuration required to make API calls and platform specific options. The Jellyfin class can be instantiated using a custom Kotlin DSL:
val jellyfin = Jellyfin {
clientInfo = ClientInfo(name = "My awesome client!", version = "1.33.7",)
// Uncomment if not using jellyfin-platform-android:
// deviceInfo = DeviceInfo(id = UUID.randomUUID().toString(), name = "Awesome device",)
// Uncomment when using jellyfin-platform-android:
// android()
}
Make sure to supply the client and device information if you want to make API calls. Use the
android()
helper function when targeting Android to enable server discovery and set the device
information automatically.
Creating an API instance
API calls require an API instance. This can be done with the createApi function. It requires a server address. The client and device information are set automatically but can be changed. All properties can be changed later in the API instance.
val api = jellyfin.createApi(
baseUrl = "https://demo.jellyfin.org/stable/",
// Optional options:
// accessToken = "access token or api key"
// clientInfo = ClientInfo(), // defaults to parent info
// deviceInfo = DeviceInfo(), // defaults to parent info
)
Authenticating a user
All API operations are grouped. To make use of an operation you need to construct an instance of the group and give it your API instance.
val userApi = UserApi(api)
val authenticationResult by userApi.authenticateUserByName(
username = "demo",
password = "",
)
// Use access token in api instance
api.accessToken = authenticationResult.accessToken
// Print session information
println(authenticationResult.sessionInfo)
WebSockets
Jellyfin uses WebSockets to communicate events like library changes and activities. This API can be used with the special WebSocketApi class.
val webSocketApi = WebSocketApi(api)
// Publish messages
webSocketApi.publish(ActivityLogEntryStartMessage())
webSocketApi.publish(SessionsStartMessage())
webSocketApi.publish(ScheduledTasksInfoStartMessage())
// Listen for messages
webSocketApi.subscribe().collect { message ->
println(message)
}
Server discovery
The server discovery feature can be used to find servers on the local network, normalize inputted server addresses and to determine the best server to use from a list of adresses.
// Discover servers on the local network
jellyfin.discovery.discoverLocalServers().collect {
println("Server ${it.name} was found at address ${it.address}")
}
// Get all candidates for a given input
val candidates = jellyfin.discovery.getAddressCandidates("demo.jellyfin.org/stable")
// Get best option from the candidates
val recommended = jellyfin.discovery.getRecommendedServer(candidates)
More examples
We provide a few small projects in the samples folder. The samples are used for testing new features and can be used as a basis for your own application.
Projects using the SDK
Official Jellyfin clients
- Jellyfin for Android is the official Android client for phones and tablets.
- Jellyfin for Android TV is the official Android TV client for Android TV, Nvidia Shield, Amazon Fire TV and Google TV.
Third party clients
- Gelli is a music-focused Android client.
Want to add your project? Please create a pull request!