Replace translate_service() from ubuntutools.lp.libsupport with calls to

lookup_service_root() from launchpadlib.uris.
This commit is contained in:
Michael Bienia 2010-02-12 18:47:02 +01:00
parent a33a5c106b
commit 4f21ae1cd0
2 changed files with 6 additions and 14 deletions

View File

@ -22,6 +22,7 @@
import os
import sys
from optparse import OptionParser, make_option
from launchpadlib.uris import lookup_service_root
from ubuntutools.lp.libsupport import *
class CmdOptions(OptionParser):
@ -77,7 +78,7 @@ class CmdOptions(OptionParser):
optional_options = given_options - set(sum(self.TOOLS[tool], ()))
if optional_options:
self.error("The following options are not allowed for this tool: %s" %", ".join(optional_options))
options.service = translate_service(options.service)
options.service = lookup_service_root(options.service)
if options.level in LEVEL:
options.level = LEVEL[options.level]
elif options.level.upper() in LEVEL.values():

View File

@ -28,7 +28,7 @@ import httplib2
try:
from launchpadlib.credentials import Credentials
from launchpadlib.launchpad import Launchpad, STAGING_SERVICE_ROOT, EDGE_SERVICE_ROOT
from launchpadlib.launchpad import Launchpad
from launchpadlib.errors import HTTPError
except ImportError:
print "Unable to import launchpadlib module, is python-launchpadlib installed?"
@ -37,6 +37,8 @@ except:
Credentials = None
Launchpad = None
from ubuntutools.lp import service
def find_credentials(consumer, files, level=None):
""" search for credentials matching 'consumer' in path for given access level. """
if Credentials is None:
@ -73,7 +75,7 @@ def get_credentials(consumer, cred_file=None, level=None):
return find_credentials(consumer, files, level)
def get_launchpad(consumer, server=EDGE_SERVICE_ROOT, cache=None,
def get_launchpad(consumer, server=service, cache=None,
cred_file=None, level=None):
credentials = get_credentials(consumer, cred_file, level)
cache = cache or os.environ.get("LPCACHE", None)
@ -140,14 +142,3 @@ def approve_application(credentials, email, password, level, web_root,
raise HTTPError(response, content)
credentials.exchange_request_token_for_access_token(web_root)
return credentials
def translate_service(service):
_service = service.lower()
if _service in (STAGING_SERVICE_ROOT, EDGE_SERVICE_ROOT):
return _service
elif _service == "edge":
return EDGE_SERVICE_ROOT
elif _service == "staging":
return STAGING_SERVICE_ROOT
else:
raise ValueError("unknown service '%s'" %service)