~launchpad-pqm/launchpad/devel

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Copyright 2004 Canonical Ltd.  All rights reserved.
#
# This configuration creates an XML-RPC service listening on port 8999.  It
# exposes two APIs:
#   - the version 1 API with salts + SSHA digests, at /
#   - and the version 2 API with clear text passwords, at /v2/
#
# e.g. http://localhost:8999/v2/ is the path the version 2 API.

from twisted.application import service, internet
from twisted.web import server, resource
from twisted.enterprise.adbapi import ConnectionPool

from canonical.authserver.xmlrpc import UserDetailsResource
from canonical.authserver.database import DatabaseUserDetailsStorage
from canonical.authserver.xmlrpc import UserDetailsResourceV2
from canonical.authserver.database import DatabaseUserDetailsStorageV2


application = service.Application("authserver_test")
dbpool = ConnectionPool('psycopg', 'dbname=launchpad_test')
storage = DatabaseUserDetailsStorage(dbpool)
root = resource.Resource()
versionOneAPI = UserDetailsResource(DatabaseUserDetailsStorage(dbpool))
versionTwoAPI = UserDetailsResourceV2(DatabaseUserDetailsStorageV2(dbpool))
root.putChild('', versionOneAPI)
root.putChild('v2', versionTwoAPI)
site = server.Site(root)
internet.TCPServer(8999, site).setServiceParent(application)