Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
ai
sso
Commits
35305f98
Commit
35305f98
authored
Dec 11, 2016
by
ale
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'authclient' into auth-api-refactor
parents
b5ad9abf
6ef8319e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
66 additions
and
0 deletions
+66
-0
src/sso_server/sso_server/auth/auth_authclient.py
src/sso_server/sso_server/auth/auth_authclient.py
+66
-0
No files found.
src/sso_server/sso_server/auth/auth_authclient.py
0 → 100644
View file @
35305f98
# Copyright (c) 2016 Autistici/Inventati <info@autistici.org>
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
# files (the "Software"), to deal in the Software without
# restriction, including without limitation the rights to use,
# copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following
# conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
import
authclient
from
sso_server.auth
import
AuthBase
class
Auth
(
AuthBase
):
"""Authclient authentication provider.
This module knows about the following options:
authclient_server_url
The URI of the authserver.
authclient_cert
File with the SSL client certificate.
authclient_key
File with the SSL client private key.
authclient_service
Service name for the authclient protocol.
authclient_shard
Shard for the authclient protocol (optional).
"""
supports_otp
=
True
def
__init__
(
self
,
config
):
self
.
_client
=
authclient
.
Client
(
url
=
config
.
authclient_server_url
,
client_cert
=
config
.
authclient_cert
,
client_key
=
config
.
authclient_key
,
)
self
.
_service
=
config
.
authclient_service
self
.
_shard
=
config
.
authclient_shard
def
authenticate
(
self
,
username
,
password
,
otp
=
None
):
result
=
self
.
_client
.
authenticate
(
self
.
_service
,
username
,
password
,
otp
,
shard
=
self
.
_shard
)
return
result
==
authclient
.
OK
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment