You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by se...@apache.org on 2017/03/03 10:27:29 UTC

cxf-fediz git commit: Adding the missing resources

Repository: cxf-fediz
Updated Branches:
  refs/heads/master 3ba499aef -> 91154a123


Adding the missing resources


Project: http://git-wip-us.apache.org/repos/asf/cxf-fediz/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf-fediz/commit/91154a12
Tree: http://git-wip-us.apache.org/repos/asf/cxf-fediz/tree/91154a12
Diff: http://git-wip-us.apache.org/repos/asf/cxf-fediz/diff/91154a12

Branch: refs/heads/master
Commit: 91154a123ba0d3976a88e37ef2ff909d4155206c
Parents: 3ba499a
Author: Sergey Beryozkin <sb...@gmail.com>
Authored: Fri Mar 3 10:27:13 2017 +0000
Committer: Sergey Beryozkin <sb...@gmail.com>
Committed: Fri Mar 3 10:27:13 2017 +0000

----------------------------------------------------------------------
 .../oidc/JAASAuthenticationStrategy.java        | 64 ++++++++++++++++++++
 .../oidc/ProviderAuthenticationStrategy.java    | 23 +++++++
 2 files changed, 87 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf-fediz/blob/91154a12/services/oidc/src/main/java/org/apache/cxf/fediz/service/oidc/JAASAuthenticationStrategy.java
----------------------------------------------------------------------
diff --git a/services/oidc/src/main/java/org/apache/cxf/fediz/service/oidc/JAASAuthenticationStrategy.java b/services/oidc/src/main/java/org/apache/cxf/fediz/service/oidc/JAASAuthenticationStrategy.java
new file mode 100644
index 0000000..10e4255
--- /dev/null
+++ b/services/oidc/src/main/java/org/apache/cxf/fediz/service/oidc/JAASAuthenticationStrategy.java
@@ -0,0 +1,64 @@
+/**
+ * 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.cxf.fediz.service.oidc;
+
+import java.util.logging.Level;
+import java.util.logging.Logger;
+
+import javax.security.auth.callback.CallbackHandler;
+import javax.security.auth.login.Configuration;
+import javax.security.auth.login.LoginContext;
+import javax.security.auth.login.LoginException;
+
+import org.apache.cxf.common.logging.LogUtils;
+import org.apache.cxf.interceptor.security.NamePasswordCallbackHandler;
+
+public class JAASAuthenticationStrategy implements ProviderAuthenticationStrategy {
+    private static final Logger LOG = LogUtils.getL7dLogger(JAASAuthenticationStrategy.class);
+    private String contextName;
+    private Configuration loginConfig;
+
+    @Override
+    public boolean authenticate(String name, String password) {
+        if (contextName != null) {
+            try {
+                // Login using JAAS
+                CallbackHandler callbackHandler =
+                    new NamePasswordCallbackHandler(name, password);
+                LoginContext ctx = new LoginContext(contextName, null, callbackHandler, loginConfig);
+                ctx.login();
+                ctx.logout();
+                return true;
+            } catch (LoginException ex) {
+                String errorMessage = "Authentication failed: " + ex.getMessage();
+                LOG.log(Level.FINE, errorMessage, ex);
+            }
+        }
+        return false;
+    }
+
+    public void setContextName(String contextName) {
+        this.contextName = contextName;
+    }
+
+    public void setLoginConfig(Configuration loginConfig) {
+        this.loginConfig = loginConfig;
+    }
+
+}

http://git-wip-us.apache.org/repos/asf/cxf-fediz/blob/91154a12/services/oidc/src/main/java/org/apache/cxf/fediz/service/oidc/ProviderAuthenticationStrategy.java
----------------------------------------------------------------------
diff --git a/services/oidc/src/main/java/org/apache/cxf/fediz/service/oidc/ProviderAuthenticationStrategy.java b/services/oidc/src/main/java/org/apache/cxf/fediz/service/oidc/ProviderAuthenticationStrategy.java
new file mode 100644
index 0000000..71dd1b7
--- /dev/null
+++ b/services/oidc/src/main/java/org/apache/cxf/fediz/service/oidc/ProviderAuthenticationStrategy.java
@@ -0,0 +1,23 @@
+/**
+ * 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.cxf.fediz.service.oidc;
+
+public interface ProviderAuthenticationStrategy {
+    boolean authenticate(String name, String password);
+}