You are looking at historical revision 39427 of this page. It may differ significantly from its current revision.

transmission

Description

An egg to work with Transmission's RPC. It assumes familiarity with the spec.

Author

siiky

Repository

https://github.com/siiky/transmission.scm

Requirements

The following eggs are required for using this egg:

The following eggs are required for testing this egg:

API

transmission module

Parameters
[parameter] *host*
[parameter] *url*
[parameter] *port*
[parameter] *username*
[parameter] *password*
[parameter] *session-id*
High-level RPC API

Every method of the spec is defined, and naming is followed almost directly. In the spec, all methods and most arguments follow the kebab-case convention. The exceptions are a few arguments in camelCase -- these are converted to kebab-case in this egg: e.g., the key argument for queuePosition is called queue-position. Note, however, that the messages are left untouched: a message to/from the server will still use queuePosition as the key, NOT queue-position.

Almost all required parameters are positional arguments in the library -- the only exception is the ids argument, which is always a key argument, even for methods with required ids, because it defaults to no IDs to avoid acting on torrents by accident.

All optional arguments in the spec are key arguments in the library.

[procedure] torrent-source/filename
[procedure] torrent-source/metainfo

Create a torrent source to use with torrent-add. A torrent can be added from a magnet URL; or from a torrent file, given the file's path, which must be accessible by the Transmission daemon, or the contents of the file, encoded in Base64.

torrent-source/filename is used for magnets and file paths; torrent-source/metainfo is used for Base64 encoded torrent files.

Results

Every API procedure returns a result, which is a SRFI-189 Either object. The most useful and most commonly used procedures for handling results are renamed and exported. On top of these, some others are defined.

[procedure] (true . _)
[procedure] (false . _)

true and false return #t and #f respectively, independently of the arguments they're called with.

[procedure] (result/error obj ...)
[procedure] (result/error? obj)
[procedure] (result/ok obj ...)
[procedure] (result/ok? obj)
[procedure] (result? obj)
[procedure] (result-bind result mproc1 mproc2 ...)
[procedure] (result-ref result failure [success])
[procedure] (exception->result pred thunk)

Renames of SRFI-189. The result/error related functions are the left related functions from SRFI-189; and the result/ok related functions are the right related functions from SRFI-189.

[procedure] (result/error-ref result #!optional (fail false))
[procedure] (result/ok-ref result #!optional (fail false))

If the object is of the expected alternative (result/error or result/ok), return the values contained in it; otherwise, call fail on the values contained in the object, which by default, returns #f.

[procedure] (result-ref* result)

Return the values contained in a result object, whether it's a result/error or result/ok.

[procedure] (default-error-proc result tag req resp)
[procedure] (with-transmission-result result success-proc #!optional (error-proc default-error-proc))

Convenient way to handle a single RPC call's result.

with-transmission-result is similar to result-ref (either-ref from SRFI-189)), except that the order of the success and failure procedures is swapped. The failure procedure defaults to default-error-proc, which calls error with a generic error message.

success-proc should be a procedure of 4 parameters: the arguments and tag fields of a reply message, the uri-common request object, and the intarweb response object.

failure-proc should be a procedure that accepts 1 or 4 parameters: if only one argument is given, it is a condition; if 4 arguments are given, they are the result and tag fields of a reply message, the uri-common request object, and the intarweb response object.

Low-level API
[syntax] (make-rpc-call (method (required required-handler) ...) (key default key-handler) ...)
[syntax] (make-rpc-call method (key default key-handler) ...)
[syntax] (define-rpc-call (method required ...) key ...)
[syntax] (define-rpc-call method key ...)
[syntax] (export-rpc-call (method required ...) key ...)
[syntax] (export-rpc-call method key ...)
[syntax] (export-3.1/4.6 method)

make-rpc-call creates a procedure to represent an RPC method.

define-rpc-call is like make-rpc-call but defines the created procedure.

export-rpc-call is like define-rpc-call but exports the defined procedure.

export-3.1/4.6 exports RPC procedures of sections 3.1 and 4.6 of the spec, which have a single optional ids argument.

method is a method name, which will be used as the method name in messages and, in the case of define-rpc-call, export-rpc-call, and export-3.1/4.6, the name of the defined procedure.

required is the name of a required argument. It will not be used in messages.

key is the name of an optional (key) argument. It will be used as the key name in the created procedure, but not in messages.

required-handler and key-handler are functions that will process a given value, to assure it has the right type/format, and return an entry ready to be inserted into the arguments object of a message, i.e., they must return a (key . value) pair that will later be converted to JSON.

default is the default value of an optional (key) argument.

[procedure] (rpc-call method #!key (arguments #f) (tag #f))

Make an RPC call. method is the name of the RPC method, and arguments is the arguments object, containing both required and optional arguments.

[procedure] (handle-409 condition request message)
[procedure] (http-call request message)
[procedure] (update-request-session-id request #!optional (session-id (*session-id*)))
[procedure] (make-serialized-message method arguments tag)
[procedure] (make-message method arguments tag)
[procedure] (make-rpc-request host url port username password #!optional (session-id (*session-id*)))

transmission.utils module

[syntax] (alist-let alist (key ...) body ...)
[syntax] (alist-let/and alist (key ...) body ...)
[syntax] (alist-let/nor alist (key ...) body ...)

Equivalent to:

(let ((key (alist-ref 'key alist))
      ...)
  body
  ...)

Except that, with alist-let/and, if alist is false, the value of the whole expression is false; and with alist-let/nor, if alist is false, the value of the whole expression is true.

[procedure] (unique-tag! #!optional (new-n #f))

Return an unique tag, that starts at 0 and is incremented by 1 on each call. If new-n is given and is a fixnum?, set the internal variable to new-n for future use.

[constant] status/stopped
[constant] status/check-wait
[constant] status/check
[constant] status/download-wait
[constant] status/download
[constant] status/seed-wait
[constant] status/seed

The torrent status constants.

[constant] priority/low
[constant] priority/normal
[constant] priority/high

The priority constants -- for bandwidth-priority.

Examples

(import srfi-1 transmission transmission.utils)

(parameterize ((*host* "hostname")
               (*username* "username")
               (*password* "password"))
  (with-transmission-result
    (torrent-get '("downloadDir" "id" "name" "status" "uploadRatio") #:ids #f)
    (lambda (arguments . _)
      (define (want-torrent? tor)
        (alist-let/and tor (downloadDir status uploadRatio)
                       (and (= status status/seed)
                            (> uploadRatio 1)
                            (string=? downloadDir "/some/path/"))))
      (alist-let/and arguments (torrents)
                     (let ((wanted-tors (filter want-torrent? (vector->list torrents))))
                       (for-each print wanted-tors))))
    (lambda (result . _)
      (error 'here "torrent-get call failed with the following error" result))))

License

 This is free and unencumbered software released into the public domain.
 
 Anyone is free to copy, modify, publish, use, compile, sell, or
 distribute this software, either in source code form or as a compiled
 binary, for any purpose, commercial or non-commercial, and by any
 means.
 
 In jurisdictions that recognize copyright laws, the author or authors
 of this software dedicate any and all copyright interest in the
 software to the public domain. We make this dedication for the benefit
 of the public at large and to the detriment of our heirs and
 successors. We intend this dedication to be an overt act of
 relinquishment in perpetuity of all present and future rights to this
 software under copyright law.
 
 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 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.
 
 For more information, please refer to <http://unlicense.org>

Version History

0.2.0 (2020/12/09)

0.1.1 (2020/12/02)

Add with-transmission-reply and update the documentation accordingly.

0.1.0 (2020/12/01)

Initial release with all methods defined, and almost all tested.