|
| 1 | +/* |
| 2 | + * Copyright (c) 2024 Google Inc. |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except |
| 5 | + * in compliance with the License. You may obtain a copy of the License at |
| 6 | + * |
| 7 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | + * |
| 9 | + * Unless required by applicable law or agreed to in writing, software distributed under the License |
| 10 | + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express |
| 11 | + * or implied. See the License for the specific language governing permissions and limitations under |
| 12 | + * the License. |
| 13 | + */ |
| 14 | + |
| 15 | +package com.google.api.client.extensions.servlet.auth.oauth2.jakarta; |
| 16 | + |
| 17 | +import com.google.api.client.auth.oauth2.AuthorizationCodeFlow; |
| 18 | +import com.google.api.client.auth.oauth2.AuthorizationCodeRequestUrl; |
| 19 | +import com.google.api.client.auth.oauth2.Credential; |
| 20 | +import com.google.api.client.http.HttpResponseException; |
| 21 | +import jakarta.servlet.ServletException; |
| 22 | +import jakarta.servlet.http.HttpServlet; |
| 23 | +import jakarta.servlet.http.HttpServletRequest; |
| 24 | +import jakarta.servlet.http.HttpServletResponse; |
| 25 | +import java.io.IOException; |
| 26 | +import java.util.concurrent.locks.Lock; |
| 27 | +import java.util.concurrent.locks.ReentrantLock; |
| 28 | + |
| 29 | +/** |
| 30 | + * Thread-safe OAuth 2.0 authorization code flow HTTP servlet using the jakarta namespace that |
| 31 | + * manages and persists end-user credentials. |
| 32 | + * |
| 33 | + * <p>This is designed to simplify the flow in which an end-user authorizes your web application to |
| 34 | + * access their protected data. Your application then has access to their data based on an access |
| 35 | + * token and a refresh token to refresh that access token when it expires. Your main servlet class |
| 36 | + * should extend {@link AbstractAuthorizationCodeServlet} and implement the abstract methods. To get |
| 37 | + * the persisted credential associated with the current request, call {@link #getCredential()}. It |
| 38 | + * is assumed that the end-user is authenticated by some external means by which a user ID is |
| 39 | + * obtained. This user ID is used as the primary key for persisting the end-user credentials, and |
| 40 | + * passed in via {@link #getUserId(HttpServletRequest)}. The first time an end-user arrives at your |
| 41 | + * servlet, they will be redirected in the browser to an authorization page. Next, they will be |
| 42 | + * redirected back to your site at the redirect URI selected in {@link |
| 43 | + * #getRedirectUri(HttpServletRequest)}. The servlet to process that should extend {@link |
| 44 | + * AbstractAuthorizationCodeCallbackServlet}, which should redirect back to this servlet on success. |
| 45 | + * |
| 46 | + * <p>Although this implementation is thread-safe, it can only process one request at a time. For a |
| 47 | + * more performance-critical multi-threaded web application, instead use {@link |
| 48 | + * AuthorizationCodeFlow} directly. |
| 49 | + * |
| 50 | + * <p>Sample usage: |
| 51 | + * |
| 52 | + * <pre> |
| 53 | + * public class ServletSample extends AbstractAuthorizationCodeServlet { |
| 54 | + * |
| 55 | + * @Override |
| 56 | + * protected void doGet(HttpServletRequest request, HttpServletResponse response) |
| 57 | + * throws IOException { |
| 58 | + * // do stuff |
| 59 | + * } |
| 60 | + * |
| 61 | + * @Override |
| 62 | + * protected String getRedirectUri(HttpServletRequest req) throws ServletException, IOException { |
| 63 | + * GenericUrl url = new GenericUrl(req.getRequestURL().toString()); |
| 64 | + * url.setRawPath("/oauth2callback"); |
| 65 | + * return url.build(); |
| 66 | + * } |
| 67 | + * |
| 68 | + * @Override |
| 69 | + * protected AuthorizationCodeFlow initializeFlow() throws IOException { |
| 70 | + * return new AuthorizationCodeFlow.Builder(BearerToken.authorizationHeaderAccessMethod(), |
| 71 | + * new NetHttpTransport(), |
| 72 | + * new GsonFactory(), |
| 73 | + * new GenericUrl("https://server.example.com/token"), |
| 74 | + * new BasicAuthentication("s6BhdRkqt3", "7Fjfp0ZBr1KtDRbnfVdmIw"), |
| 75 | + * "s6BhdRkqt3", |
| 76 | + * "https://server.example.com/authorize").setCredentialStore( |
| 77 | + * new JdoCredentialStore(JDOHelper.getPersistenceManagerFactory("transactions-optional"))) |
| 78 | + * .build(); |
| 79 | + * } |
| 80 | + * |
| 81 | + * @Override |
| 82 | + * protected String getUserId(HttpServletRequest req) throws ServletException, IOException { |
| 83 | + * // return user ID |
| 84 | + * } |
| 85 | + * } |
| 86 | + * </pre> |
| 87 | + * |
| 88 | + * @since 1.36.0 |
| 89 | + */ |
| 90 | +public abstract class AbstractAuthorizationCodeServlet extends HttpServlet { |
| 91 | + |
| 92 | + private static final long serialVersionUID = 1L; |
| 93 | + |
| 94 | + /** Lock on the flow and credential. */ |
| 95 | + private final Lock lock = new ReentrantLock(); |
| 96 | + |
| 97 | + /** Persisted credential associated with the current request or {@code null} for none. */ |
| 98 | + private Credential credential; |
| 99 | + |
| 100 | + /** |
| 101 | + * Authorization code flow to be used across all HTTP servlet requests or {@code null} before |
| 102 | + * initialized in {@link #initializeFlow()}. |
| 103 | + */ |
| 104 | + private AuthorizationCodeFlow flow; |
| 105 | + |
| 106 | + @Override |
| 107 | + protected void service(HttpServletRequest req, HttpServletResponse resp) |
| 108 | + throws IOException, ServletException { |
| 109 | + lock.lock(); |
| 110 | + try { |
| 111 | + // load credential from persistence store |
| 112 | + String userId = getUserId(req); |
| 113 | + if (flow == null) { |
| 114 | + flow = initializeFlow(); |
| 115 | + } |
| 116 | + credential = flow.loadCredential(userId); |
| 117 | + // if credential found with an access token, invoke the user code |
| 118 | + if (credential != null && credential.getAccessToken() != null) { |
| 119 | + try { |
| 120 | + super.service(req, resp); |
| 121 | + return; |
| 122 | + } catch (HttpResponseException e) { |
| 123 | + // if access token is null, assume it is because auth failed and we need to re-authorize |
| 124 | + // but if access token is not null, it is some other problem |
| 125 | + if (credential.getAccessToken() != null) { |
| 126 | + throw e; |
| 127 | + } |
| 128 | + } |
| 129 | + } |
| 130 | + // redirect to the authorization flow |
| 131 | + AuthorizationCodeRequestUrl authorizationUrl = flow.newAuthorizationUrl(); |
| 132 | + authorizationUrl.setRedirectUri(getRedirectUri(req)); |
| 133 | + onAuthorization(req, resp, authorizationUrl); |
| 134 | + credential = null; |
| 135 | + } finally { |
| 136 | + lock.unlock(); |
| 137 | + } |
| 138 | + } |
| 139 | + |
| 140 | + /** |
| 141 | + * Loads the authorization code flow to be used across all HTTP servlet requests (only called |
| 142 | + * during the first HTTP servlet request). |
| 143 | + */ |
| 144 | + protected abstract AuthorizationCodeFlow initializeFlow() throws ServletException, IOException; |
| 145 | + |
| 146 | + /** Returns the redirect URI for the given HTTP servlet request. */ |
| 147 | + protected abstract String getRedirectUri(HttpServletRequest req) |
| 148 | + throws ServletException, IOException; |
| 149 | + |
| 150 | + /** |
| 151 | + * Returns the user ID for the given HTTP servlet request. This identifies your application's user |
| 152 | + * and is used to fetch persisted credentials for that user. Most commonly, this will be a user id |
| 153 | + * stored in the session or even the session id itself. |
| 154 | + */ |
| 155 | + protected abstract String getUserId(HttpServletRequest req) throws ServletException, IOException; |
| 156 | + |
| 157 | + /** |
| 158 | + * Return the persisted credential associated with the current request or {@code null} for none. |
| 159 | + */ |
| 160 | + protected final Credential getCredential() { |
| 161 | + return credential; |
| 162 | + } |
| 163 | + |
| 164 | + /** |
| 165 | + * Handles user authorization by redirecting to the OAuth 2.0 authorization server. |
| 166 | + * |
| 167 | + * <p>Default implementation is to call {@code resp.sendRedirect(authorizationUrl.build())}. |
| 168 | + * Subclasses may override to provide optional parameters such as the recommended state parameter. |
| 169 | + * Sample implementation: |
| 170 | + * |
| 171 | + * <pre> |
| 172 | + * @Override |
| 173 | + * protected void onAuthorization(HttpServletRequest req, HttpServletResponse resp, |
| 174 | + * AuthorizationCodeRequestUrl authorizationUrl) throws ServletException, IOException { |
| 175 | + * authorizationUrl.setState("xyz"); |
| 176 | + * super.onAuthorization(req, resp, authorizationUrl); |
| 177 | + * } |
| 178 | + * </pre> |
| 179 | + * |
| 180 | + * @param authorizationUrl authorization code request URL |
| 181 | + * @param req HTTP servlet request |
| 182 | + * @throws ServletException servlet exception |
| 183 | + */ |
| 184 | + protected void onAuthorization( |
| 185 | + HttpServletRequest req, |
| 186 | + HttpServletResponse resp, |
| 187 | + AuthorizationCodeRequestUrl authorizationUrl) |
| 188 | + throws ServletException, IOException { |
| 189 | + resp.sendRedirect(authorizationUrl.build()); |
| 190 | + } |
| 191 | +} |
0 commit comments