|
1 | 1 | module = angular.module('taigaContrib.oidcAuth', [])
|
2 | 2 |
|
3 |
| -OIDCLoginButtonDirective = ($window, $params, $location, $config, $events, $confirm, $auth, $navUrls, $loader, $rootScope) -> |
| 3 | +OIDCLoginButtonDirective = ($window, $params, $location, $config, $events, $confirm, $auth, $navUrls, $rootScope) -> |
4 | 4 | # Login or register a user with their OIDC account.
|
5 | 5 |
|
6 | 6 | link = ($scope, $el, $attrs) ->
|
7 | 7 |
|
8 | 8 | 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 | + |
10 | 16 | $auth.removeToken();
|
11 |
| - data = _.clone($params, false); |
| 17 | + data = JSON.parse($params.data); |
| 18 | + |
12 | 19 | user = $auth.model.make_model("users", data);
|
13 | 20 | $auth.setToken(user.auth_token);
|
| 21 | + $auth.setRefreshToken(user.refresh) |
14 | 22 | $auth.setUser(user);
|
15 | 23 | $rootScope.$broadcast("auth:login", user)
|
16 | 24 |
|
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 |
40 | 26 |
|
41 | 27 | loginError = ->
|
42 | 28 | error_description = $params.error_description
|
@@ -93,5 +79,5 @@ OIDCLoginButtonDirective = ($window, $params, $location, $config, $events, $conf
|
93 | 79 |
|
94 | 80 | module.directive("tgOidcLoginButton", [
|
95 | 81 | "$window", '$routeParams', "$tgLocation", "$tgConfig", "$tgEvents",
|
96 |
| - "$tgConfirm", "$tgAuth", "$tgNavUrls", "tgLoader", "$rootScope", |
| 82 | + "$tgConfirm", "$tgAuth", "$tgNavUrls", "$rootScope", |
97 | 83 | OIDCLoginButtonDirective])
|
0 commit comments