LDAP: only check once for name conflicts on update. Set a value on install as well
This commit is contained in:
parent
7922338050
commit
bae954a797
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
$state = OCP\Config::getSystemValue('ldapIgnoreNamingRules', 'doSet');
|
||||
if($state == 'doSet'){
|
||||
OCP\Config::setSystemValue('ldapIgnoreNamingRules', false);
|
||||
}
|
|
@ -12,22 +12,25 @@ if(!is_null($pw)) {
|
|||
|
||||
//detect if we can switch on naming guidelines. We won't do it on conflicts.
|
||||
//it's a bit spaghetti, but hey.
|
||||
$sqlCleanMap = 'DELETE FROM *PREFIX*ldap_user_mapping';
|
||||
$state = OCP\Config::getSystemValue('ldapIgnoreNamingRules', 'doCheck');
|
||||
if($state == 'doCheck'){
|
||||
$sqlCleanMap = 'DELETE FROM *PREFIX*ldap_user_mapping';
|
||||
|
||||
require_once(OC::$APPSROOT.'/apps/user_ldap/lib_ldap.php');
|
||||
require_once(OC::$APPSROOT.'/apps/user_ldap/user_ldap.php');
|
||||
require_once(OC::$APPSROOT.'/apps/user_ldap/lib_ldap.php');
|
||||
require_once(OC::$APPSROOT.'/apps/user_ldap/user_ldap.php');
|
||||
|
||||
OCP\Config::setSystemValue('ldapIgnoreNamingRules', true);
|
||||
$LDAP_USER = new OC_USER_LDAP();
|
||||
$users_old = $LDAP_USER->getUsers();
|
||||
$query = OCP\DB::prepare($sqlCleanMap);
|
||||
$query->execute();
|
||||
OCP\Config::setSystemValue('ldapIgnoreNamingRules', false);
|
||||
OC_LDAP::init(true);
|
||||
$users_new = $LDAP_USER->getUsers();
|
||||
$query = OCP\DB::prepare($sqlCleanMap);
|
||||
$query->execute();
|
||||
if($users_old !== $users_new) {
|
||||
//we don't need to check Groups, because they were not supported in 3'
|
||||
OCP\Config::setSystemValue('ldapIgnoreNamingRules', true);
|
||||
$LDAP_USER = new OC_USER_LDAP();
|
||||
$users_old = $LDAP_USER->getUsers();
|
||||
$query = OCP\DB::prepare($sqlCleanMap);
|
||||
$query->execute();
|
||||
OCP\Config::setSystemValue('ldapIgnoreNamingRules', false);
|
||||
OC_LDAP::init(true);
|
||||
$users_new = $LDAP_USER->getUsers();
|
||||
$query = OCP\DB::prepare($sqlCleanMap);
|
||||
$query->execute();
|
||||
if($users_old !== $users_new) {
|
||||
//we don't need to check Groups, because they were not supported in 3'
|
||||
OCP\Config::setSystemValue('ldapIgnoreNamingRules', true);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue