]> source.dussan.org Git - sonarqube.git/commit
SONAR-12471 Embed LDAP authentication
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Fri, 27 Sep 2019 14:25:53 +0000 (16:25 +0200)
committerSonarTech <sonartech@sonarsource.com>
Mon, 7 Oct 2019 18:21:06 +0000 (20:21 +0200)
commit274c9faaf56a985b6221b923ddf964b809b8aa9d
tree20c8e239c4f53e982520911db715c22738608ae4
parent69dd7210a6086f1e7687aee5ee2986a91cab0885
SONAR-12471 Embed LDAP authentication
60 files changed:
.cirrus.yml
server/sonar-auth-ldap/build.gradle [new file with mode: 0644]
server/sonar-auth-ldap/src/main/java/org/sonar/auth/ldap/CallbackHandlerImpl.java [new file with mode: 0644]
server/sonar-auth-ldap/src/main/java/org/sonar/auth/ldap/ContextHelper.java [new file with mode: 0644]
server/sonar-auth-ldap/src/main/java/org/sonar/auth/ldap/Krb5LoginConfiguration.java [new file with mode: 0644]
server/sonar-auth-ldap/src/main/java/org/sonar/auth/ldap/LdapAuthenticator.java [new file with mode: 0644]
server/sonar-auth-ldap/src/main/java/org/sonar/auth/ldap/LdapAutodiscovery.java [new file with mode: 0644]
server/sonar-auth-ldap/src/main/java/org/sonar/auth/ldap/LdapContextFactory.java [new file with mode: 0644]
server/sonar-auth-ldap/src/main/java/org/sonar/auth/ldap/LdapException.java [new file with mode: 0644]
server/sonar-auth-ldap/src/main/java/org/sonar/auth/ldap/LdapGroupMapping.java [new file with mode: 0644]
server/sonar-auth-ldap/src/main/java/org/sonar/auth/ldap/LdapGroupsProvider.java [new file with mode: 0644]
server/sonar-auth-ldap/src/main/java/org/sonar/auth/ldap/LdapModule.java [new file with mode: 0644]
server/sonar-auth-ldap/src/main/java/org/sonar/auth/ldap/LdapRealm.java [new file with mode: 0644]
server/sonar-auth-ldap/src/main/java/org/sonar/auth/ldap/LdapSearch.java [new file with mode: 0644]
server/sonar-auth-ldap/src/main/java/org/sonar/auth/ldap/LdapSettingsManager.java [new file with mode: 0644]
server/sonar-auth-ldap/src/main/java/org/sonar/auth/ldap/LdapUserMapping.java [new file with mode: 0644]
server/sonar-auth-ldap/src/main/java/org/sonar/auth/ldap/LdapUsersProvider.java [new file with mode: 0644]
server/sonar-auth-ldap/src/main/java/org/sonar/auth/ldap/package-info.java [new file with mode: 0644]
server/sonar-auth-ldap/src/test/java/org/sonar/auth/ldap/CallbackHandlerImplTest.java [new file with mode: 0644]
server/sonar-auth-ldap/src/test/java/org/sonar/auth/ldap/ContextHelperTest.java [new file with mode: 0644]
server/sonar-auth-ldap/src/test/java/org/sonar/auth/ldap/KerberosTest.java [new file with mode: 0644]
server/sonar-auth-ldap/src/test/java/org/sonar/auth/ldap/LdapAuthenticatorTest.java [new file with mode: 0644]
server/sonar-auth-ldap/src/test/java/org/sonar/auth/ldap/LdapAutoDiscoveryWarningLogTest.java [new file with mode: 0644]
server/sonar-auth-ldap/src/test/java/org/sonar/auth/ldap/LdapAutodiscoveryTest.java [new file with mode: 0644]
server/sonar-auth-ldap/src/test/java/org/sonar/auth/ldap/LdapGroupMappingTest.java [new file with mode: 0644]
server/sonar-auth-ldap/src/test/java/org/sonar/auth/ldap/LdapGroupsProviderTest.java [new file with mode: 0644]
server/sonar-auth-ldap/src/test/java/org/sonar/auth/ldap/LdapModuleTest.java [new file with mode: 0644]
server/sonar-auth-ldap/src/test/java/org/sonar/auth/ldap/LdapRealmTest.java [new file with mode: 0644]
server/sonar-auth-ldap/src/test/java/org/sonar/auth/ldap/LdapReferralsTest.java [new file with mode: 0644]
server/sonar-auth-ldap/src/test/java/org/sonar/auth/ldap/LdapSearchTest.java [new file with mode: 0644]
server/sonar-auth-ldap/src/test/java/org/sonar/auth/ldap/LdapSettingsFactory.java [new file with mode: 0644]
server/sonar-auth-ldap/src/test/java/org/sonar/auth/ldap/LdapSettingsManagerTest.java [new file with mode: 0644]
server/sonar-auth-ldap/src/test/java/org/sonar/auth/ldap/LdapUserMappingTest.java [new file with mode: 0644]
server/sonar-auth-ldap/src/test/java/org/sonar/auth/ldap/LdapUsersProviderTest.java [new file with mode: 0644]
server/sonar-auth-ldap/src/test/java/org/sonar/auth/ldap/server/ApacheDS.java [new file with mode: 0644]
server/sonar-auth-ldap/src/test/java/org/sonar/auth/ldap/server/LdapServer.java [new file with mode: 0644]
server/sonar-auth-ldap/src/test/resources/conf/krb5.conf [new file with mode: 0644]
server/sonar-auth-ldap/src/test/resources/conf/sasl_mech.properties [new file with mode: 0644]
server/sonar-auth-ldap/src/test/resources/krb.ldif [new file with mode: 0644]
server/sonar-auth-ldap/src/test/resources/logback-test.xml [new file with mode: 0644]
server/sonar-auth-ldap/src/test/resources/static-groups.example.org.ldif [new file with mode: 0644]
server/sonar-auth-ldap/src/test/resources/users-apacheds.ldif [new file with mode: 0644]
server/sonar-auth-ldap/src/test/resources/users.example.org.ldif [new file with mode: 0644]
server/sonar-auth-ldap/src/test/resources/users.infosupport.com.ldif [new file with mode: 0644]
server/sonar-auth-saml/src/test/java/org/sonar/auth/saml/SamlIdentityProviderTest.java
server/sonar-docs/src/pages/instance-administration/delegated-auth.md
server/sonar-server-common/src/main/java/org/sonar/server/plugins/ServerExtensionInstaller.java
server/sonar-server-common/src/test/java/org/sonar/server/plugins/ServerExtensionInstallerTest.java
server/sonar-webserver/build.gradle
server/sonar-webserver/src/main/java/org/sonar/server/platform/platformlevel/PlatformLevel4.java
settings.gradle
sonar-application/build.gradle
sonar-testing-ldap/build.gradle [new file with mode: 0644]
sonar-testing-ldap/src/main/java/org/sonar/ldap/ApacheDS.java [new file with mode: 0644]
sonar-testing-ldap/src/main/java/org/sonar/ldap/package-info.java [new file with mode: 0644]
sonar-testing-ldap/src/test/java/org/sonar/ldap/ApacheDSTest.java [new file with mode: 0644]
sonar-testing-ldap/src/test/resources/change.ldif [new file with mode: 0644]
sonar-testing-ldap/src/test/resources/delete.ldif [new file with mode: 0644]
sonar-testing-ldap/src/test/resources/init.ldif [new file with mode: 0644]
sonar-testing-ldap/src/test/resources/logback-test.xml [new file with mode: 0644]