Skip to content

Commit 2c23e44

Browse files
committed
Send user information as JSON
1 parent c623b75 commit 2c23e44

File tree

2 files changed

+27
-33
lines changed

2 files changed

+27
-33
lines changed

back/taiga_contrib_oidc_auth/views.py

+14-6
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
# You should have received a copy of the GNU Affero General Public License
1414
# along with this program. If not, see <http://www.gnu.org/licenses/>.
1515

16+
from json import dumps
1617
from six.moves.urllib.parse import urlencode
1718

1819
from mozilla_django_oidc.views import OIDCAuthenticationCallbackView
@@ -28,20 +29,26 @@ def _make_login_url(data):
2829
"front": {"domain": "localhost:9001", "scheme": "http", "name": "front"},
2930
},
3031
)
32+
3133
return "{}://{}/login?{}".format(
3234
SITES["front"]["scheme"], SITES["front"]["domain"], urlencode(data)
3335
)
3436

3537

3638
class TaigaOIDCAuthenticationCallbackView(OIDCAuthenticationCallbackView):
39+
3740
@property
3841
def success_url(self):
39-
# Pull the next url from the session or settings--we don't need to
40-
# sanitize here because it should already have been sanitized.
41-
next_url = self.request.session.get("oidc_login_next") or "/"
42-
data = make_auth_response_data(self.user)
43-
data["type"] = "oidc"
44-
data["next"] = next_url
42+
user_data = make_auth_response_data(self.user)
43+
user_data["roles"] = list(user_data["roles"])
44+
user_data["date_joined"] = str(user_data["date_joined"])
45+
46+
data = {
47+
"type": "oidc",
48+
"data": dumps(user_data),
49+
"next": self.request.session.get("oidc_login_next") or "/",
50+
}
51+
4552
return _make_login_url(data)
4653

4754
@property
@@ -52,4 +59,5 @@ def failure_url(self):
5259
"error": self.request.GET.get("error"),
5360
"error_description": self.request.GET.get("error_description"),
5461
}
62+
5563
return _make_login_url(data)

front/coffee/oidc_auth.coffee

+13-27
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,28 @@
11
module = angular.module('taigaContrib.oidcAuth', [])
22

3-
OIDCLoginButtonDirective = ($window, $params, $location, $config, $events, $confirm, $auth, $navUrls, $loader, $rootScope) ->
3+
OIDCLoginButtonDirective = ($window, $params, $location, $config, $events, $confirm, $auth, $navUrls, $rootScope) ->
44
# Login or register a user with their OIDC account.
55

66
link = ($scope, $el, $attrs) ->
77

88
loginSuccess = ->
9-
# Login in the UI. Using $auth.login() is too GitHub-specific.
9+
if $params.next and $params.next != $navUrls.resolve("login")
10+
nextUrl = $params.next
11+
else
12+
nextUrl = $navUrls.resolve("home")
13+
14+
$events.setupConnection()
15+
1016
$auth.removeToken();
11-
data = _.clone($params, false);
17+
data = JSON.parse($params.data);
18+
1219
user = $auth.model.make_model("users", data);
1320
$auth.setToken(user.auth_token);
21+
$auth.setRefreshToken(user.refresh)
1422
$auth.setUser(user);
1523
$rootScope.$broadcast("auth:login", user)
1624

17-
# Cleanup the URL
18-
19-
$events.setupConnection() # I don't know why this is necessary.
20-
21-
scrub = (name, i) ->
22-
$location.search(name, null)
23-
[
24-
'accepted_terms', 'auth_token', 'big_photo', 'bio', 'color', 'date_joined',
25-
'email', 'full_name', 'full_name_display', 'gravatar_id', 'id', 'is_active',
26-
'lang', 'max_memberships_private_projects', 'max_memberships_public_projects',
27-
'max_private_projects', 'max_public_projects', 'next', 'photo', 'read_new_terms',
28-
'roles', 'theme', 'timezone', 'total_private_projects', 'total_public_projects',
29-
'type', 'username', 'uuid'
30-
].forEach(scrub)
31-
32-
# Redirect to the destination page.
33-
34-
if $params.next and $params.next != $navUrls.resolve("login")
35-
nextUrl = $params.next
36-
else
37-
nextUrl = $navUrls.resolve("home")
38-
39-
$location.path(nextUrl)
25+
$window.location.href = nextUrl
4026

4127
loginError = ->
4228
error_description = $params.error_description
@@ -93,5 +79,5 @@ OIDCLoginButtonDirective = ($window, $params, $location, $config, $events, $conf
9379

9480
module.directive("tgOidcLoginButton", [
9581
"$window", '$routeParams', "$tgLocation", "$tgConfig", "$tgEvents",
96-
"$tgConfirm", "$tgAuth", "$tgNavUrls", "tgLoader", "$rootScope",
82+
"$tgConfirm", "$tgAuth", "$tgNavUrls", "$rootScope",
9783
OIDCLoginButtonDirective])

0 commit comments

Comments
 (0)