|
| 1 | +// |
| 2 | +// ======================================================================== |
| 3 | +// Copyright (c) 1995 Mort Bay Consulting Pty Ltd and others. |
| 4 | +// |
| 5 | +// This program and the accompanying materials are made available under the |
| 6 | +// terms of the Eclipse Public License v. 2.0 which is available at |
| 7 | +// https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0 |
| 8 | +// which is available at https://www.apache.org/licenses/LICENSE-2.0. |
| 9 | +// |
| 10 | +// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 |
| 11 | +// ======================================================================== |
| 12 | +// |
| 13 | + |
| 14 | +package org.eclipse.jetty.docs.programming.security; |
| 15 | + |
| 16 | +import java.io.PrintStream; |
| 17 | +import java.security.Principal; |
| 18 | +import java.util.Map; |
| 19 | + |
| 20 | +import org.eclipse.jetty.client.HttpClient; |
| 21 | +import org.eclipse.jetty.io.Content; |
| 22 | +import org.eclipse.jetty.security.AuthenticationState; |
| 23 | +import org.eclipse.jetty.security.Constraint; |
| 24 | +import org.eclipse.jetty.security.HashLoginService; |
| 25 | +import org.eclipse.jetty.security.LoginService; |
| 26 | +import org.eclipse.jetty.security.SecurityHandler; |
| 27 | +import org.eclipse.jetty.security.UserStore; |
| 28 | +import org.eclipse.jetty.security.openid.OpenIdAuthenticator; |
| 29 | +import org.eclipse.jetty.security.openid.OpenIdConfiguration; |
| 30 | +import org.eclipse.jetty.security.openid.OpenIdLoginService; |
| 31 | +import org.eclipse.jetty.server.Handler; |
| 32 | +import org.eclipse.jetty.server.Request; |
| 33 | +import org.eclipse.jetty.server.Response; |
| 34 | +import org.eclipse.jetty.server.Server; |
| 35 | +import org.eclipse.jetty.server.Session; |
| 36 | +import org.eclipse.jetty.session.SessionHandler; |
| 37 | +import org.eclipse.jetty.util.Callback; |
| 38 | +import org.eclipse.jetty.util.Fields; |
| 39 | + |
| 40 | +@SuppressWarnings("unused") |
| 41 | +public class OpenIdDocs |
| 42 | +{ |
| 43 | + public void combinedExample() |
| 44 | + { |
| 45 | + Server server = new Server(); |
| 46 | + // tag::openIdConfigExample[] |
| 47 | + // To create an OpenIdConfiguration you can rely on discovery of the OIDC metadata. |
| 48 | + OpenIdConfiguration openIdConfig = new OpenIdConfiguration( |
| 49 | + "https://example.com/issuer", // ISSUER |
| 50 | + "my-client-id", // CLIENT_ID |
| 51 | + "my-client-secret" // CLIENT_SECRET |
| 52 | + ); |
| 53 | + |
| 54 | + // Or you can specify the full OpenID configuration manually. |
| 55 | + openIdConfig = new OpenIdConfiguration( |
| 56 | + "https://example.com/issuer", // ISSUER |
| 57 | + "https://example.com/token", // TOKEN_ENDPOINT |
| 58 | + "https://example.com/auth", // AUTH_ENDPOINT |
| 59 | + "https://example.com/logout", // END_SESSION_ENDPOINT |
| 60 | + "my-client-id", // CLIENT_ID |
| 61 | + "my-client-secret", // CLIENT_SECRET |
| 62 | + "client_secret_post", // AUTH_METHOD (e.g., client_secret_post, client_secret_basic) |
| 63 | + new HttpClient() // HttpClient instance |
| 64 | + ); |
| 65 | + |
| 66 | + // The specific security handler implementation will change depending on whether you are using EE8/EE9/EE10/EE11 or Jetty Core API. |
| 67 | + SecurityHandler.PathMapped securityHandler = new SecurityHandler.PathMapped(); |
| 68 | + server.insertHandler(securityHandler); |
| 69 | + securityHandler.put("/auth/*", Constraint.ANY_USER); |
| 70 | + |
| 71 | + // A nested LoginService is optional and used to specify known users with defined roles. |
| 72 | + // This can be any instance of LoginService and is not restricted to be a HashLoginService. |
| 73 | + HashLoginService nestedLoginService = new HashLoginService(); |
| 74 | + UserStore userStore = new UserStore(); |
| 75 | + userStore.addUser("<admin-user-subject-identifier>", null, new String[]{"admin"}); |
| 76 | + nestedLoginService.setUserStore(userStore); |
| 77 | + |
| 78 | + // Optional configuration to allow new users not listed in the nested LoginService to be authenticated. |
| 79 | + openIdConfig.setAuthenticateNewUsers(true); |
| 80 | + |
| 81 | + // An OpenIdLoginService should be used which can optionally wrap the nestedLoginService to support roles. |
| 82 | + LoginService loginService = new OpenIdLoginService(openIdConfig, nestedLoginService); |
| 83 | + securityHandler.setLoginService(loginService); |
| 84 | + |
| 85 | + // Configure an OpenIdAuthenticator. |
| 86 | + securityHandler.setAuthenticator(new OpenIdAuthenticator(openIdConfig, |
| 87 | + "/j_security_check", // The path where the OIDC provider redirects back to Jetty. |
| 88 | + "/error", // Optional page where authentication errors are redirected. |
| 89 | + "/logoutRedirect" // Optional page where the user is redirected to this page after logout. |
| 90 | + )); |
| 91 | + |
| 92 | + // Session handler is required for OpenID authentication. |
| 93 | + server.insertHandler(new SessionHandler()); |
| 94 | + // end::openIdConfigExample[] |
| 95 | + |
| 96 | + // tag::openIdUsageExample[] |
| 97 | + class OpenIdExampleHandler extends Handler.Abstract |
| 98 | + { |
| 99 | + @Override |
| 100 | + public boolean handle(Request request, Response response, Callback callback) throws Exception |
| 101 | + { |
| 102 | + PrintStream writer = new PrintStream(Content.Sink.asOutputStream(response)); |
| 103 | + |
| 104 | + String pathInContext = Request.getPathInContext(request); |
| 105 | + if (pathInContext.startsWith("/error")) |
| 106 | + { |
| 107 | + // Handle requests to the error page which may have an error description parameter. |
| 108 | + Fields parameters = Request.getParameters(request); |
| 109 | + writer.println("error_description: " + parameters.get("error_description_jetty") + "<br>"); |
| 110 | + } |
| 111 | + else |
| 112 | + { |
| 113 | + Principal userPrincipal = AuthenticationState.getUserPrincipal(request); |
| 114 | + writer.println("userPrincipal: " + userPrincipal); |
| 115 | + if (userPrincipal != null) |
| 116 | + { |
| 117 | + // You can access the full openid claims for an authenticated session. |
| 118 | + Session session = request.getSession(false); |
| 119 | + @SuppressWarnings("unchecked") |
| 120 | + Map<String, String> claims = (Map<String, String>)session.getAttribute("org.eclipse.jetty.security.openid.claims"); |
| 121 | + writer.println("claims: " + claims); |
| 122 | + writer.println("name: " + claims.get("name")); |
| 123 | + writer.println("sub: " + claims.get("sub")); |
| 124 | + } |
| 125 | + } |
| 126 | + |
| 127 | + writer.close(); |
| 128 | + callback.succeeded(); |
| 129 | + return true; |
| 130 | + } |
| 131 | + } |
| 132 | + // end::openIdUsageExample[] |
| 133 | + } |
| 134 | +} |
0 commit comments