forked from ZwiiCMS-Team/ZwiiCMS
Merge branch '10600' into 11000
This commit is contained in:
commit
108e285704
@ -177,13 +177,10 @@ class helper {
|
|||||||
$delete = true;
|
$delete = true;
|
||||||
}
|
}
|
||||||
// Constante DATADIRECTORY
|
// Constante DATADIRECTORY
|
||||||
if ( array_key_exists('DATADIRECTORY', $class_constants)
|
if ( array_key_exists('DATADIRECTORY', $class_constants)) {
|
||||||
&& $class_constants['DATADIRECTORY'] !== []
|
|
||||||
&& is_array($class_constants['DATADIRECTORY'])
|
|
||||||
) {
|
|
||||||
$dataDirectory = $value::DATADIRECTORY;
|
$dataDirectory = $value::DATADIRECTORY;
|
||||||
} else {
|
} else {
|
||||||
$dataDirectory = [];
|
$dataDirectory = '';
|
||||||
}
|
}
|
||||||
// Affection
|
// Affection
|
||||||
$modules [$value] = [
|
$modules [$value] = [
|
||||||
|
@ -62,19 +62,13 @@ class addon extends common {
|
|||||||
$infoModules = helper::getModules();
|
$infoModules = helper::getModules();
|
||||||
$module = $this->getUrl(2);
|
$module = $this->getUrl(2);
|
||||||
//Liste des dossiers associés au module non effacés
|
//Liste des dossiers associés au module non effacés
|
||||||
$list = '';
|
if( $this->removeDir('./module/'.$module ) === true ){
|
||||||
foreach( $infoModules[$module]['dataDirectory'] as $moduleId){
|
|
||||||
if (strpos($moduleId,'module.json') === false && strpos($moduleId,'page.json') === false) {
|
|
||||||
$list === '' ? $list = self::DATA_DIR.$moduleId : $list .= ', '.self::DATA_DIR. $moduleId;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if( $this->removeDir('./module/'.$module ) === true){
|
|
||||||
$success = true;
|
$success = true;
|
||||||
if( $list === ''){
|
$notification = 'Module '. $module .' désinstallé';
|
||||||
$notification = 'Module '.$module .' désinstallé';
|
if(($infoModules[$this->getUrl(2)]['dataDirectory']) ) {
|
||||||
}
|
if (!$this->removeDir($infoModules[$this->getUrl(2)]['dataDirectory'])){
|
||||||
else{
|
$notification = 'Module '.$module .' désinstallé, il reste des données dans ' . $infoModules[$this->getUrl(2)]['dataDirectory'];
|
||||||
$notification = 'Module '.$module .' désinstallé, il reste des données dans '.$list;
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
@ -386,15 +380,16 @@ class addon extends common {
|
|||||||
'value' => template::ico('cancel')
|
'value' => template::ico('cancel')
|
||||||
])
|
])
|
||||||
: '',
|
: '',
|
||||||
is_array($infoModules[$key]['dataDirectory']) && implode(', ',array_keys($inPages,$key)) !== ''
|
implode(', ',array_keys($inPages,$key)) !== ''
|
||||||
? template::button('moduleExport' . $key, [
|
? template::button('moduleExport' . $key, [
|
||||||
'href' => helper::baseUrl(). $this->getUrl(0) . '/export/' . $key,// appel de fonction vaut exécution, utiliser un paramètre
|
'href' => helper::baseUrl(). $this->getUrl(0) . '/export/' . $key . '/' . $_SESSION['csrf'],// appel de fonction vaut exécution, utiliser un paramètre
|
||||||
'value' => template::ico('download')
|
'value' => template::ico('download')
|
||||||
])
|
])
|
||||||
: '',
|
: '',
|
||||||
is_array($infoModules[$key]['dataDirectory']) && implode(', ',array_keys($inPages,$key)) === ''
|
'',
|
||||||
|
implode(', ',array_keys($inPages,$key)) === ''
|
||||||
? template::button('moduleExport' . $key, [
|
? template::button('moduleExport' . $key, [
|
||||||
'href' => helper::baseUrl(). $this->getUrl(0) . '/import/' . $key.'/' . $_SESSION['csrf'],// appel de fonction vaut exécution, utiliser un paramètre
|
'href' => helper::baseUrl(). $this->getUrl(0) . '/import/' . $key . '/' . $_SESSION['csrf'],// appel de fonction vaut exécution, utiliser un paramètre
|
||||||
'value' => template::ico('upload')
|
'value' => template::ico('upload')
|
||||||
])
|
])
|
||||||
: ''
|
: ''
|
||||||
@ -408,107 +403,95 @@ class addon extends common {
|
|||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* Copie récursive de dossiers
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
private function custom_copy($src, $dst) {
|
|
||||||
// open the source directory
|
|
||||||
$dir = opendir($src);
|
|
||||||
// Make the destination directory if not exist
|
|
||||||
if (!is_dir($dst)) {
|
|
||||||
mkdir($dst);
|
|
||||||
}
|
|
||||||
// Loop through the files in source directory
|
|
||||||
while( $file = readdir($dir) ) {
|
|
||||||
if (( $file != '.' ) && ( $file != '..' )) {
|
|
||||||
if ( is_dir($src . '/' . $file) ){
|
|
||||||
// Recursively calling custom copy function
|
|
||||||
// for sub directory
|
|
||||||
$this -> custom_copy($src . '/' . $file, $dst . '/' . $file);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
copy($src . '/' . $file, $dst . '/' . $file);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
closedir($dir);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Export des données d'un module externes ou interne à module.json
|
* Export des données d'un module externes ou interne à module.json
|
||||||
*/
|
*/
|
||||||
public function export(){
|
public function export(){
|
||||||
// Lire les données du module
|
// Jeton incorrect
|
||||||
$infoModules = helper::getModules();
|
if ($this->getUrl(3) !== $_SESSION['csrf']) {
|
||||||
// Créer un dossier par défaut
|
// Valeurs en sortie
|
||||||
$tmpFolder = self::TEMP_DIR . uniqid();
|
$this->addOutput([
|
||||||
//$tmpFolder = self::TEMP_DIR . 'test';
|
'redirect' => helper::baseUrl() . 'addon',
|
||||||
if (!is_dir($tmpFolder)) {
|
'state' => false,
|
||||||
mkdir($tmpFolder);
|
'notification' => 'Action non autorisée'
|
||||||
|
]);
|
||||||
}
|
}
|
||||||
// Clés moduleIds dans les pages
|
else {
|
||||||
$inPages = helper::arrayCollumn($this->getData(['page']),'moduleId', 'SORT_DESC');
|
// Lire les données du module
|
||||||
// Parcourir les pages utilisant le module
|
$infoModules = helper::getModules();
|
||||||
foreach (array_keys($inPages,$this->getUrl(2)) as $pageId) {
|
// Créer un dossier par défaut
|
||||||
// Export des pages hébergeant le module
|
$tmpFolder = self::TEMP_DIR . uniqid();
|
||||||
$pageContent[$pageId] = $this->getData(['page',$pageId]);
|
//$tmpFolder = self::TEMP_DIR . 'test';
|
||||||
// Export de fr/module.json
|
if (!is_dir($tmpFolder)) {
|
||||||
$moduleId = 'fr/module.json';
|
mkdir($tmpFolder);
|
||||||
// Création de l'arborescence des langues
|
|
||||||
// Pas de nom dossier de langue - dossier par défaut
|
|
||||||
$t = explode ('/',$moduleId);
|
|
||||||
if ( is_array($t)) {
|
|
||||||
$lang = 'fr';
|
|
||||||
} else {
|
|
||||||
$lang = $t[0];
|
|
||||||
}
|
}
|
||||||
// Créer le dossier si inexistant
|
// Clés moduleIds dans les pages
|
||||||
if (!is_dir($tmpFolder . '/' . $lang)) {
|
$inPages = helper::arrayCollumn($this->getData(['page']),'moduleId', 'SORT_DESC');
|
||||||
mkdir ($tmpFolder . '/' . $lang);
|
// Parcourir les pages utilisant le module
|
||||||
}
|
foreach (array_keys($inPages,$this->getUrl(2)) as $pageId) {
|
||||||
// Sauvegarde si données non vides
|
// Export des pages hébergeant le module
|
||||||
$tmpData [$pageId] = $this->getData(['module',$pageId ]);
|
$pageContent[$pageId] = $this->getData(['page',$pageId]);
|
||||||
if ($tmpData [$pageId] !== null) {
|
// Export de fr/module.json
|
||||||
file_put_contents($tmpFolder . '/' . $moduleId, json_encode($tmpData));
|
$moduleId = 'fr/module.json';
|
||||||
}
|
$moduleDir = str_replace('site/data/','',$infoModules[$this->getUrl(2)]['dataDirectory']);
|
||||||
// Export des données localisées dans des dossiers
|
// Création de l'arborescence des langues
|
||||||
foreach ($infoModules[$this->getUrl(2)]['dataDirectory'] as $dirId) {
|
// Pas de nom dossier de langue - dossier par défaut
|
||||||
if ( file_exists(self::DATA_DIR . '/' . $dirId)
|
$t = explode ('/',$moduleId);
|
||||||
&& !file_exists($tmpFolder . '/' . $dirId ) ) {
|
if ( is_array($t)) {
|
||||||
$this->custom_copy ( self::DATA_DIR . '/' . $dirId, $tmpFolder . '/' . $dirId );
|
$lang = 'fr';
|
||||||
|
} else {
|
||||||
|
$lang = $t[0];
|
||||||
|
}
|
||||||
|
// Créer le dossier temporaire si inexistant sinon le nettoie et le créer
|
||||||
|
if (!is_dir($tmpFolder . '/' . $lang)) {
|
||||||
|
mkdir ($tmpFolder . '/' . $lang, 0777, true);
|
||||||
|
} else {
|
||||||
|
$this->removeDir($tmpFolder . '/' . $lang);
|
||||||
|
mkdir ($tmpFolder . '/' . $lang, 0777, true);
|
||||||
|
}
|
||||||
|
// Créer le dossier temporaire des données du module
|
||||||
|
if ($infoModules[$this->getUrl(2)]['dataDirectory']) {
|
||||||
|
if (!is_dir($tmpFolder . '/' . $moduleDir)) {
|
||||||
|
mkdir ($tmpFolder . '/' . $moduleDir, 0777, true) ;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
// Sauvegarde si données non vides
|
||||||
|
$tmpData [$pageId] = $this->getData(['module',$pageId ]);
|
||||||
|
if ($tmpData [$pageId] !== null) {
|
||||||
|
file_put_contents($tmpFolder . '/' . $moduleId, json_encode($tmpData));
|
||||||
|
}
|
||||||
|
// Export des données localisées dans le dossier de données du module
|
||||||
|
if ($infoModules[$this->getUrl(2)]['dataDirectory'] ) {
|
||||||
|
$this->custom_copy ($infoModules[$this->getUrl(2)]['dataDirectory'], $tmpFolder . '/' . $moduleDir);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Enregistrement des pages dans le dossier de langue identique à module
|
||||||
|
if (!file_exists($tmpFolder . '/' . $lang . '/page.json')) {
|
||||||
|
file_put_contents($tmpFolder . '/' . $lang . '/page.json', json_encode($pageContent));
|
||||||
|
}
|
||||||
|
// création du zip
|
||||||
|
$fileName = $this->getUrl(2) . '.zip';
|
||||||
|
$this->makeZip ($fileName, $tmpFolder, []);
|
||||||
|
if (file_exists($fileName)) {
|
||||||
|
header('Content-Type: application/octet-stream');
|
||||||
|
header('Content-Disposition: attachment; filename="' . $fileName . '"');
|
||||||
|
header('Content-Length: ' . filesize($fileName));
|
||||||
|
readfile( $fileName);
|
||||||
|
// Valeurs en sortie
|
||||||
|
$this->addOutput([
|
||||||
|
'display' => self::DISPLAY_RAW
|
||||||
|
]);
|
||||||
|
unlink($fileName);
|
||||||
|
$this->removeDir($tmpFolder);
|
||||||
|
exit();
|
||||||
|
} else {
|
||||||
|
// Valeurs en sortie
|
||||||
|
$this->addOutput([
|
||||||
|
'redirect' => helper::baseUrl() . 'addon',
|
||||||
|
'notification' => 'Quelque chose s\'est mal passé',
|
||||||
|
'state' => false
|
||||||
|
]);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
// Enregistrement des pages dans le dossier de langue identique à module
|
|
||||||
|
|
||||||
if (!file_exists($tmpFolder . '/' . $lang . '/page.json')) {
|
|
||||||
file_put_contents($tmpFolder . '/' . $lang . '/page.json', json_encode($pageContent));
|
|
||||||
}
|
|
||||||
|
|
||||||
// création du zip
|
|
||||||
$fileName = $this->getUrl(2) . '.zip';
|
|
||||||
$this->makeZip ($fileName, $tmpFolder, []);
|
|
||||||
if (file_exists($fileName)) {
|
|
||||||
header('Content-Type: application/octet-stream');
|
|
||||||
header('Content-Disposition: attachment; filename="' . $fileName . '"');
|
|
||||||
header('Content-Length: ' . filesize($fileName));
|
|
||||||
readfile( $fileName);
|
|
||||||
// Valeurs en sortie
|
|
||||||
$this->addOutput([
|
|
||||||
'display' => self::DISPLAY_RAW
|
|
||||||
]);
|
|
||||||
unlink($fileName);
|
|
||||||
$this->removeDir($tmpFolder);
|
|
||||||
exit();
|
|
||||||
} else {
|
|
||||||
// Valeurs en sortie
|
|
||||||
$this->addOutput([
|
|
||||||
'redirect' => helper::baseUrl() . 'addon',
|
|
||||||
'notification' => 'Quelque chose s\'est mal passé',
|
|
||||||
'state' => false
|
|
||||||
]);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -598,4 +581,32 @@ class addon extends common {
|
|||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copie récursive de dossiers
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
private function custom_copy($src, $dst) {
|
||||||
|
// open the source directory
|
||||||
|
$dir = opendir($src);
|
||||||
|
// Make the destination directory if not exist
|
||||||
|
if (!is_dir($dst)) {
|
||||||
|
mkdir($dst);
|
||||||
|
}
|
||||||
|
// Loop through the files in source directory
|
||||||
|
while( $file = readdir($dir) ) {
|
||||||
|
if (( $file != '.' ) && ( $file != '..' )) {
|
||||||
|
if ( is_dir($src . '/' . $file) ){
|
||||||
|
// Recursively calling custom copy function
|
||||||
|
// for sub directory
|
||||||
|
$this -> custom_copy($src . '/' . $file, $dst . '/' . $file);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
copy($src . '/' . $file, $dst . '/' . $file);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
closedir($dir);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user