Kotlin SDK for Jellyfin, supporting Android and JVM targets
Go to file
2021-12-27 16:12:30 +01:00
.github Use Java 17 as default and move to Adoptium distribution (#321) 2021-10-04 19:15:16 +02:00
buildSrc Require explicit enabling of publishing (#331) 2021-10-17 14:36:57 +00:00
docs/migration Add v1.1 migration documentation (#325) 2021-10-03 16:06:28 +02:00
gradle Update all dependencies to latest version 2021-10-17 11:06:11 +02:00
jellyfin-api Fix SerializationException not catched in RawResponse (#347) 2021-12-27 16:12:19 +01:00
jellyfin-core Require explicit enabling of publishing (#331) 2021-10-17 14:36:57 +00:00
jellyfin-model Update generated sources 2021-12-27 16:12:30 +01:00
openapi-generator Add DisplayPreferencesDtoNullabilityFixHook 2021-12-27 16:12:29 +01:00
samples Add Api instances to ApiClient as extension properties (#324) 2021-09-20 21:49:30 +02:00
testutils Use testutils in all modules (#328) 2021-10-06 22:39:13 +02:00
.editorconfig Add DefaultValueHook for setting default operation parameter values (#270) 2021-06-12 15:10:33 +02:00
.gitattributes Add .api files 2021-04-03 10:59:54 +02:00
.gitignore Update gitignore 2020-09-13 13:05:34 +02:00
android-lint.xml Miscellaneous build script changes (#289) 2021-07-08 23:03:33 +02:00
build.gradle.kts Require explicit enabling of publishing (#331) 2021-10-17 14:36:57 +00:00
CODEOWNERS Add CODEOWNERS file 2021-03-18 22:08:46 +01:00
detekt.yaml Miscellaneous build script changes (#289) 2021-07-08 23:03:33 +02:00
gradle.properties Use Java 17 as default and move to Adoptium distribution (#321) 2021-10-04 19:15:16 +02:00
gradlew Update Gradle Wrapper from 7.1.1 to 7.2. (#305) 2021-08-18 17:06:07 +02:00
gradlew.bat Update Gradle Wrapper from 6.7 to 6.8.2. 2021-02-22 04:19:49 +00:00
LICENSE Update license to LGPL 3.0 2020-09-13 17:08:50 +02:00
openapi.json Update generated sources to 10.7.7 (#320) 2021-09-08 19:34:01 +02:00
README.md Add Api instances to ApiClient as extension properties (#324) 2021-09-20 21:49:30 +02:00
settings.gradle.kts Add testutils module for shared helper functions for unit tests 2021-10-06 19:47:07 +02:00

Jellyfin Kotlin SDK

Part of the Jellyfin Project


Logo Banner

LGPL 3.0 license Current Release Maven Central Release
Donate Chat on Matrix Join our Subreddit Release RSS Feed Master Commits RSS Feed


The Jellyfin Kotlin SDK is a library implementing the Jellyfin API to easily access servers. It is currently available for the JVM and Android 4.4 and up. Java 8 or higher is required. Android versions below Android 8 should use library desugaring.

Setup

Releases are published to mavenCentral(). Make sure to use the correct library depending on your platform.

Latest version on Maven Central

Gradle with Kotlin DSL

implementation("org.jellyfin.sdk:jellyfin-core:$sdkVersion")
Gradle with Groovy
implementation "org.jellyfin.sdk:jellyfin-core:$sdkVersion"
Maven
<dependency>
    <groupId>org.jellyfin.sdk</groupId>
    <artifactId>jellyfin-core</artifactId>
    <version>$sdkVersion</version>
</dependency>
Using SNAPSHOT versions

When working on new features in your application you might need a build of the SDK targetting the next server version. For this use case we publish two SNAPSHOT releases: master-SNAPSHOT and openapi-unstable-SNAPSHOT. To use the snaphot versions, add the snapshot repository to your build script: https://s01.oss.sonatype.org/content/repositories/snapshots/

An example using Gradle with Kotlin DSL that only allows the master-SNAPSHOT version:

repositories {
    maven("https://s01.oss.sonatype.org/content/repositories/snapshots/") {
        content {
            // Only allow SDK snapshots
            includeVersionByRegex("org\\.jellyfin\\.sdk", ".*", "master-SNAPSHOT")
        }
    }
}

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 = createJellyfin {
    clientInfo = ClientInfo(name = "My awesome client!", version = "1.33.7",)

    // Uncomment when using android:
    // context = /* Android Context */
}

Make sure to supply the client information if you want to make API calls. The context is required for Android applications.

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
    // httpClientOptions = HttpClientOptions() // allows setting additional options
)

Authenticating a user

All API operations are grouped. To make use of an operation you need to first get the group from your ApiClient instance. All groups are defined as extension functions and you can alternatively construct the API instances manually.

val userApi = api.userApi
// or
val userApi = UserApi(api)

try {
    val authenticationResult by userApi.authenticateUserByName(
        username = "demo", 
        password = "",
    )
    
    // Use access token in api instance
    api.accessToken = authenticationResult.accessToken
    
    // Print session information
    println(authenticationResult.sessionInfo)
} catch(err: ApiClientException) {
    // Catch exceptions
    println("Something went wrong! ${err.message}")
}

WebSockets

Jellyfin uses WebSockets to communicate events like library changes and activities. This API can be used with the special WebSocketApi class.

// 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 a flow of potential servers to connect to
val recommended = jellyfin.discovery.getRecommendedServers(candidates, RecommendedServerInfoScore.GOOD)

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

Third party clients

  • Gelli is a music-focused Android client.

Want to add your project? Please create a pull request!