Skip to content

Commit

Permalink
add the authenticate example.
Browse files Browse the repository at this point in the history
  • Loading branch information
plq committed Sep 19, 2011
1 parent 32e5bfc commit f7fb0ec
Show file tree
Hide file tree
Showing 2 changed files with 226 additions and 0 deletions.
55 changes: 55 additions & 0 deletions examples/authenticate/client_suds.py
@@ -0,0 +1,55 @@
#!/usr/bin/env python
#encoding: utf8
#
# Copyright © Burak Arslan <burak at arskom dot com dot tr>,
# Arskom Ltd. http://www.arskom.com.tr
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# 3. Neither the name of the owner nor the names of its contributors may be
# used to endorse or promote products derived from this software without
# specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY DIRECT,
# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
# OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
# EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#

from suds import WebFault
from suds.client import Client

c = Client('http://localhost:7789/app/?wsdl')

user_name = 'neo'

session_id = c.service.authenticate(user_name, 'Wh1teR@bbit')

request_header = c.factory.create('RequestHeader')
request_header.session_id = session_id
request_header.user_name = user_name

c.set_options(soapheaders=request_header)
print c.service.get_preferences('neo')
try:
print c.service.get_preferences('trinity')
except WebFault, e:
print e

try:
print c.service.get_preferences('smith')
except WebFault, e:
print e
171 changes: 171 additions & 0 deletions examples/authenticate/server_soap.py
@@ -0,0 +1,171 @@
#!/usr/bin/env python
#encoding: utf8
#
# Copyright © Burak Arslan <burak at arskom dot com dot tr>,
# Arskom Ltd. http://www.arskom.com.tr
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# 3. Neither the name of the owner nor the names of its contributors may be
# used to endorse or promote products derived from this software without
# specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY DIRECT,
# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
# OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
# EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

import sys
import bcrypt
import random
import logging

from rpclib.model.complex import ComplexModel
from rpclib.model.fault import Fault
from rpclib.decorator import srpc
from rpclib.protocol.soap import Soap11
from rpclib.interface.wsdl import Wsdl11
from rpclib.model.primitive import Mandatory
from rpclib.model.primitive import String
from rpclib.service import ServiceBase
from rpclib.server.wsgi import WsgiApplication
from rpclib.application import Application

class PublicValueError(Fault):
__type_name__ = 'ValueError'
__namespace__ = 'rpclib.examples.authentication'

def __init__(self, value):
Fault.__init__(self,
faultcode='Client.ValueError',
faultstring='Value %r not found' % value
)


class AuthenticationError(Fault):
__namespace__ = 'rpclib.examples.authentication'

def __init__(self, user_name):
# TODO: self.transport.http.resp_code = HTTP_401

Fault.__init__(self,
faultcode='Client.AuthenticationError',
faultstring='Invalid authentication request for %r' % user_name
)

class AuthorizationError(Fault):
__namespace__ = 'rpclib.examples.authentication'

def __init__(self):
# TODO: self.transport.http.resp_code = HTTP_401

Fault.__init__(self,
faultcode='Client.AuthorizationError',
faultstring='You are not authozied to access this resource.'
)

class RpclibDict(dict):
def __getitem__(self, key):
try:
return dict.__getitem__(self, key)
except KeyError:
raise PublicValueError(key)


class RequestHeader(ComplexModel):
__namespace__ = 'rpclib.examples.authentication'

session_id = Mandatory.String
user_name = Mandatory.String



class Preferences(ComplexModel):
__namespace__ = 'rpclib.examples.authentication'

language = String(max_len=2)
time_zone = String


user_db = {
'neo': bcrypt.hashpw('Wh1teR@bbit', bcrypt.gensalt()),
}

session_db = set()

preferences_db = RpclibDict({
'neo': Preferences(language='en', time_zone='Underground/Zion'),
'smith': Preferences(language='xx', time_zone='Matrix/Core'),
})


class AuthenticationService(ServiceBase):
__tns__ = 'rpclib.examples.authentication'

@srpc(Mandatory.String, Mandatory.String, _returns=String,
_throws=AuthenticationError)
def authenticate(user_name, password):
password_hash = user_db.get(user_name, None)

if password_hash is None:
raise AuthenticationError(user_name)

if bcrypt.hashpw(password, password_hash) == password_hash:
session_id = (user_name, '%x' % random.randint(1<<128, (1<<132)-1))
session_db.add(session_id)
else:
raise AuthenticationError(user_name)

return session_id[1]

class UserService(ServiceBase):
__tns__ = 'rpclib.examples.authentication'
__in_header__ = RequestHeader

@srpc(Mandatory.String, _throws=PublicValueError, _returns=Preferences)
def get_preferences(user_name):
if user_name == 'smith':
raise AuthorizationError()

retval = preferences_db[user_name]

return retval

def _on_method_call(ctx):
if not (ctx.in_header.user_name, ctx.in_header.session_id) in session_db:
raise AuthenticationError(ctx.in_object.user_name)

UserService.event_manager.add_listener('method_call', _on_method_call)

if __name__=='__main__':
from rpclib.util.wsgi_wrapper import run_twisted

logging.basicConfig(level=logging.DEBUG)
logging.getLogger('rpclib.protocol.soap.soap11').setLevel(logging.DEBUG)
logging.getLogger('twisted').setLevel(logging.DEBUG)

application = Application([AuthenticationService,UserService],
tns='rpclib.examples.authentication',
interface=Wsdl11(),
in_protocol=Soap11(validator='lxml'),
out_protocol=Soap11()
)

twisted_apps = [
(WsgiApplication(application), 'app'),
]

sys.exit(run_twisted(twisted_apps, 7789))

0 comments on commit f7fb0ec

Please sign in to comment.