Search in sources :

Example 1 with SimpleCustomProperty

use of org.xdi.model.SimpleCustomProperty in project oxAuth by GluuFederation.

the class ExternalAuthenticationService method executeExternalLogout.

public boolean executeExternalLogout(CustomScriptConfiguration customScriptConfiguration, Map<String, String[]> requestParameters) {
    try {
        log.debug("Executing python 'logout' authenticator method");
        PersonAuthenticationType externalAuthenticator = (PersonAuthenticationType) customScriptConfiguration.getExternalType();
        Map<String, SimpleCustomProperty> configurationAttributes = customScriptConfiguration.getConfigurationAttributes();
        return externalAuthenticator.logout(configurationAttributes, requestParameters);
    } catch (Exception ex) {
        log.error(ex.getMessage(), ex);
    }
    return false;
}
Also used : PersonAuthenticationType(org.xdi.model.custom.script.type.auth.PersonAuthenticationType) InternalDefaultPersonAuthenticationType(org.xdi.oxauth.service.external.internal.InternalDefaultPersonAuthenticationType) SimpleCustomProperty(org.xdi.model.SimpleCustomProperty)

Example 2 with SimpleCustomProperty

use of org.xdi.model.SimpleCustomProperty in project oxAuth by GluuFederation.

the class ExternalAuthenticationService method executeExternalGetExtraParametersForStep.

public List<String> executeExternalGetExtraParametersForStep(CustomScriptConfiguration customScriptConfiguration, int step) {
    try {
        log.debug("Executing python 'getExtraParametersForStep' authenticator method");
        PersonAuthenticationType externalAuthenticator = (PersonAuthenticationType) customScriptConfiguration.getExternalType();
        Map<String, SimpleCustomProperty> configurationAttributes = customScriptConfiguration.getConfigurationAttributes();
        return externalAuthenticator.getExtraParametersForStep(configurationAttributes, step);
    } catch (Exception ex) {
        log.error(ex.getMessage(), ex);
    }
    return null;
}
Also used : PersonAuthenticationType(org.xdi.model.custom.script.type.auth.PersonAuthenticationType) InternalDefaultPersonAuthenticationType(org.xdi.oxauth.service.external.internal.InternalDefaultPersonAuthenticationType) SimpleCustomProperty(org.xdi.model.SimpleCustomProperty)

Example 3 with SimpleCustomProperty

use of org.xdi.model.SimpleCustomProperty in project oxAuth by GluuFederation.

the class ExternalAuthenticationService method getLogoutExternalUrl.

public String getLogoutExternalUrl(CustomScriptConfiguration customScriptConfiguration, Map<String, String[]> requestParameters) {
    try {
        log.debug("Executing python 'getLogouExternalUrl' authenticator method");
        PersonAuthenticationType externalAuthenticator = (PersonAuthenticationType) customScriptConfiguration.getExternalType();
        Map<String, SimpleCustomProperty> configurationAttributes = customScriptConfiguration.getConfigurationAttributes();
        return externalAuthenticator.getLogoutExternalUrl(configurationAttributes, requestParameters);
    } catch (Exception ex) {
        log.error(ex.getMessage(), ex);
    }
    return null;
}
Also used : PersonAuthenticationType(org.xdi.model.custom.script.type.auth.PersonAuthenticationType) InternalDefaultPersonAuthenticationType(org.xdi.oxauth.service.external.internal.InternalDefaultPersonAuthenticationType) SimpleCustomProperty(org.xdi.model.SimpleCustomProperty)

Example 4 with SimpleCustomProperty

use of org.xdi.model.SimpleCustomProperty in project oxAuth by GluuFederation.

the class ExternalAuthenticationService method executeExternalGetCountAuthenticationSteps.

public int executeExternalGetCountAuthenticationSteps(CustomScriptConfiguration customScriptConfiguration) {
    try {
        log.debug("Executing python 'getCountAuthenticationSteps' authenticator method");
        PersonAuthenticationType externalAuthenticator = (PersonAuthenticationType) customScriptConfiguration.getExternalType();
        Map<String, SimpleCustomProperty> configurationAttributes = customScriptConfiguration.getConfigurationAttributes();
        return externalAuthenticator.getCountAuthenticationSteps(configurationAttributes);
    } catch (Exception ex) {
        log.error(ex.getMessage(), ex);
    }
    return -1;
}
Also used : PersonAuthenticationType(org.xdi.model.custom.script.type.auth.PersonAuthenticationType) InternalDefaultPersonAuthenticationType(org.xdi.oxauth.service.external.internal.InternalDefaultPersonAuthenticationType) SimpleCustomProperty(org.xdi.model.SimpleCustomProperty)

Example 5 with SimpleCustomProperty

use of org.xdi.model.SimpleCustomProperty in project oxAuth by GluuFederation.

the class ExternalAuthenticationService method executeExternalGetPageForStep.

public String executeExternalGetPageForStep(CustomScriptConfiguration customScriptConfiguration, int step) {
    try {
        log.debug("Executing python 'getPageForStep' authenticator method");
        PersonAuthenticationType externalAuthenticator = (PersonAuthenticationType) customScriptConfiguration.getExternalType();
        Map<String, SimpleCustomProperty> configurationAttributes = customScriptConfiguration.getConfigurationAttributes();
        return externalAuthenticator.getPageForStep(configurationAttributes, step);
    } catch (Exception ex) {
        log.error(ex.getMessage(), ex);
    }
    return null;
}
Also used : PersonAuthenticationType(org.xdi.model.custom.script.type.auth.PersonAuthenticationType) InternalDefaultPersonAuthenticationType(org.xdi.oxauth.service.external.internal.InternalDefaultPersonAuthenticationType) SimpleCustomProperty(org.xdi.model.SimpleCustomProperty)

Aggregations

SimpleCustomProperty (org.xdi.model.SimpleCustomProperty)41 PersonAuthenticationType (org.xdi.model.custom.script.type.auth.PersonAuthenticationType)10 InternalDefaultPersonAuthenticationType (org.xdi.oxauth.service.external.internal.InternalDefaultPersonAuthenticationType)10 ScimType (org.xdi.model.custom.script.type.scim.ScimType)6 CustomScript (org.xdi.model.custom.script.model.CustomScript)4 UpdateUserType (org.xdi.model.custom.script.type.user.UpdateUserType)4 UserRegistrationType (org.xdi.model.custom.script.type.user.UserRegistrationType)4 AuthenticationCustomScript (org.xdi.model.custom.script.model.auth.AuthenticationCustomScript)3 ArrayList (java.util.ArrayList)2 HashMap (java.util.HashMap)2 AuthenticationScriptUsageType (org.xdi.model.AuthenticationScriptUsageType)2 CustomScriptConfiguration (org.xdi.model.custom.script.conf.CustomScriptConfiguration)2 BaseExternalType (org.xdi.model.custom.script.type.BaseExternalType)2 IdGeneratorType (org.xdi.model.custom.script.type.id.IdGeneratorType)2 File (java.io.File)1 FileFilter (java.io.FileFilter)1 IOException (java.io.IOException)1 UnsupportedEncodingException (java.io.UnsupportedEncodingException)1 List (java.util.List)1 Entry (java.util.Map.Entry)1