distil/artifice/auth.py
adriant 8c65f11a26 Breaking artifice.interface into a couple of extra modules.
also general clean up in artifice.interface

fixes elsewhere to account for new modules created from artifice.interface
2014-03-05 12:47:52 +13:00

33 lines
809 B
Python

import requests
import json
import urllib
# Provides authentication against Openstack
from keystoneclient.v2_0 import client as KeystoneClient
class NotFound(BaseException):
pass
class Keystone(KeystoneClient.Client):
def tenant_by_name(self, name):
authenticator = self.auth_url
url = "%(url)s/tenants?%(query)s" % {
"url": authenticator,
"query": urllib.urlencode({"name": name})
}
r = requests.get(url, headers={
"X-Auth-Token": self.auth_token,
"Content-Type": "application/json"
})
if r.ok:
data = json.loads(r.text)
assert data
return data
else:
if r.status_code == 404:
# couldn't find it
raise NotFound