-
Notifications
You must be signed in to change notification settings - Fork 128
/
Copy pathDefaultOauthController.java
177 lines (160 loc) · 7.47 KB
/
DefaultOauthController.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
/*
* Copyright 2017-2024 original authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.micronaut.security.oauth2.routes;
import io.micronaut.context.annotation.EachBean;
import io.micronaut.context.annotation.Parameter;
import io.micronaut.context.annotation.Requires;
import io.micronaut.context.event.ApplicationEventPublisher;
import io.micronaut.core.annotation.NonNull;
import io.micronaut.http.HttpRequest;
import io.micronaut.http.HttpResponse;
import io.micronaut.http.HttpStatus;
import io.micronaut.http.MutableHttpResponse;
import io.micronaut.http.server.util.HttpHostResolver;
import io.micronaut.http.server.util.locale.HttpLocaleResolver;
import io.micronaut.security.authentication.Authentication;
import io.micronaut.security.authentication.AuthenticationResponse;
import io.micronaut.security.event.LoginFailedEvent;
import io.micronaut.security.event.LoginSuccessfulEvent;
import io.micronaut.security.handlers.RedirectingLoginHandler;
import io.micronaut.security.oauth2.client.OauthClient;
import java.util.Locale;
import java.util.Map;
import java.util.Optional;
import jakarta.inject.Inject;
import org.reactivestreams.Publisher;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import reactor.core.publisher.Flux;
/**
* Default implementation of {@link OauthController}.
*
* @author James Kleeh
* @since 1.2.0
*/
@Requires(beans = RedirectingLoginHandler.class)
@EachBean(OauthClient.class)
public class DefaultOauthController implements OauthController {
private static final Logger LOG = LoggerFactory.getLogger(DefaultOauthController.class);
private final OauthClient oauthClient;
private final RedirectingLoginHandler<HttpRequest<?>, MutableHttpResponse<?>> loginHandler;
private final ApplicationEventPublisher<LoginSuccessfulEvent> loginSuccessfulEventPublisher;
private final ApplicationEventPublisher<LoginFailedEvent> loginFailedEventPublisher;
private final HttpHostResolver httpHostResolver;
private final HttpLocaleResolver httpLocaleResolver;
/**
* @param oauthClient The oauth client
* @param loginHandler The login handler
* @param loginSuccessfulEventPublisher Application event publisher for {@link LoginSuccessfulEvent}.
* @param loginFailedEventPublisher Application event publisher for {@link LoginFailedEvent}.
* @param httpHostResolver The http host resolver
* @param httpLocaleResolver The http locale resolver
* @since 4.7.0
*/
@Inject
DefaultOauthController(
@Parameter OauthClient oauthClient,
RedirectingLoginHandler<HttpRequest<?>, MutableHttpResponse<?>> loginHandler,
ApplicationEventPublisher<LoginSuccessfulEvent> loginSuccessfulEventPublisher,
ApplicationEventPublisher<LoginFailedEvent> loginFailedEventPublisher,
HttpHostResolver httpHostResolver,
HttpLocaleResolver httpLocaleResolver
) {
this.oauthClient = oauthClient;
this.loginHandler = loginHandler;
this.loginSuccessfulEventPublisher = loginSuccessfulEventPublisher;
this.loginFailedEventPublisher = loginFailedEventPublisher;
this.httpHostResolver = httpHostResolver;
this.httpLocaleResolver = httpLocaleResolver;
}
/**
* @param oauthClient The oauth client
* @param loginHandler The login handler
* @param loginSuccessfulEventPublisher Application event publisher for {@link LoginSuccessfulEvent}.
* @param loginFailedEventPublisher Application event publisher for {@link LoginFailedEvent}.
* @deprecated Use {@link #DefaultOauthController(OauthClient, RedirectingLoginHandler, ApplicationEventPublisher, ApplicationEventPublisher, HttpHostResolver, HttpLocaleResolver)} instead
*/
@Deprecated(forRemoval = true, since = "4.7.0")
DefaultOauthController(@Parameter OauthClient oauthClient,
RedirectingLoginHandler<HttpRequest<?>, MutableHttpResponse<?>> loginHandler,
ApplicationEventPublisher<LoginSuccessfulEvent> loginSuccessfulEventPublisher,
ApplicationEventPublisher<LoginFailedEvent> loginFailedEventPublisher) {
this(
oauthClient,
loginHandler,
loginSuccessfulEventPublisher,
loginFailedEventPublisher,
request -> null,
new HttpLocaleResolver() {
@Override
public @NonNull Optional<Locale> resolve(@NonNull HttpRequest<?> context) {
return Optional.of(resolveOrDefault(context));
}
@Override
public @NonNull Locale resolveOrDefault(@NonNull HttpRequest<?> context) {
return Locale.getDefault();
}
}
);
}
@Override
public OauthClient getClient() {
return oauthClient;
}
@Override
public Publisher<MutableHttpResponse<?>> login(HttpRequest<?> request) {
if (LOG.isTraceEnabled()) {
LOG.trace("Received login request for provider [{}]", oauthClient.getName());
}
return oauthClient.authorizationRedirect(request);
}
@Override
public Publisher<MutableHttpResponse<?>> callback(HttpRequest<Map<String, Object>> request) {
if (LOG.isTraceEnabled()) {
LOG.trace("Received callback from oauth provider [{}]", oauthClient.getName());
}
Publisher<AuthenticationResponse> authenticationResponse = oauthClient.onCallback(request);
return Flux.from(authenticationResponse).map(response -> {
if (response.isAuthenticated() && response.getAuthentication().isPresent()) {
Authentication authentication = response.getAuthentication().get();
if (LOG.isTraceEnabled()) {
LOG.trace("Authentication succeeded. User [{}] is now logged in", authentication.getName());
}
loginSuccessfulEventPublisher.publishEvent(
new LoginSuccessfulEvent(
authentication,
httpHostResolver.resolve(request),
httpLocaleResolver.resolveOrDefault(request)
)
);
return loginHandler.loginSuccess(authentication, request);
} else {
if (LOG.isTraceEnabled()) {
LOG.trace("Authentication failed: {}", response.getMessage().orElse("unknown reason"));
}
loginFailedEventPublisher.publishEvent(
new LoginFailedEvent(
response,
null,
httpHostResolver.resolve(request),
httpLocaleResolver.resolveOrDefault(request)
)
);
return loginHandler.loginFailed(response, request);
}
}).defaultIfEmpty(HttpResponse.status(HttpStatus.UNAUTHORIZED));
}
}