Newer
Older
/**
* Copyright Maarch since 2008 under licence GPLv3.
* See LICENCE.txt file at the root folder for more details.
* This file is part of Maarch software.

Alex ORLUC
committed
*
* @file
*
* @author Laurent Giovannoni
* @author Arnaud Veber
* @date $date$
*
* @version $Revision$
* @ingroup install
*/
require_once 'core/class/class_functions.php';
require_once 'core/class/class_db.php';
require_once 'install/class/Class_Merge.php';

Alex ORLUC
committed
require_once 'core'.DIRECTORY_SEPARATOR.'class'
.DIRECTORY_SEPARATOR.'class_security.php';

Alex ORLUC
committed
functions::xecho($e->getMessage()).' // ';
}
class Install extends functions
{
private $lang = 'en';
private $docservers = array(
array('FASTHD_AI', 'ai'),
array('FASTHD_ATTACH', 'manual_attachments'),
array('FASTHD_ATTACH_VERSION', 'manual_attachments_version'),
array('CONVERT_MLB', 'convert_mlb'),
array('CONVERT_ATTACH', 'convert_attachments'),
array('CONVERT_ATTACH_VERSION', 'convert_attachments_version'),
array('TNL_MLB', 'thumbnails_mlb'),
array('TNL_ATTACH', 'thumbnails_attachments'),
array('TNL_ATTACH_VERSION', 'thumbnails_attachments_version'),
array('FULLTEXT_MLB', 'fulltext_mlb'),
array('FULLTEXT_ATTACH', 'fulltext_attachments'),
array('FULLTEXT_ATTACH_VERSION', 'fulltext_attachments_version'),
array('TEMPLATES', 'templates'),
public function __construct()

Alex ORLUC
committed
$Class_Merge = new Merge();
//load lang
$this->loadLang();
}
public function getLangList()
{
$langList = array();
foreach (glob('install/lang/*.php') as $fileLangPath) {
$langFile = str_replace('.php', '', end(explode('/', $fileLangPath)));
array_push($langList, $langFile);
}
return $langList;
}
public function loadLang()
{
if (!isset($_SESSION['lang'])) {
$this->lang = 'en';
}
$this->lang = $_SESSION['lang'];
$langList = $this->getLangList();
if (!in_array($this->lang, $langList)) {
$this->lang = 'en';
}

Alex ORLUC
committed
require_once 'install/lang/'.$this->lang.'.php';
}
public function getActualLang()
{
return $this->lang;
}
public function checkPrerequisites(
$is = false,
$optional = false
if ($is) {
return '<img src="img/green_light.png" width="20px"/>';
exit;
}
if (!$optional) {
return '<img src="img/red_light.png" width="20px"/>';
exit;
}

Alex ORLUC
committed
return '<img src="img/orange_light.png" width="20px"/>';
}
public function checkAllNeededPrerequisites()
{
if (!$this->isPhpVersion()) {
return false;
}
if (!$this->isPhpRequirements('pgsql')) {
return false;
}
if (!$this->isPhpRequirements('mbstring')) {
return false;
}
if (!$this->isMaarchPathWritable()) {
return false;
}
if (!$this->isDependenciesExist()) {
return false;
}
if (!$this->isPhpRequirements('gd')) {
return false;
}
/*if (!$this->isPhpRequirements('imagick')) {
/*if (!$this->isPhpRequirements('ghostscript')) {
return false;
}*/
if (!$this->isPearRequirements('System.php')) {
return false;
}
// if (!$this->isPearRequirements('MIME/Type.php')) {
// return false;
// }
/*if (!$this->isIniErrorRepportingRequirements()) {
if (!$this->isIniDisplayErrorRequirements()) {
return false;
}
if (!$this->isIniShortOpenTagRequirements()) {
return false;
}
// if (!$this->isIniMagicQuotesGpcRequirements()) {
// return false;
// }

Alex ORLUC
committed
if (DIRECTORY_SEPARATOR != '/' && !$this->isPhpRequirements('fileinfo')) {
return false;
}

Alex ORLUC
committed
return true;
}
public function isPhpVersion()
{
if (version_compare(PHP_VERSION, '5.3') < 0) {
return false;
exit;
}

Alex ORLUC
committed
return true;
}
public function isPhpRequirements($phpLibrary)
{
if (!@extension_loaded($phpLibrary)) {
return false;
exit;
}

Alex ORLUC
committed
return true;
}
public function isPearRequirements($pearLibrary)
{
$includePath = array();
$includePath = explode(';', ini_get('include_path'));

Alex ORLUC
committed
for ($i = 0; $i < count($includePath); ++$i) {
if (file_exists($includePath[$i].'/'.$pearLibrary)) {
return true;
exit;
}
}
$includePath = explode(':', ini_get('include_path'));

Alex ORLUC
committed
for ($i = 0; $i < count($includePath); ++$i) {
if (file_exists($includePath[$i].'/'.$pearLibrary)) {

Alex ORLUC
committed
return false;
}
public function isIniErrorRepportingRequirements()
{
if (version_compare(PHP_VERSION, '5.4') >= 0) {

Alex ORLUC
committed
if (ini_get('error_reporting') != 22519) {
return false;
} else {
return true;
}

Alex ORLUC
committed
if (ini_get('error_reporting') != 22519) {
return false;
} else {
return true;
}
}
}
public function isIniDisplayErrorRequirements()
{

Alex ORLUC
committed
if (strtoupper(ini_get('display_errors')) == 'OFF') {
return false;
} else {
return true;
}
}
public function isIniShortOpenTagRequirements()
{

Alex ORLUC
committed
if (strtoupper(ini_get('short_open_tag')) == 'OFF') {
return false;
} else {
return true;
}
}
// public function isIniMagicQuotesGpcRequirements()
// {
// if (strtoupper(ini_get('magic_quotes_gpc')) == 'ON') {
// return false;
// } else {
// return true;
// }
// }
public function getProgress(
$stepNb,
$stepNbTotal

Alex ORLUC
committed
--$stepNb;
--$stepNbTotal;
if ($stepNb == 0) {
return '';
exit;
}

Alex ORLUC
committed
$percentProgress = round(($stepNb / $stepNbTotal) * 100);
$sizeProgress = round(($percentProgress * 910) / 100);
$return .= '<div id="progressButton" style="width: '.$sizeProgress.'px;">';
$return .= '<div align="center">';
$return .= $percentProgress.'%';
$return .= '</div>';
$return .= '</div>';
return $return;
}
public function setPreviousStep($previousStep)
public function checkDatabaseParameters(
$databaseserver,
$databaseserverport,
$databaseuser,
$databasepassword,
$databasetype

Alex ORLUC
committed
$connect = 'host='.$databaseserver.' ';
$connect .= 'port='.$databaseserverport.' ';
$connect .= 'user='.$databaseuser.' ';
$connect .= 'password='.$databasepassword.' ';
$connect .= 'dbname=postgres';
if (!@pg_connect($connect)) {
return false;
exit;
}
pg_close();
return true;
}
public function createCustom($databasename)
{
$customAlreadyExist = realpath('.').'/custom/cs_'.$databasename;
if (file_exists($customAlreadyExist)) {
//return false;

Alex ORLUC
committed
if (is_dir(realpath('.')."/custom/cs_$databasename/apps/") && is_dir(realpath('.')."/custom/cs_$databasename/apps/maarch_entreprise/") && is_dir(realpath('.')."/custom/cs_$databasename/apps/maarch_entreprise/xml/")) {
} elseif (is_dir(realpath('.')."/custom/cs_$databasename/apps/") && !is_dir(realpath('.')."/custom/cs_$databasename/apps/maarch_entreprise/")) {
$cheminCustomMaarchCourrierAppsMaarchEntreprise = realpath('.')."/custom/cs_$databasename/apps/maarch_entreprise";
mkdir($cheminCustomMaarchCourrierAppsMaarchEntreprise, 0755);
$cheminCustomMaarchCourrierAppsMaarchEntrepriseXml = realpath('.')."/custom/cs_$databasename/apps/maarch_entreprise/xml";
mkdir($cheminCustomMaarchCourrierAppsMaarchEntrepriseXml, 0755);
} elseif (is_dir(realpath('.')."/custom/cs_$databasename/apps/") && is_dir(realpath('.')."/custom/cs_$databasename/apps/maarch_entreprise/") && !is_dir(realpath('.')."/custom/cs_$databasename/apps/maarch_entreprise/xml/")) {
$cheminCustomMaarchCourrierAppsMaarchEntrepriseXml = realpath('.')."/custom/cs_$databasename/apps/maarch_entreprise/xml";
mkdir($cheminCustomMaarchCourrierAppsMaarchEntrepriseXml, 0755);
} elseif (!is_dir(realpath('.')."/custom/cs_$databasename/apps/")) {
$cheminCustomMaarchCourrierApps = realpath('.')."/custom/cs_$databasename/apps";
mkdir($cheminCustomMaarchCourrierApps, 0755);
$cheminCustomMaarchCourrierAppsMaarchEntreprise = realpath('.')."/custom/cs_$databasename/apps/maarch_entreprise";
mkdir($cheminCustomMaarchCourrierAppsMaarchEntreprise, 0755);
$cheminCustomMaarchCourrierAppsMaarchEntrepriseXml = realpath('.')."/custom/cs_$databasename/apps/maarch_entreprise/xml";
mkdir($cheminCustomMaarchCourrierAppsMaarchEntrepriseXml, 0755);
}
if (!is_dir(realpath('.')."/custom/cs_$databasename/modules/")) {
$cheminCustomMaarchCourrierModules = realpath('.')."/custom/cs_$databasename/modules";
mkdir($cheminCustomMaarchCourrierModules, 0755);

Alex ORLUC
committed
/** Création répertoire thumbnails dans le custom **/
$cheminCustomMaarchCourrierModulesThumbnails = realpath('.')."/custom/cs_$databasename/modules/thumbnails";
mkdir($cheminCustomMaarchCourrierModulesThumbnails, 0755);
$cheminCustomMaarchCourrierModulesThumbnailsXml = realpath('.')."/custom/cs_$databasename/modules/thumbnails/xml";
mkdir($cheminCustomMaarchCourrierModulesThumbnailsXml, 0755);
$cheminCustomMaarchCourrierModulesThumbnailsScripts = realpath('.')."/custom/cs_$databasename/modules/thumbnails/scripts";
mkdir($cheminCustomMaarchCourrierModulesThumbnailsScripts, 0755);

Alex ORLUC
committed
/** Création répertoire notification dans le custom **/
$cheminCustomMaarchCourrierModulesNotifications = realpath('.')."/custom/cs_$databasename/modules/notifications";
mkdir($cheminCustomMaarchCourrierModulesNotifications, 0755);
$cheminCustomMaarchCourrierModulesNotificationsBatch = realpath('.')."/custom/cs_$databasename/modules/notifications/batch";
mkdir($cheminCustomMaarchCourrierModulesNotificationsBatch, 0755);
$cheminCustomMaarchCourrierModulesNotificationsConfig = realpath('.')."/custom/cs_$databasename/modules/notifications/batch/config";
mkdir($cheminCustomMaarchCourrierModulesNotificationsConfig, 0755);
$cheminCustomMaarchCourrierModulesNotificationsScripts = realpath('.')."/custom/cs_$databasename/modules/notifications/batch/scripts";
mkdir($cheminCustomMaarchCourrierModulesNotificationsScripts, 0755);

Alex ORLUC
committed
/** Création répertoire sendmail dans le custom **/
$cheminCustomMaarchCourrierModulesSendmail = realpath('.')."/custom/cs_$databasename/modules/sendmail";
mkdir($cheminCustomMaarchCourrierModulesSendmail, 0755);
$cheminCustomMaarchCourrierModulesSendmailBatch = realpath('.')."/custom/cs_$databasename/modules/sendmail/batch";
mkdir($cheminCustomMaarchCourrierModulesSendmailBatch, 0755);
$cheminCustomMaarchCourrierModulesSendmailBatchConfig = realpath('.')."/custom/cs_$databasename/modules/sendmail/batch/config";
mkdir($cheminCustomMaarchCourrierModulesSendmailBatchConfig, 0755);
$cheminCustomMaarchCourrierModulesSendmailBatchScripts = realpath('.')."/custom/cs_$databasename/modules/sendmail/batch/scripts";
mkdir($cheminCustomMaarchCourrierModulesSendmailBatchScripts, 0755);

Alex ORLUC
committed
/** Création répertoire LDAP dans le custom **/
$cheminCustomMaarchCourrierModulesLdap = realpath('.')."/custom/cs_$databasename/modules/ldap";
mkdir($cheminCustomMaarchCourrierModulesLdap, 0755);
$cheminCustomMaarchCourrierModulesLdapXml = realpath('.')."/custom/cs_$databasename/modules/ldap/xml";
mkdir($cheminCustomMaarchCourrierModulesLdapXml, 0755);
$cheminCustomMaarchCourrierModulesLdapScript = realpath('.')."/custom/cs_$databasename/modules/ldap/script";
mkdir($cheminCustomMaarchCourrierModulesLdapScript, 0755);

Alex ORLUC
committed
/** Création répertoire fulltext dans le custom **/
$cheminCustomMaarchCourrierModulesFullText = realpath('.')."/custom/cs_$databasename/modules/full_text";
mkdir($cheminCustomMaarchCourrierModulesFullText, 0755);
$cheminCustomMaarchCourrierModulesFullTextXml = realpath('.')."/custom/cs_$databasename/modules/full_text/xml";
mkdir($cheminCustomMaarchCourrierModulesFullTextXml, 0755);
$cheminCustomMaarchCourrierModulesFullTextScripts = realpath('.')."/custom/cs_$databasename/modules/full_text/scripts";
mkdir($cheminCustomMaarchCourrierModulesFullTextScripts, 0755);
}
if (is_dir(realpath('.')."/custom/cs_$databasename/modules/")) {

Alex ORLUC
committed
/* Création répertoire thumbnails dans le custom **/

Alex ORLUC
committed
if (!is_dir(realpath('.')."/custom/cs_$databasename/modules/thumbnails/")) {
$cheminCustomMaarchCourrierModulesThumbnails = realpath('.')."/custom/cs_$databasename/modules/thumbnails";
mkdir($cheminCustomMaarchCourrierModulesThumbnails, 0755);
}
if (!is_dir(realpath('.')."/custom/cs_$databasename/modules/thumbnails/xml/")) {
$cheminCustomMaarchCourrierModulesThumbnailsXml = realpath('.')."/custom/cs_$databasename/modules/thumbnails/xml";
mkdir($cheminCustomMaarchCourrierModulesThumbnailsXml, 0755);
}
if (!is_dir(realpath('.')."/custom/cs_$databasename/modules/thumbnails/scripts/")) {
$cheminCustomMaarchCourrierModulesThumbnailsScripts = realpath('.')."/custom/cs_$databasename/modules/thumbnails/scripts";
mkdir($cheminCustomMaarchCourrierModulesThumbnailsScripts, 0755);
}

Alex ORLUC
committed
/* Création répertoire thumbnails dans le custom **/
if (!is_dir(realpath('.')."/custom/cs_$databasename/modules/notifications/")) {
$cheminCustomMaarchCourrierModulesNotifications = realpath('.')."/custom/cs_$databasename/modules/notifications/";
mkdir($cheminCustomMaarchCourrierModulesNotifications, 0755);
}
if (!is_dir(realpath('.')."/custom/cs_$databasename/modules/notifications/batch/")) {
$cheminCustomMaarchCourrierModulesNotificationsBatch = realpath('.')."/custom/cs_$databasename/modules/notifications/batch";
mkdir($cheminCustomMaarchCourrierModulesNotificationsBatch, 0755);
}
if (!is_dir(realpath('.')."/custom/cs_$databasename/modules/notifications/batch/config/")) {
$cheminCustomMaarchCourrierModulesNotificationsConfig = realpath('.')."/custom/cs_$databasename/modules/notifications/batch/config";
mkdir($cheminCustomMaarchCourrierModulesNotificationsConfig, 0755);
}
if (!is_dir(realpath('.')."/custom/cs_$databasename/modules/notifications/batch/scripts/")) {
$cheminCustomMaarchCourrierModulesNotificationsScripts = realpath('.')."/custom/cs_$databasename/modules/notifications/batch/scripts";
mkdir($cheminCustomMaarchCourrierModulesNotificationsScripts, 0755);
}

Alex ORLUC
committed
/* Création répertoire thumbnails dans le custom **/
if (!is_dir(realpath('.')."/custom/cs_$databasename/modules/sendmail/")) {
$cheminCustomMaarchCourrierModulesSendmail = realpath('.')."/custom/cs_$databasename/modules/sendmail";
mkdir($cheminCustomMaarchCourrierModulesSendmail, 0755);
}
if (!is_dir(realpath('.')."/custom/cs_$databasename/modules/sendmail/batch/")) {
$cheminCustomMaarchCourrierModulesSendmailBatch = realpath('.')."/custom/cs_$databasename/modules/sendmail/batch";
mkdir($cheminCustomMaarchCourrierModulesSendmailBatch, 0755);
}
if (!is_dir(realpath('.')."/custom/cs_$databasename/modules/sendmail/batch/config/")) {
$cheminCustomMaarchCourrierModulesSendmailBatchConfig = realpath('.')."/custom/cs_$databasename/modules/sendmail/batch/config";
mkdir($cheminCustomMaarchCourrierModulesSendmailBatchConfig, 0755);
}
if (!is_dir(realpath('.')."/custom/cs_$databasename/modules/sendmail/batch/scripts/")) {
$cheminCustomMaarchCourrierModulesSendmailBatchScripts = realpath('.')."/custom/cs_$databasename/modules/sendmail/batch/scripts";
mkdir($cheminCustomMaarchCourrierModulesSendmailBatchScripts, 0755);
if (!is_dir(realpath('.')."/custom/cs_$databasename/modules/ldap/")) {
$cheminCustomMaarchCourrierModulesLdap = realpath('.')."/custom/cs_$databasename/modules/ldap";
mkdir($cheminCustomMaarchCourrierModulesLdap, 0755);
}
if (!is_dir(realpath('.')."/custom/cs_$databasename/modules/ldap/xml/")) {
$cheminCustomMaarchCourrierModulesLdapXml = realpath('.')."/custom/cs_$databasename/modules/ldap/xml";
mkdir($cheminCustomMaarchCourrierModulesLdapXml, 0755);
}
if (!is_dir(realpath('.')."/custom/cs_$databasename/modules/ldap/script/")) {
$cheminCustomMaarchCourrierModulesLdapScript = realpath('.')."/custom/cs_$databasename/modules/ldap/script";
mkdir($cheminCustomMaarchCourrierModulesLdapScript, 0755);
if (!is_dir(realpath('.')."/custom/cs_$databasename/modules/full_text/")) {
$cheminCustomMaarchCourrierModulesFullText = realpath('.')."/custom/cs_$databasename/modules/full_text";
mkdir($cheminCustomMaarchCourrierModulesFullText, 0755);
}
if (!is_dir(realpath('.')."/custom/cs_$databasename/modules/full_text/xml")) {
$cheminCustomMaarchCourrierModulesFullTextXml = realpath('.')."/custom/cs_$databasename/modules/full_text/xml";
mkdir($cheminCustomMaarchCourrierModulesFullTextXml, 0755);
}
if (!is_dir(realpath('.')."/custom/cs_$databasename/modules/full_text/scripts")) {
$cheminCustomMaarchCourrierModulesFullTextScripts = realpath('.')."/custom/cs_$databasename/modules/full_text/scripts";
mkdir($cheminCustomMaarchCourrierModulesFullTextScripts, 0755);
}
//Création du lien symbolique sous linux
if (strtoupper(substr(PHP_OS, 0, 3)) === 'LIN') {

Alex ORLUC
committed
$cmd = 'ln -s '.realpath('.')."/ cs_$databasename";
exec($cmd);
}/*elseif(strtoupper(substr(PHP_OS, 0, 3)) === 'WIN'){
$cmd = "mklink cs_$databasename ".realpath('.');
var_dump($cmd);
var_dump(exec($cmd));
exit;
exec($cmd);
if (strtoupper(substr(PHP_OS, 0, 3)) === 'LIN') {

Alex ORLUC
committed
$needle = '/';
} elseif (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {

Alex ORLUC
committed
$needle = '\\';

Alex ORLUC
committed
$pos = strripos($chemin, $needle);
if ($pos === false) {
//echo "Désolé, impossible de trouver ($needle) dans ($chemin)";
} else {
// echo "Félicitations !\n";
// echo "Nous avons trouvé le dernier ($needle) dans ($chemin) à la position ($pos)";
}

Alex ORLUC
committed
$rest = substr($chemin, $pos + 1); // contient le nom de l'appli (le nom du dossier où se situe l'appli)
// var_dump($rest);
// $cheminCustom = realpath('.')."/custom";
// // var_dump($cheminCustom);
// mkdir($cheminCustom, 0755);
$filename = realpath('.').'/custom/custom.xml';
//var_dump(file_exists($filename));
if (file_exists($filename)) {
//var_dump('dans if');

Alex ORLUC
committed
$xmlCustom = simplexml_load_file(realpath('.').'/custom/custom.xml');
//$xmlCustom->addChild('custom');
$custom = $xmlCustom->addChild('custom');
$custom->addChild('custom_id', 'cs_'.$databasename);
$custom->addChild('ip');
$custom->addChild('external_domain');
$custom->addChild('domain');
if (strtoupper(substr(PHP_OS, 0, 3)) === 'LIN') {

Alex ORLUC
committed
$custom->addChild('path', 'cs_'.$databasename);
} elseif (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
$custom->addChild('path', $rest);
}

Alex ORLUC
committed
$fp = @fopen(realpath('.').'/custom/custom.xml', 'w+');
if (!$fp) {
return false;
exit;
}
$write = fwrite($fp, $res);
if (!$write) {
return false;
exit;
}
if (!file_exists($filename)) {

Alex ORLUC
committed
$manip2 = fopen(realpath('.').'/custom/custom.xml', 'w+');
$contenuXmlCustom = "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n";
$contenuXmlCustom .= "<root>\n";
$contenuXmlCustom .= "\t<custom>\n";
$contenuXmlCustom .= "\t\t<custom_id>cs_".$databasename."</custom_id>\n";
$contenuXmlCustom .= "\t\t<ip></ip>\n";
$contenuXmlCustom .= "\t\t<external_domain></external_domain>\n";
$contenuXmlCustom .= "\t\t<domain></domain>\n";
if (strtoupper(substr(PHP_OS, 0, 3)) === 'LIN') {
$contenuXmlCustom .= "\t\t<path>cs_".$databasename."</path>\n";
} elseif (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
$contenuXmlCustom .= "\t\t<path>$rest</path>\n";
}
$contenuXmlCustom .= "\t</custom>\n";

Alex ORLUC
committed
$contenuXmlCustom .= '</root>';
fputs($manip2, $contenuXmlCustom);
fclose($manip2);
}
$cheminCustomMaarchCourrier = realpath('.')."/custom/cs_$databasename";

Alex ORLUC
committed
if (!@mkdir($cheminCustomMaarchCourrier, 0755)) {
return false;
}
/**
Création répertoire apps/maarch_entreprise dans le custom

Alex ORLUC
committed
*/
$cheminCustomMaarchCourrierApps = realpath('.')."/custom/cs_$databasename/apps";
mkdir($cheminCustomMaarchCourrierApps, 0755);
$cheminCustomMaarchCourrierAppsMaarchEntreprise = realpath('.')."/custom/cs_$databasename/apps/maarch_entreprise";
mkdir($cheminCustomMaarchCourrierAppsMaarchEntreprise, 0755);
$cheminCustomMaarchCourrierAppsMaarchEntrepriseXml = realpath('.')."/custom/cs_$databasename/apps/maarch_entreprise/xml";
mkdir($cheminCustomMaarchCourrierAppsMaarchEntrepriseXml, 0755);
/**
Création répertoire modules dans le custom

Alex ORLUC
committed
*/
$cheminCustomMaarchCourrierModules = realpath('.')."/custom/cs_$databasename/modules";
mkdir($cheminCustomMaarchCourrierModules, 0755);
/** Création répertoire thumbnails dans le custom **/
$cheminCustomMaarchCourrierModulesThumbnails = realpath('.')."/custom/cs_$databasename/modules/thumbnails";
mkdir($cheminCustomMaarchCourrierModulesThumbnails, 0755);
$cheminCustomMaarchCourrierModulesThumbnailsXml = realpath('.')."/custom/cs_$databasename/modules/thumbnails/xml";
mkdir($cheminCustomMaarchCourrierModulesThumbnailsXml, 0755);
$cheminCustomMaarchCourrierModulesThumbnailsScripts = realpath('.')."/custom/cs_$databasename/modules/thumbnails/scripts";
mkdir($cheminCustomMaarchCourrierModulesThumbnailsScripts, 0755);

Alex ORLUC
committed
/** Création répertoire notification dans le custom **/
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
$cheminCustomMaarchCourrierModulesNotifications = realpath('.')."/custom/cs_$databasename/modules/notifications";
mkdir($cheminCustomMaarchCourrierModulesNotifications, 0755);
$cheminCustomMaarchCourrierModulesNotificationsBatch = realpath('.')."/custom/cs_$databasename/modules/notifications/batch";
mkdir($cheminCustomMaarchCourrierModulesNotificationsBatch, 0755);
$cheminCustomMaarchCourrierModulesNotificationsConfig = realpath('.')."/custom/cs_$databasename/modules/notifications/batch/config";
mkdir($cheminCustomMaarchCourrierModulesNotificationsConfig, 0755);
$cheminCustomMaarchCourrierModulesNotificationsScripts = realpath('.')."/custom/cs_$databasename/modules/notifications/batch/scripts";
mkdir($cheminCustomMaarchCourrierModulesNotificationsScripts, 0755);
/** Création répertoire sendmail dans le custom **/
$cheminCustomMaarchCourrierModulesSendmail = realpath('.')."/custom/cs_$databasename/modules/sendmail";
mkdir($cheminCustomMaarchCourrierModulesSendmail, 0755);
$cheminCustomMaarchCourrierModulesSendmailBatch = realpath('.')."/custom/cs_$databasename/modules/sendmail/batch";
mkdir($cheminCustomMaarchCourrierModulesSendmailBatch, 0755);
$cheminCustomMaarchCourrierModulesSendmailBatchConfig = realpath('.')."/custom/cs_$databasename/modules/sendmail/batch/config";
mkdir($cheminCustomMaarchCourrierModulesSendmailBatchConfig, 0755);
$cheminCustomMaarchCourrierModulesSendmailBatchScripts = realpath('.')."/custom/cs_$databasename/modules/sendmail/batch/scripts";
mkdir($cheminCustomMaarchCourrierModulesSendmailBatchScripts, 0755);
/** Création répertoire LDAP dans le custom **/
$cheminCustomMaarchCourrierModulesLdap = realpath('.')."/custom/cs_$databasename/modules/ldap";
mkdir($cheminCustomMaarchCourrierModulesLdap, 0755);
$cheminCustomMaarchCourrierModulesLdapXml = realpath('.')."/custom/cs_$databasename/modules/ldap/xml";
mkdir($cheminCustomMaarchCourrierModulesLdapXml, 0755);
$cheminCustomMaarchCourrierModulesLdapScript = realpath('.')."/custom/cs_$databasename/modules/ldap/script";
mkdir($cheminCustomMaarchCourrierModulesLdapScript, 0755);
/** Création répertoire fulltext dans le custom **/
$cheminCustomMaarchCourrierModulesFullText = realpath('.')."/custom/cs_$databasename/modules/full_text";
mkdir($cheminCustomMaarchCourrierModulesFullText, 0755);
$cheminCustomMaarchCourrierModulesFullTextXml = realpath('.')."/custom/cs_$databasename/modules/full_text/xml";
mkdir($cheminCustomMaarchCourrierModulesFullTextXml, 0755);
$cheminCustomMaarchCourrierModulesFullTextScripts = realpath('.')."/custom/cs_$databasename/modules/full_text/scripts";
mkdir($cheminCustomMaarchCourrierModulesFullTextScripts, 0755);
// exit;

Alex ORLUC
committed
//Création du lien symbolique sous linux
if (strtoupper(substr(PHP_OS, 0, 3)) === 'LIN') {

Alex ORLUC
committed
$cmd = 'ln -s '.realpath('.')."/ cs_$databasename";
exec($cmd);
}/*elseif(strtoupper(substr(PHP_OS, 0, 3)) === 'WIN'){
$cmd = "mklink cs_$databasename ".realpath('.');
var_dump($cmd);
var_dump(exec($cmd));
exit;
}*/
// Création du lien symbolique sous windows mais il faut être en administrateur pour lancer la commande : mklink nomDuCustom cheminDeLAPPLI
return true;
}
public function updateDocserverForXml($docserverPath)
{

Alex ORLUC
committed
$xmlconfig = simplexml_load_file(realpath('.').'/custom/cs_'.$_SESSION['config']['databasename'].'/apps/maarch_entreprise/xml/config.xml');
//$xmlconfig = 'apps/maarch_entreprise/xml/config.xml.default';
$COLLECTION_1 = $xmlconfig->COLLECTION[0];
$COLLECTION_1->path_to_lucene_index = $docserverPath.'/indexes/letterbox_coll/';
$COLLECTION_2 = $xmlconfig->COLLECTION[1];
$COLLECTION_2->path_to_lucene_index = $docserverPath.'/indexes/attachments_coll/';
$COLLECTION_3 = $xmlconfig->COLLECTION[2];
$COLLECTION_3->path_to_lucene_index = $docserverPath.'/indexes/version_attachments_coll/';

Alex ORLUC
committed
$res = $xmlconfig->asXML();
// $fp = @fopen("apps/maarch_entreprise/xml/config.xml", "w+");

Alex ORLUC
committed
$fp = @fopen(realpath('.').'/custom/cs_'.$_SESSION['config']['databasename'].'/apps/maarch_entreprise/xml/config.xml', 'w+');
if (!$fp) {
return false;
exit;
}
$write = fwrite($fp, $res);
if (!$write) {
return false;
exit;
}
//configuration du chemin dans config_batch_letterbox.xml

Alex ORLUC
committed
$xmlconfig2 = simplexml_load_file(realpath('.').'/custom/cs_'.$_SESSION['config']['databasename'].'/modules/full_text/xml/config_batch_letterbox.xml');
//$xmlconfig = 'apps/maarch_entreprise/xml/config.xml.default';
$CONFIG = $xmlconfig2->CONFIG;
$CONFIG->INDEX_FILE_DIRECTORY = $docserverPath.'/indexes/letterbox_coll/';

Alex ORLUC
committed
$res = $xmlconfig2->asXML();
// $fp = @fopen("apps/maarch_entreprise/xml/config.xml", "w+");

Alex ORLUC
committed
$fp = @fopen(realpath('.').'/custom/cs_'.$_SESSION['config']['databasename'].'/modules/full_text/xml/config_batch_letterbox.xml', 'w+');
if (!$fp) {
return false;
exit;
}
$write = fwrite($fp, $res);
if (!$write) {
return false;
exit;
}
//configuration du chemin dans config_batch_attachments.xml

Alex ORLUC
committed
$xmlconfig3 = simplexml_load_file(realpath('.').'/custom/cs_'.$_SESSION['config']['databasename'].'/modules/full_text/xml/config_batch_attachments.xml');
//$xmlconfig = 'apps/maarch_entreprise/xml/config.xml.default';
$CONFIG = $xmlconfig3->CONFIG;
$CONFIG->INDEX_FILE_DIRECTORY = $docserverPath.'/indexes/attachments_coll/';

Alex ORLUC
committed
$res = $xmlconfig3->asXML();
// $fp = @fopen("apps/maarch_entreprise/xml/config.xml", "w+");

Alex ORLUC
committed
$fp = @fopen(realpath('.').'/custom/cs_'.$_SESSION['config']['databasename'].'/modules/full_text/xml/config_batch_attachments.xml', 'w+');
if (!$fp) {
return false;
exit;
}
$write = fwrite($fp, $res);
if (!$write) {
return false;
exit;
}
//configuration du chemin dans config_batch_version_attachments.xml

Alex ORLUC
committed
$xmlconfig4 = simplexml_load_file(realpath('.').'/custom/cs_'.$_SESSION['config']['databasename'].'/modules/full_text/xml/config_batch_version_attachments.xml');
//$xmlconfig = 'apps/maarch_entreprise/xml/config.xml.default';
$CONFIG = $xmlconfig4->CONFIG;
$CONFIG->INDEX_FILE_DIRECTORY = $docserverPath.'/indexes/version_attachments_coll/';

Alex ORLUC
committed
$res = $xmlconfig4->asXML();
// $fp = @fopen("apps/maarch_entreprise/xml/config.xml", "w+");

Alex ORLUC
committed
$fp = @fopen(realpath('.').'/custom/cs_'.$_SESSION['config']['databasename'].'/modules/full_text/xml/config_batch_version_attachments.xml', 'w+');
if (!$fp) {
return false;
exit;
}
$write = fwrite($fp, $res);
if (!$write) {
return false;
exit;
}
public function verificationDatabase($databasename)
{

Alex ORLUC
committed
$connect = 'host='.$_SESSION['config']['databaseserver'].' ';
$connect .= 'port='.$_SESSION['config']['databaseserverport'].' ';
$connect .= 'user='.$_SESSION['config']['databaseuser'].' ';
$connect .= 'password='.$_SESSION['config']['databasepassword'].' ';
$connect .= 'dbname=postgres';
//var_dump($connect);
if (!@pg_connect($connect)) {
return false;
exit;

Alex ORLUC
committed
$sqlCreateDatabase = "select datname from pg_database where datname = '".$databasename."'";
$result = @pg_query($sqlCreateDatabase);
if (!$result) {
echo "Une erreur s'est produite.\n";
exit;
}
while ($row = pg_fetch_row($result)) {
//echo "datname: $row[0] ";

Alex ORLUC
committed
if ($row[0]) {
return false;
}

Alex ORLUC
committed
//var_dump($execute);

Alex ORLUC
committed
public function verifCustom($databasename)
{
$customAlreadyExist = realpath('.').'/custom/cs_'.$databasename;
if (file_exists($customAlreadyExist)) {
public function fillConfigOfAppAndModule($databasename)
{
$_SESSION['config']['databasename'] = $databasename;

Alex ORLUC
committed
$connect = 'host='.$_SESSION['config']['databaseserver'].' ';
$connect .= 'port='.$_SESSION['config']['databaseserverport'].' ';
$connect .= 'user='.$_SESSION['config']['databaseuser'].' ';
$connect .= 'password='.$_SESSION['config']['databasepassword'].' ';
$connect .= 'dbname=postgres';
if (!$this->setConfigXmlThumbnails()) {
return false;
exit;
}
if (!$this->setConfig_batch_XmlThumbnails()) {
return false;
exit;
if (!$this->setConfigScriptLaunchThumbnails()) {
return false;
exit;
}
if (!$this->setConfig_sendmail()) {
return false;
exit;
}
if (!$this->setConfigXml()) {
return false;
exit;
}
// if (!$this->setConfigXmlVisa()) {
// return false;
// exit;
// }
if (!$this->setScriptNotificationSendmailSh()) {
return false;
exit;
}
if (!$this->setScriptNotificationNctNccAndAncSh()) {
return false;
exit;
}
if (!$this->setScriptSendmailSendmailSh()) {
return false;
exit;
}
if (!$this->setConfig_LDAP()) {
return false;
exit;
}
if (!$this->setScript_syn_LDAP_sh()) {
return false;
exit;
}
if (!$this->setConfig_fulltext()) {
return false;
exit;
}
if (!$this->setScript_full_text()) {
return false;
exit;
}

Alex ORLUC
committed
if (!$this->setConfig_batch_XmlNotifications()) {
return false;
exit;
}
if (!$this->setConfig_batch_XmlSendmail()) {
return false;
exit;
}
if (!$this->setLog4php()) {
return false;
exit;
}
if (!$this->setConfigCron()) {
return false;
exit;
}
if (!$this->setRight()) {
return false;
exit;
}
return true;
}

Alex ORLUC
committed
$connect = 'host='.$_SESSION['config']['databaseserver'].' ';
$connect .= 'port='.$_SESSION['config']['databaseserverport'].' ';
$connect .= 'user='.$_SESSION['config']['databaseuser'].' ';
$connect .= 'password='.$_SESSION['config']['databasepassword'].' ';
$connect .= 'dbname=postgres';

Alex ORLUC
committed
$sqlCreateDatabase = 'CREATE DATABASE "'.$databasename.'"';
$sqlCreateDatabase .= ' WITH TEMPLATE template0';
$sqlCreateDatabase .= " ENCODING = 'UTF8'";
$execute = pg_query($sqlCreateDatabase);

Alex ORLUC
committed
@pg_query('ALTER DATABASE "'.$databasename.'" SET DateStyle =iso, dmy');

Alex ORLUC
committed

Alex ORLUC
committed

Alex ORLUC
committed
if (!$this->executeSQLScript('sql/structure.sql')) {
if (!$this->setConfigXmlThumbnails()) {
return false;
exit;
}
if (!$this->setConfig_batch_XmlThumbnails()) {
return false;
exit;
if (!$this->setConfigScriptLaunchThumbnails()) {
return false;
exit;
}
if (!$this->setConfig_sendmail()) {
return false;
exit;
}
if (!$this->setConfigXml()) {
// if (!$this->setConfigXmlVisa()) {
// return false;
// exit;
// }
if (!$this->setScriptNotificationSendmailSh()) {
return false;
exit;
}
if (!$this->setScriptNotificationNctNccAndAncSh()) {
return false;
exit;
}
if (!$this->setScriptSendmailSendmailSh()) {
return false;
exit;
}
if (!$this->setConfig_LDAP()) {
return false;
exit;
}
if (!$this->setScript_syn_LDAP_sh()) {
return false;
exit;
}
if (!$this->setConfig_fulltext()) {
return false;
exit;
}
if (!$this->setScript_full_text()) {
return false;
exit;
}

Alex ORLUC
committed
if (!$this->setConfig_batch_XmlNotifications()) {
return false;
exit;
}
if (!$this->setConfig_batch_XmlSendmail()) {
return false;
exit;
}
if (!$this->setLog4php()) {
return false;
exit;
}
if (!$this->setConfigCron()) {
return false;
exit;
}

Alex ORLUC
committed
if (!$this->setRight()) {
return false;
exit;
}