如何通过单点登录将Alfresco与Wordpress集成?

时间:2018-06-05 09:56:32

标签: wordpress single-sign-on integration alfresco alfresco-share

我试图在Wordpress和Alfresco之间配置单点登录,因此我在wordpress管理面板上添加了WordPress OAuth2 Provider Plugin。 wordpress plugin

我创建了一个客户端并向我的露天插入了一个重定向uri,插件给了我一个密钥和一个秘密。现在,登录到wordpress后,我转到我的博客,点击链接继续进行露天,但页面上有网址:

http://localhost:8080/share/page/repository?oauth=authorize&response_type=code&client_id=**************&client_secret=**************&redirect_uri=http%3A%2F%2Flocalhost%2F%3Fauth%3Dssoe

alfresco login

再次问我用户名和密码!如何配置Alfresco,以便使用这些凭据进行记录?感谢任何想要帮助我的人,并对我糟糕的英语表示抱歉。

2 个答案:

答案 0 :(得分:1)

Alfresco包括多个身份验证系统,包括Alfresco数据库,Active Directory,LDAP,Kerberos,外部,并且可以设置为使用其中一个或其组合进行身份验证。通常,这些身份验证系统涵盖了大多数所需的身份验证组合和机制。

您还可以使用alfresco自定义身份验证子系统, 在此,您需要在要对用户进行身份验证时传递条件, 这是用于身份验证的一些java类代码

     package org.alfresco.tutorial.repo.security.authentication;

import net.sf.acegisecurity.Authentication;

import org.alfresco.error.AlfrescoRuntimeException;
import org.alfresco.repo.security.authentication.AbstractAuthenticationComponent;
import org.alfresco.repo.security.authentication.AuthenticationException;
import org.apache.commons.codec.binary.StringUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

public class CustomAuthenticationComponentImpl extends AbstractAuthenticationComponent {
    private static final Log LOG = LogFactory.getLog(CustomAuthenticationComponentImpl.class);

   /**
    * Some custom properties that could be used to inject a remote login server hostname and port.
    * Not used at the moment but demonstrates property injection in custom authentication component.
    */
    private String remoteAuthenticatorHostname;
    private String remoteAuthenticatorPort;

    public void setRemoteAuthenticatorHostname(String remoteAuthenticatorHostname) {
        this.remoteAuthenticatorHostname = remoteAuthenticatorHostname;
    }

    public void setRemoteAuthenticatorPort(String remoteAuthenticatorPort) {
        this.remoteAuthenticatorPort = remoteAuthenticatorPort;
    }

    public void authenticateImpl(String userName, char[] password) throws AuthenticationException {
        if (LOG.isDebugEnabled()) {
           LOG.debug("Login request(" + remoteAuthenticatorHostname + ":" + remoteAuthenticatorPort +
           ") : [userName=" + userName + "][password=" + String.valueOf(password) + "]");
        }

        // Do your custom authentication here, and then set the current user (in this example we are only allowing
        // john to authenticate successfully, and we don't check pwd)
        // You would typically connect to the remote authentication mechanism to verify username/pwd...
        if (StringUtils.equals(userName, "john") || isGuestUserName(userName) ||
                getDefaultAdministratorUserNames().contains(userName)) {
            setCurrentUser(userName);
        } else {
            String msg = "Login request: username not recognized [userName=" + userName + "]";
            LOG.error(msg);
            throw new AuthenticationException(msg);
        }
    }

    /**
     * The default is not to support token base authentication
     */
    public Authentication authenticate(Authentication token) throws AuthenticationException {
        throw new AlfrescoRuntimeException("Authentication via token not supported");
    }

    /**
     * This authentication component implementation allows guest login
     * @return
     */
    @Override
    protected boolean implementationAllowsGuestLogin() {
        return true;
    }
}

请参阅此documentation了解详情

答案 1 :(得分:0)

为外部身份验证配置Alfresco可能更容易,然后在Alfresco前面添加一个可以处理OAuth2令牌的代理。 Alfresco本身并不支持OAuth2。因此,除非您使用外部,否则您必须自己编写身份验证代码。