This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-whiteboard.git


The following commit(s) were added to refs/heads/master by this push:
     new ad619da0 oidc-rp: add OAuthEnabledSlingServlet to simplify 
implementations
ad619da0 is described below

commit ad619da02adba7825fb65d006784d009804cd4cb
Author: Robert Munteanu <[email protected]>
AuthorDate: Thu Sep 12 17:12:51 2024 +0200

    oidc-rp: add OAuthEnabledSlingServlet to simplify implementations
---
 .../oidc_rp/support/OAuthEnabledSlingServlet.java  | 100 +++++++++++++++++++++
 .../extensions/oidc_rp/support/package-info.java   |  20 +++++
 2 files changed, 120 insertions(+)

diff --git 
a/org.apache.sling.servlets.oidc-rp/src/main/java/org/apache/sling/extensions/oidc_rp/support/OAuthEnabledSlingServlet.java
 
b/org.apache.sling.servlets.oidc-rp/src/main/java/org/apache/sling/extensions/oidc_rp/support/OAuthEnabledSlingServlet.java
new file mode 100644
index 00000000..a4d38506
--- /dev/null
+++ 
b/org.apache.sling.servlets.oidc-rp/src/main/java/org/apache/sling/extensions/oidc_rp/support/OAuthEnabledSlingServlet.java
@@ -0,0 +1,100 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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
+ *
+ *      http://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 org.apache.sling.extensions.oidc_rp.support;
+
+import java.io.IOException;
+import java.util.Objects;
+
+import javax.servlet.ServletException;
+import javax.servlet.http.HttpServletResponse;
+
+import org.apache.sling.api.SlingHttpServletRequest;
+import org.apache.sling.api.SlingHttpServletResponse;
+import org.apache.sling.api.servlets.SlingSafeMethodsServlet;
+import org.apache.sling.extensions.oidc_rp.OidcClient;
+import org.apache.sling.extensions.oidc_rp.OidcConnection;
+import org.apache.sling.extensions.oidc_rp.OidcToken;
+import org.apache.sling.extensions.oidc_rp.OidcTokenState;
+import org.apache.sling.extensions.oidc_rp.OidcTokenStore;
+import org.apache.sling.extensions.oidc_rp.OidcTokens;
+import org.jetbrains.annotations.NotNull;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+public abstract class OAuthEnabledSlingServlet extends SlingSafeMethodsServlet 
{
+
+       private static final long serialVersionUID = 1L;
+       
+       private final Logger logger = LoggerFactory.getLogger(getClass());
+
+    private final OidcConnection connection;
+
+    private final OidcTokenStore tokenStore;
+
+    private final OidcClient oidcClient;
+       
+    protected OAuthEnabledSlingServlet(OidcConnection connection, 
OidcTokenStore tokenStore, OidcClient oidcClient) {
+        this.connection = Objects.requireNonNull(connection, "connection may 
not null");
+        this.tokenStore = Objects.requireNonNull(tokenStore, "tokenStore may 
not null");
+        this.oidcClient = Objects.requireNonNull(oidcClient, "oidcClient may 
not null");
+    }
+
+       @Override
+       protected void doGet(@NotNull SlingHttpServletRequest request, @NotNull 
SlingHttpServletResponse response)
+                       throws ServletException, IOException {
+           
+           if ( request.getUserPrincipal() == null ) {
+            response.sendError(HttpServletResponse.SC_UNAUTHORIZED, "User is 
not authenticated");
+            return;
+           }
+
+           String redirectPath = 
Objects.requireNonNull(getRedirectPath(request), "getRedirectPath() may not 
return null");
+           
+           if ( logger.isDebugEnabled() )
+               logger.debug("Configured with connection (name={}) and 
redirectPath={}", connection.name(), redirectPath);
+           
+           OidcToken tokenResponse = tokenStore.getAccessToken(connection, 
request.getResourceResolver());
+           
+               switch ( tokenResponse.getState() ) {
+             case VALID:
+               doGetWithToken(request, response, tokenResponse);
+               break;
+             case MISSING:
+               
response.sendRedirect(oidcClient.getOidcEntryPointUri(connection, request, 
redirectPath).toString());
+               break;
+             case EXPIRED:
+               OidcToken refreshToken = tokenStore.getRefreshToken(connection, 
request.getResourceResolver());
+               if ( refreshToken.getState() != OidcTokenState.VALID ) {
+                 
response.sendRedirect(oidcClient.getOidcEntryPointUri(connection, request, 
redirectPath).toString());
+                 return;
+               }
+               
+               OidcTokens oidcTokens = oidcClient.refreshTokens(connection, 
refreshToken.getValue());
+               tokenStore.persistTokens(connection, 
request.getResourceResolver(), oidcTokens);
+               doGetWithToken(request, response, tokenResponse);
+               break;
+           }
+       }
+       
+       // TODO - do we need this as a protected method?
+       protected @NotNull String getRedirectPath(@NotNull 
SlingHttpServletRequest request) {
+           return request.getRequestURI();
+       }
+
+       protected abstract void doGetWithToken(@NotNull SlingHttpServletRequest 
request, @NotNull SlingHttpServletResponse response, OidcToken token)
+               throws ServletException, IOException;
+}
diff --git 
a/org.apache.sling.servlets.oidc-rp/src/main/java/org/apache/sling/extensions/oidc_rp/support/package-info.java
 
b/org.apache.sling.servlets.oidc-rp/src/main/java/org/apache/sling/extensions/oidc_rp/support/package-info.java
new file mode 100644
index 00000000..170bc783
--- /dev/null
+++ 
b/org.apache.sling.servlets.oidc-rp/src/main/java/org/apache/sling/extensions/oidc_rp/support/package-info.java
@@ -0,0 +1,20 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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
+ *
+ *      http://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.
+ */
+@Version("0.1.0")
+package org.apache.sling.extensions.oidc_rp.support;
+
+import org.osgi.annotation.versioning.Version;

Reply via email to