Skip to content

oubiwann/clj-openstack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

clj-openstack

Pure Clojure Bindings for OpenStack Clouds

Fun.

This project doesn't really aim to be anything special. As we need some functionality, we'll add it. Initial focus will be on supporting only a subset of the OpenStack Cloud Services (initially only Identity and Compute).

clj-openstack is up on Clojars. You can add it to your project.clj for automatic download with the following:

(defproject your-project "1.2.3"
  ...
  :dependencies [[org.clojure/clojure "1.5.1"]
                  ...
                  [clj-openstack "0.1.1"]]
  ...)

You can then use it in your project like so:

(ns your-project.client
  (:require [openstack.api :as os-api]))

Or from the REPL:

(require '[openstack.api :as rax-api])

The easiest way to get started with clj-openstack is to play with it in the REPL. You'll need to download the code for this:

$ git clone https://github.com/oubiwann/clj-openstack
$ cd clj-openstack

Now just do this at the command line prompt:

$ make shell

Which will dump you in the openstack.api namespace:

nREPL server started on port 62531 on host 127.0.0.1
REPL-y 0.2.1
Clojure 1.5.1
    Docs: (doc function-name-here)
          (find-doc "part-of-name-here")
  Source: (source function-name-here)
 Javadoc: (javadoc java-object-or-class-here)
    Exit: Control+D or (exit) or (quit)
 Results: Stored in vars *1, *2, *3, an exception in *e

openstack.api=>

For the examples below, you will need to provide your own username and password.

To make things easier to read in the examples below, let's set up pretty-printing:

openstack.api=> (require '[clojure.pprint :refer [pprint]])
nil
openstack.api=>

You may login via password entered directly:

openstack.api=> (def response (login :username "alice" :password "z0mg1!1"))
#'openstack.api/response
openstack.api=>

Via the ~/.openstack/providers.ini configuration file:

[my-cloud]
username = bob
password = 12345
openstack.api=> (login :provider "my-cloud")
{:orig-content-encoding "gzip" ... }
openstack.api=>

Extracted from the environment:

openstack.api=> (login :env true)
{:orig-content-encoding "gzip" ... }
openstack.api=>

Extracted from files:

openstack.api=> (login :files true)
{:orig-content-encoding "gzip" ... }
openstack.api=>

Implicit extraction (first env is checked, and then files):

openstack.api=> (login)
{:orig-content-encoding "gzip" ... }
openstack.api=>

Attempting to use a bad keyword or only one of a required keyword pair will throw an error:

openstack.api=> (login :username "alice")

ExceptionInfo AuthError: Missing named parameter  ...
openstack.api=>

With our response data saved, we can now perform several operations with auth utility functions.

Getting the token:

openstack.api=> (pprint (get-token response))
"482664e7cf97408e82f512fad93abc98"
nil
openstack.api=>

TBD

This project was started in 2009 by Samuel Hughes. After a first implementation against the v1 API of Rackspace Cloud Servers, the project went into hibernation.

Clojure is a delight to code in, and although it supports fabulous Java interop, using jclouds from Clojure is a bit tedious. One alternative would be to take the Clojure-idiomatic example and grow that as a wrapper around jclouds. That was seriously considered. Another alterative was to take Samuel Hughes' work based on technomancy's clojure-http-client and develop a pure Clojure implementation.

That just sounded like more fun :-) So here we are.

There are two efforts driving this work:

  1. Rackspace Cloud Servers users who write in Clojure want to have a library that can use quickly, easily, and in a Clojure-idiomatic way.
  2. storm-deploy users would like to be able to deploy to Rackspace Cloud Servers.

A note about that last point: pallet (used by storm-deploy) currently uses jclouds, so it might simply be easier to use jclouds. Only time will tell. In the meantime, we'll have fun playing with a pure-Clojure implementation.

In the four years since this project was started, HTTP clients in Clojure have come a long way. We will be migrating away from the original implementation's choice of clojure-http-client.

The two commonly recommended clients are:

  • clj-http for synchronous/blocking client calls; this library is a Clojure wrapper for the Apache HTTP client library.
  • http.async.client for asynchronous usage; it's based on the Asynchronous Http Client for Java.

We have started with the synchronous client. Hopefully, we'll add async support at some point in the future. No promises. We'll defer that for later.

To use or develop against OpenStack Cloud APIs, we've provided the following (hopefully) useful links:

About

OpenStack API for Clojure

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •