mirror of
https://github.com/YunoHost-Apps/dolibarr_ynh.git
synced 2024-09-03 18:35:53 +02:00
346 lines
10 KiB
PHP
346 lines
10 KiB
PHP
|
#!/usr/bin/php
|
||
|
<?php
|
||
|
/**
|
||
|
* Copyright (C) 2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||
|
* Copyright (C) 2006-2010 Laurent Destailleur <eldy@users.sourceforge.net>
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation; either version 3 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* \file scripts/members/sync_members_ldap2dolibarr.php
|
||
|
* \ingroup ldap member
|
||
|
* \brief Script de mise a jour des adherents dans Dolibarr depuis LDAP
|
||
|
*/
|
||
|
|
||
|
$sapi_type = php_sapi_name();
|
||
|
$script_file = basename(__FILE__);
|
||
|
$path=dirname(__FILE__).'/';
|
||
|
|
||
|
// Test if batch mode
|
||
|
if (substr($sapi_type, 0, 3) == 'cgi') {
|
||
|
echo "Error: You are using PHP for CGI. To execute ".$script_file." from command line, you must use PHP for CLI mode.\n";
|
||
|
exit(-1);
|
||
|
}
|
||
|
|
||
|
require_once($path."../../htdocs/master.inc.php");
|
||
|
require_once(DOL_DOCUMENT_ROOT."/core/lib/date.lib.php");
|
||
|
require_once(DOL_DOCUMENT_ROOT."/core/class/ldap.class.php");
|
||
|
require_once(DOL_DOCUMENT_ROOT."/adherents/class/adherent.class.php");
|
||
|
require_once(DOL_DOCUMENT_ROOT."/adherents/class/cotisation.class.php");
|
||
|
|
||
|
$langs->load("main");
|
||
|
$langs->load("errors");
|
||
|
|
||
|
|
||
|
// Global variables
|
||
|
$version=DOL_VERSION;
|
||
|
$error=0;
|
||
|
$forcecommit=0;
|
||
|
$confirmed=0;
|
||
|
|
||
|
|
||
|
/*
|
||
|
* Main
|
||
|
*/
|
||
|
|
||
|
@set_time_limit(0);
|
||
|
print "***** ".$script_file." (".$version.") pid=".dol_getmypid()." *****\n";
|
||
|
dol_syslog($script_file." launched with arg ".join(',',$argv));
|
||
|
|
||
|
// List of fields to get from LDAP
|
||
|
$required_fields = array(
|
||
|
$conf->global->LDAP_KEY_MEMBERS,
|
||
|
$conf->global->LDAP_FIELD_FULLNAME,
|
||
|
$conf->global->LDAP_FIELD_LOGIN,
|
||
|
$conf->global->LDAP_FIELD_LOGIN_SAMBA,
|
||
|
$conf->global->LDAP_FIELD_PASSWORD,
|
||
|
$conf->global->LDAP_FIELD_PASSWORD_CRYPTED,
|
||
|
$conf->global->LDAP_FIELD_NAME,
|
||
|
$conf->global->LDAP_FIELD_FIRSTNAME,
|
||
|
$conf->global->LDAP_FIELD_MAIL,
|
||
|
$conf->global->LDAP_FIELD_PHONE,
|
||
|
$conf->global->LDAP_FIELD_PHONE_PERSO,
|
||
|
$conf->global->LDAP_FIELD_MOBILE,
|
||
|
$conf->global->LDAP_FIELD_FAX,
|
||
|
$conf->global->LDAP_FIELD_ADDRESS,
|
||
|
$conf->global->LDAP_FIELD_ZIP,
|
||
|
$conf->global->LDAP_FIELD_TOWN,
|
||
|
$conf->global->LDAP_FIELD_COUNTRY,
|
||
|
$conf->global->LDAP_FIELD_DESCRIPTION,
|
||
|
$conf->global->LDAP_FIELD_BIRTHDATE,
|
||
|
$conf->global->LDAP_FIELD_MEMBER_STATUS,
|
||
|
$conf->global->LDAP_FIELD_MEMBER_END_LASTSUBSCRIPTION,
|
||
|
// Subscriptions
|
||
|
$conf->global->LDAP_FIELD_MEMBER_FIRSTSUBSCRIPTION_DATE,
|
||
|
$conf->global->LDAP_FIELD_MEMBER_FIRSTSUBSCRIPTION_AMOUNT,
|
||
|
$conf->global->LDAP_FIELD_MEMBER_LASTSUBSCRIPTION_DATE,
|
||
|
$conf->global->LDAP_FIELD_MEMBER_LASTSUBSCRIPTION_AMOUNT
|
||
|
);
|
||
|
|
||
|
// Remove from required_fields all entries not configured in LDAP (empty) and duplicated
|
||
|
$required_fields=array_unique(array_values(array_filter($required_fields, "dolValidElement")));
|
||
|
|
||
|
|
||
|
if (! isset($argv[2]) || ! is_numeric($argv[2])) {
|
||
|
print "Usage: $script_file (nocommitiferror|commitiferror) id_member_type [--server=ldapserverhost] [-y]\n";
|
||
|
exit(-1);
|
||
|
}
|
||
|
|
||
|
$typeid=$argv[2];
|
||
|
foreach($argv as $key => $val)
|
||
|
{
|
||
|
if ($val == 'commitiferror') $forcecommit=1;
|
||
|
if (preg_match('/--server=([^\s]+)$/',$val,$reg)) $conf->global->LDAP_SERVER_HOST=$reg[1];
|
||
|
if (preg_match('/-y$/',$val,$reg)) $confirmed=1;
|
||
|
}
|
||
|
|
||
|
print "Mails sending disabled (useless in batch mode)\n";
|
||
|
$conf->global->MAIN_DISABLE_ALL_MAILS=1; // On bloque les mails
|
||
|
print "\n";
|
||
|
print "----- Synchronize all records from LDAP database:\n";
|
||
|
print "host=".$conf->global->LDAP_SERVER_HOST."\n";
|
||
|
print "port=".$conf->global->LDAP_SERVER_PORT."\n";
|
||
|
print "login=".$conf->global->LDAP_ADMIN_DN."\n";
|
||
|
print "pass=".preg_replace('/./i','*',$conf->global->LDAP_ADMIN_PASS)."\n";
|
||
|
print "DN to extract=".$conf->global->LDAP_MEMBER_DN."\n";
|
||
|
print 'Filter=('.$conf->global->LDAP_KEY_MEMBERS.'=*)'."\n";
|
||
|
print "----- To Dolibarr database:\n";
|
||
|
print "type=".$conf->db->type."\n";
|
||
|
print "host=".$conf->db->host."\n";
|
||
|
print "port=".$conf->db->port."\n";
|
||
|
print "login=".$conf->db->user."\n";
|
||
|
print "database=".$conf->db->name."\n";
|
||
|
print "----- Options:\n";
|
||
|
print "commitiferror=".$forcecommit."\n";
|
||
|
print "Mapped LDAP fields=".join(',',$required_fields)."\n";
|
||
|
print "\n";
|
||
|
|
||
|
// Check parameters
|
||
|
if (empty($conf->global->LDAP_MEMBER_DN))
|
||
|
{
|
||
|
print $langs->trans("Error").': '.$langs->trans("LDAP setup for members not defined inside Dolibarr")."\n";
|
||
|
exit(-1);
|
||
|
}
|
||
|
if ($typeid <= 0)
|
||
|
{
|
||
|
print $langs->trans("Error").': Parameter id_member_type is not a valid ref of an existing member type'."\n";
|
||
|
exit(-2);
|
||
|
}
|
||
|
|
||
|
|
||
|
if (! $confirmed)
|
||
|
{
|
||
|
print "Hit Enter to continue or CTRL+C to stop...\n";
|
||
|
$input = trim(fgets(STDIN));
|
||
|
}
|
||
|
|
||
|
// Load table of correspondence of countries
|
||
|
$hashlib2rowid=array();
|
||
|
$countries=array();
|
||
|
$sql = "SELECT rowid, code, label, active";
|
||
|
$sql.= " FROM ".MAIN_DB_PREFIX."c_country";
|
||
|
$sql.= " WHERE active = 1";
|
||
|
$sql.= " ORDER BY code ASC";
|
||
|
$resql=$db->query($sql);
|
||
|
if ($resql)
|
||
|
{
|
||
|
$num = $db->num_rows($resql);
|
||
|
$i = 0;
|
||
|
if ($num)
|
||
|
{
|
||
|
while ($i < $num)
|
||
|
{
|
||
|
$obj = $db->fetch_object($resql);
|
||
|
if ($obj)
|
||
|
{
|
||
|
//print 'Load cache for country '.strtolower($obj->label).' rowid='.$obj->rowid."\n";
|
||
|
$hashlib2rowid[strtolower($obj->label)]=$obj->rowid;
|
||
|
$countries[$obj->rowid]=array('rowid' => $obj->rowid, 'label' => $obj->label, 'code' => $obj->code);
|
||
|
}
|
||
|
$i++;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
dol_print_error($db);
|
||
|
exit(-1);
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
$ldap = new Ldap();
|
||
|
$result = $ldap->connect_bind();
|
||
|
if ($result >= 0)
|
||
|
{
|
||
|
$justthese=array();
|
||
|
|
||
|
|
||
|
// We disable synchro Dolibarr-LDAP
|
||
|
$conf->global->LDAP_MEMBER_ACTIVE=0;
|
||
|
|
||
|
$ldaprecords = $ldap->getRecords('*',$conf->global->LDAP_MEMBER_DN, $conf->global->LDAP_KEY_MEMBERS, $required_fields, 0);
|
||
|
if (is_array($ldaprecords))
|
||
|
{
|
||
|
$db->begin();
|
||
|
|
||
|
// Warning $ldapuser has a key in lowercase
|
||
|
foreach ($ldaprecords as $key => $ldapuser)
|
||
|
{
|
||
|
$member = new Adherent($db);
|
||
|
|
||
|
// Propriete membre
|
||
|
$member->firstname=$ldapuser[$conf->global->LDAP_FIELD_FIRSTNAME];
|
||
|
$member->lastname=$ldapuser[$conf->global->LDAP_FIELD_NAME];
|
||
|
$member->login=$ldapuser[$conf->global->LDAP_FIELD_LOGIN];
|
||
|
$member->pass=$ldapuser[$conf->global->LDAP_FIELD_PASSWORD];
|
||
|
|
||
|
//$member->societe;
|
||
|
$member->address=$ldapuser[$conf->global->LDAP_FIELD_ADDRESS];
|
||
|
$member->zip=$ldapuser[$conf->global->LDAP_FIELD_ZIP];
|
||
|
$member->town=$ldapuser[$conf->global->LDAP_FIELD_TOWN];
|
||
|
$member->country=$ldapuser[$conf->global->LDAP_FIELD_COUNTRY];
|
||
|
$member->country_id=$countries[$hashlib2rowid[strtolower($member->country)]]['rowid'];
|
||
|
$member->country_code=$countries[$hashlib2rowid[strtolower($member->country)]]['code'];
|
||
|
|
||
|
$member->phone=$ldapuser[$conf->global->LDAP_FIELD_PHONE];
|
||
|
$member->phone_perso=$ldapuser[$conf->global->LDAP_FIELD_PHONE_PERSO];
|
||
|
$member->phone_mobile=$ldapuser[$conf->global->LDAP_FIELD_MOBILE];
|
||
|
$member->email=$ldapuser[$conf->global->LDAP_FIELD_MAIL];
|
||
|
|
||
|
$member->note=$ldapuser[$conf->global->LDAP_FIELD_DESCRIPTION];
|
||
|
$member->morphy='phy';
|
||
|
$member->photo='';
|
||
|
$member->public=1;
|
||
|
$member->birth=dol_stringtotime($ldapuser[$conf->global->LDAP_FIELD_BIRTHDATE]);
|
||
|
|
||
|
$member->statut=-1;
|
||
|
if (isset($ldapuser[$conf->global->LDAP_FIELD_MEMBER_STATUS]))
|
||
|
{
|
||
|
$member->datec=dol_stringtotime($ldapuser[$conf->global->LDAP_FIELD_MEMBER_FIRSTSUBSCRIPTION_DATE]);
|
||
|
$member->datevalid=dol_stringtotime($ldapuser[$conf->global->LDAP_FIELD_MEMBER_FIRSTSUBSCRIPTION_DATE]);
|
||
|
$member->statut=$ldapuser[$conf->global->LDAP_FIELD_MEMBER_STATUS];
|
||
|
}
|
||
|
//if ($member->statut > 1) $member->statut=1;
|
||
|
|
||
|
//print_r($ldapuser);
|
||
|
|
||
|
// Propriete type membre
|
||
|
$member->typeid=$typeid;
|
||
|
|
||
|
// Creation membre
|
||
|
print $langs->transnoentities("MemberCreate").' # '.$key.': login='.$member->login.', fullname='.$member->getFullName($langs);
|
||
|
print ', datec='.$member->datec;
|
||
|
$member_id=$member->create($user);
|
||
|
if ($member_id > 0)
|
||
|
{
|
||
|
print ' --> Created member id='.$member_id.' login='.$member->login;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
$error++;
|
||
|
print ' --> '.$member->error;
|
||
|
}
|
||
|
print "\n";
|
||
|
|
||
|
//print_r($member);
|
||
|
|
||
|
$datefirst='';
|
||
|
if ($conf->global->LDAP_FIELD_MEMBER_FIRSTSUBSCRIPTION_DATE)
|
||
|
{
|
||
|
$datefirst=dol_stringtotime($ldapuser[$conf->global->LDAP_FIELD_MEMBER_FIRSTSUBSCRIPTION_DATE]);
|
||
|
$pricefirst=price2num($ldapuser[$conf->global->LDAP_FIELD_MEMBER_FIRSTSUBSCRIPTION_AMOUNT]);
|
||
|
}
|
||
|
|
||
|
$datelast='';
|
||
|
if ($conf->global->LDAP_FIELD_MEMBER_LASTSUBSCRIPTION_DATE)
|
||
|
{
|
||
|
$datelast=dol_stringtotime($ldapuser[$conf->global->LDAP_FIELD_MEMBER_LASTSUBSCRIPTION_DATE]);
|
||
|
$pricelast=price2num($ldapuser[$conf->global->LDAP_FIELD_MEMBER_LASTSUBSCRIPTION_AMOUNT]);
|
||
|
}
|
||
|
elseif ($conf->global->LDAP_FIELD_MEMBER_END_LASTSUBSCRIPTION)
|
||
|
{
|
||
|
$datelast=dol_time_plus_duree(dol_stringtotime($ldapuser[$conf->global->LDAP_FIELD_MEMBER_END_LASTSUBSCRIPTION]),-1,'y')+60*60*24;
|
||
|
$pricelast=price2num($ldapuser[$conf->global->LDAP_FIELD_MEMBER_LASTSUBSCRIPTION_AMOUNT]);
|
||
|
|
||
|
// Cas special ou date derniere <= date premiere
|
||
|
if ($datefirst && $datelast && $datelast <= $datefirst)
|
||
|
{
|
||
|
// On ne va inserer que la premiere
|
||
|
$datelast=0;
|
||
|
if (! $pricefirst && $pricelast) $pricefirst = $pricelast;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
// Insert first subscription
|
||
|
if ($datefirst)
|
||
|
{
|
||
|
// Cree premiere cotisation et met a jour datefin dans adherent
|
||
|
//print "xx".$datefirst."\n";
|
||
|
$crowid=$member->cotisation($datefirst, $pricefirst, 0);
|
||
|
}
|
||
|
|
||
|
// Insert last subscription
|
||
|
if ($datelast)
|
||
|
{
|
||
|
// Cree derniere cotisation et met a jour datefin dans adherent
|
||
|
//print "yy".dol_print_date($datelast)."\n";
|
||
|
$crowid=$member->cotisation($datelast, $pricelast, 0);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
if (! $error || $forcecommit)
|
||
|
{
|
||
|
if (! $error) print $langs->transnoentities("NoErrorCommitIsDone")."\n";
|
||
|
else print $langs->transnoentities("ErrorButCommitIsDone")."\n";
|
||
|
$db->commit();
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
print $langs->transnoentities("ErrorSomeErrorWereFoundRollbackIsDone",$error)."\n";
|
||
|
$db->rollback();
|
||
|
}
|
||
|
print "\n";
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
dol_print_error('',$ldap->error);
|
||
|
$error++;
|
||
|
}
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
dol_print_error('',$ldap->error);
|
||
|
$error++;
|
||
|
}
|
||
|
|
||
|
|
||
|
exit($error);
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Function to say if a value is empty or not
|
||
|
*
|
||
|
* @param string $element Value to test
|
||
|
* @return boolean True of false
|
||
|
*/
|
||
|
function dolValidElement($element)
|
||
|
{
|
||
|
return (trim($element) != '');
|
||
|
}
|
||
|
|