Skip to content

Commit

Permalink
[#3012] Some controller fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tobes committed Mar 13, 2013
1 parent 7afd580 commit c9825ce
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
1 change: 1 addition & 0 deletions ckan/config/routing.py
Expand Up @@ -353,6 +353,7 @@ def make_map():
m.connect('register', '/user/register', action='register')
m.connect('login', '/user/login', action='login')
m.connect('/user/_logout', action='logout')
m.connect('/slo', action='slo')
m.connect('/user/logged_in', action='logged_in')
m.connect('/user/logged_out', action='logged_out')
m.connect('/user/logged_out_redirect', action='logged_out_page')
Expand Down
29 changes: 29 additions & 0 deletions ckan/controllers/user.py
Expand Up @@ -80,6 +80,9 @@ def _setup_template_variables(self, context, data_dict):
def _get_repoze_handler(self, handler_name):
'''Returns the URL that repoze.who will respond to and perform a
login or logout.'''
# FIXME this shouldn't be here
# FIXME we need to deal with the aborts properly
abort(401, _('Not authorized to see this page'))
return getattr(request.environ['repoze.who.plugins']['friendlyform'],
handler_name)

Expand Down Expand Up @@ -179,6 +182,8 @@ def _save_new(self, context):
logic.tuplize_dict(logic.parse_params(request.params))))
context['message'] = data_dict.get('log_message', '')
captcha.check_recaptcha(request)
if c.saml2user:
data_dict['openid'] = c.saml2user
user = get_action('user_create')(context, data_dict)
except NotAuthorized:
abort(401, _('Unauthorized to create user %s') % '')
Expand Down Expand Up @@ -297,6 +302,10 @@ def login(self, error=None):
if 'error' in request.params:
h.flash_error(request.params['error'])

if c.saml2user:
return h.redirect_to(controller='user',
action='me')

if request.environ['SCRIPT_NAME'] and g.openid_enabled:
# #1662 restriction
log.warn('Cannot mount CKAN at a URL and login with OpenID.')
Expand Down Expand Up @@ -352,8 +361,28 @@ def logout(self):
# save our language in the session so we don't lose it
session['lang'] = request.environ.get('CKAN_LANG')
session.save()
if c.saml2user:
h.redirect_to('/slo')
h.redirect_to(self._get_repoze_handler('logout_handler_path'))

def slo(self):
environ = request.environ
# so here I might get either a LogoutResponse or a LogoutRequest
client = environ['repoze.who.plugins']['saml2auth']
sids = None
if 'QUERY_STRING' in environ:
try:
res = client.saml_client.logout_request_response(
request.GET['SAMLResponse'][0],
binding=BINDING_HTTP_REDIRECT)
except KeyError:
# return error reply
pass

if not sids:
response.delete_cookie('auth_tkt')
h.redirect_to(controller='user', action='logged_out')

def set_lang(self, lang):
# this allows us to set the lang in session. Used for logging
# in/out to prevent being lost when repoze.who redirects things
Expand Down

0 comments on commit c9825ce

Please sign in to comment.