Socket
Socket
Sign inDemoInstall

org.drewcarlson:qbittorrent-client-iossimulatorarm64

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

org.drewcarlson:qbittorrent-client-iossimulatorarm64

Kotlin wrapper for the qBittorrent Web API using Ktor.


Version published
Maintainers
1
Source

qBittorrent Kotlin

Maven Central

Multiplatform Kotlin wrapper for the qBittorrent Web API using Ktor.

Features

  • Targets qBittorrent WebUI API v2.8.3
  • Two modules: client contains all the HTTP code, models contains only the serializable data models
  • Automatic authentication handling when interacting with the API
  • Coroutine Flow APIs wrapping the syncing endpoints
  • Add torrents with HTTP/Magnet URLs and file paths

Usage

For a comprehensive list of available endpoints and to understand the returned data, see the qBittorrent API Docs.

QBittorrentClient only requires baseUrl assuming default credentials are used.

val client = QBittorrentClient(
    baseUrl = "http://localhost:8080",
    username = "admin",
    password = "adminadmin",
    // When subscribed to a syncing Flow, the API is polled at this rate
    mainDataSyncMs = 5000L,
    httpClient = HttpClient(),
    dispatcher = Dispatchers.Default,
)

Add a new torrent:

client.addTorrent {
    // Add HTTP/Magnet URLs:
    urls.add("magnet:?xt=urn:btih:c12fe1c06bba254a9dc9f519b335aa7c1367a88a")
    // Or torrent file paths:
    torrents.add("~/Downloads/my.torrent")
    // Or torrent file names and ByteArrays:
    rawTorrents["my.torrent"] = getFileBytes()
    // ... configure other optional parameters
    savepath = "/downloads"
}

Subscribe to torrent updates:

client.torrentFlow("c12fe1c06bba254a9dc9f519b335aa7c1367a88a")
    .collect { torrent ->
        println("${torrent.name} : ${torrent.state}")
    }

Download

Maven Central Sonatype Nexus (Snapshots)

repositories {
  mavenCentral()
  // (Optional) For Snapshots:
  maven(url = "https://s01.oss.sonatype.org/content/repositories/snapshots/")
}

dependencies {
  implementation("org.drewcarlson:qbittorrent-client:$qbittorrent_version")
  
  // Optional: Just the data models without the client/http lib.
  implementation("org.drewcarlson:qbittorrent-models:$qbittorrent_version")
}

Note: it is required to specify a Ktor client engine implementation. (Documentation)

dependencies {
  // Jvm/Android
  implementation("io.ktor:ktor-client-okhttp:$ktor_version")
  implementation("io.ktor:ktor-client-android:$ktor_version")
  // iOS
  implementation("io.ktor:ktor-client-darwin:$ktor_version")
  // macOS/Windows/Linux
  implementation("io.ktor:ktor-client-curl:$ktor_version")
  // Javascript/NodeJS
  implementation("io.ktor:ktor-client-js:$ktor_version")
}

License

Copyright (c) 2020 Andrew Carlson

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

FAQs

Package last updated on 12 Jul 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc