Skip to main content

Twisted API for Koji

Project description

Async interface to Koji, using Twisted

https://travis-ci.org/ktdreyer/txkoji.svg?branch=master https://badge.fury.io/py/txkoji.svg

Access Koji’s XML-RPC API asynchronously (non-blocking) using the Twisted framework.

This supports the GSSAPI or Client SSL login methods.

Simple Example: Fetching a user’s name

from txkoji import Connection
from twisted.internet import defer
from twisted.internet.task import react


@defer.inlineCallbacks
def example(reactor):
    koji = Connection('brew')
    # Fetch a user.
    # You may pass an ID or a krb principal here
    user = yield koji.getUser(3595)
    # user is a Munch (dict-like) object.
    print(user.name)


if __name__ == '__main__':
    react(example)

Connecting to a Koji Hub

To connect to a Koji hub, create a new txkoji.Connection instance.

You must pass a string to the constructor. This string is a profile name. For example, if you call Connector('mykoji'), then txkoji will search /etc/koji.conf.d/*.conf for the [mykoji] config section. This matches what the regular Koji client code does.

Making XML-RPC calls

Koji Hub is an XML-RPC server. You can call any method on the Connection class instance and txkoji will treat it as an XML-RPC call to the hub. For example, this Twisted inlineCallbacks-style code looks up information about a given task ID and tag ID:

@defer.inlineCallbacks
def example(reactor):
    koji = Connection('mykoji')

    task = yield koji.getTaskInfo(10000)
    print(task.method)  # "createImage"

    tag = yield koji.getTag(2000)
    print(tag.name)  # "foo-build"

To learn the full Koji XML-RPC API:

koji list-api

You can also read the koji source code to find out details about how each method works.

Logging in

Your Koji hub must support GSSAPI or Client SSL authentication. You must have a valid Kerberos ticket or SSL keypair.

@defer.inlineCallbacks
def example(reactor):
    koji = Connection('mykoji')

    result = yield login()
    print(result)  # "True"
    print('session-id: %s' % koji.session_id)

    # "Who am I?"
    user = yield koji.getLoggedInUser()
    print(user)

Caching long-lived object names

Sometimes all you have is a user id number or tag id number, and you want the user’s name or tag’s name instead.

txkoji includes a read-through cache for obtaining the user name or tag name. See examples/cache.py for an example. txkoji’s cache module stores its data in a txkoji subdirectory of the location specified with the $XDG_CACHE_HOME environment variable if that is set. It will fall back to using ~/.cache/txkoji if the $XDG_CACHE_HOME environment variable is not set.

Rich objects

The following RPC methods will return special classes that inherit from the Munch class:

  • getBuild returns txkoji.build.Build

  • listBuilds returns a list of txkoji.build.Build

  • getTaskInfo returns txkoji.task.Task

  • getPackage returns txkoji.package.Package

These classes have their own special helper methods to implement things I found interesting:

  • datetime conversions for the start/completion timestamps,

  • url properties for representing the objects in Kojiweb,

  • Unified property attributes across task methods, like tag, package or is_scratch.

More special return values:

  • getAverageBuildDuration returns a datetime.timedelta object instead of a raw float, because this is more useful to do time arithmetic.

  • The task_id property is populated on OSBS’s CG container builds (a workaround for https://pagure.io/koji/issue/215).

TODO:

  • More KojiException subclasses for other possible XML-RPC faults?

  • Implement krbV authentication (probably not unless there is an alternative to python-krbV).

  • MikeM noted, the callnum parameter will need special handling. We might need Twisted’s DeferredLock to ensure we only have one auth’d RPC in flight at a time. It’s not really clear to me if we can actually hit a callnum error here. More integration testing needed for this.

Packages that use this package

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

txkoji-0.6.1.tar.gz (16.7 kB view details)

Uploaded Source

File details

Details for the file txkoji-0.6.1.tar.gz.

File metadata

  • Download URL: txkoji-0.6.1.tar.gz
  • Upload date:
  • Size: 16.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.9.1 pkginfo/1.3.2 requests/2.18.4 setuptools/37.0.0 requests-toolbelt/0.8.0 tqdm/4.19.6 CPython/2.7.15

File hashes

Hashes for txkoji-0.6.1.tar.gz
Algorithm Hash digest
SHA256 6fd2596d18779a47a6d0ebcb37c1a35e03f1e2116a21a048ffb9870a385fa7df
MD5 c295161197ff41963f75e83571fb5f35
BLAKE2b-256 9d659c34829e68c522acfe81946f1b2df6899ea44ebb555f2fd134ae61c067d4

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page