dataImport WIP
This commit is contained in:
parent
cb3a3d82c5
commit
2d07aa2c4d
@ -572,7 +572,7 @@ class plugin extends common {
|
|||||||
|
|
||||||
// Copie des infos sur le module
|
// Copie des infos sur le module
|
||||||
$modulesData = json_decode(file_get_contents(self::DATA_DIR . $this->getUrl(2) . '/module.json' ), true);
|
$modulesData = json_decode(file_get_contents(self::DATA_DIR . $this->getUrl(2) . '/module.json' ), true);
|
||||||
$moduleData [$this->getUrl(4)] = $modulesData['module'] [$this->getUrl(4)];
|
$moduleData = $modulesData['module'] [$this->getUrl(4)];
|
||||||
$success = file_put_contents ($tmpFolder . '/module.json', json_encode($moduleData));
|
$success = file_put_contents ($tmpFolder . '/module.json', json_encode($moduleData));
|
||||||
|
|
||||||
// Le dossier du module s'il existe
|
// Le dossier du module s'il existe
|
||||||
@ -584,8 +584,8 @@ class plugin extends common {
|
|||||||
// Descripteur de l'archive
|
// Descripteur de l'archive
|
||||||
$success .= file_put_contents ($tmpFolder . '/descripteur.json', json_encode([
|
$success .= file_put_contents ($tmpFolder . '/descripteur.json', json_encode([
|
||||||
'langue' => $this->getUrl(2),
|
'langue' => $this->getUrl(2),
|
||||||
'page' => $this->getUrl(3),
|
'moduleid' => $this->getUrl(3),
|
||||||
'module' => $this->getUrl(4)
|
'pageId' => $this->getUrl(4)
|
||||||
]));
|
]));
|
||||||
|
|
||||||
|
|
||||||
@ -622,8 +622,45 @@ class plugin extends common {
|
|||||||
*/
|
*/
|
||||||
public function dataImport(){
|
public function dataImport(){
|
||||||
|
|
||||||
// Soumission du formulaire
|
// Soumission du formulaire d'importation du module dans une page libre
|
||||||
if($this->isPost()) {
|
if($this->isPost()) {
|
||||||
|
// Récupérer le fichier et le décompacter
|
||||||
|
$zipFilename = $this->getInput('pluginImportFile', helper::FILTER_STRING_SHORT, true);
|
||||||
|
$targetPage = $this->getInput('pluginImportPage', helper::FILTER_STRING_SHORT, true);
|
||||||
|
$tempFolder = uniqid();
|
||||||
|
$success = false;
|
||||||
|
$notification = '';
|
||||||
|
|
||||||
|
// Extraction dans un dossier temporaire
|
||||||
|
mkdir (self::TEMP_DIR . $tempFolder, 0755);
|
||||||
|
$zip = new ZipArchive();
|
||||||
|
if ($zip->open(self::FILE_DIR . 'source/' . $zipFilename) === TRUE) {
|
||||||
|
$zip->extractTo(self::TEMP_DIR . $tempFolder );
|
||||||
|
}
|
||||||
|
|
||||||
|
// Lire le descripteur
|
||||||
|
$descripteur = json_decode(file_get_contents(self::TEMP_DIR . $tempFolder . '/descripteur.json'), true);
|
||||||
|
|
||||||
|
// Intégration des données du module importé
|
||||||
|
$moduleData = json_decode(file_get_contents(self::TEMP_DIR . $tempFolder . '/module.json'), true );
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// Supprimer le dossier temporaire
|
||||||
|
$this->removeDir(self::TEMP_DIR . $tempFolder);
|
||||||
|
$zip->close();
|
||||||
|
// Valeurs en sortie
|
||||||
|
$this->addOutput([
|
||||||
|
'redirect' => helper::baseUrl() . 'plugin',
|
||||||
|
'state' => $success,
|
||||||
|
'notification' => $notification
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
// Bouton d'importation des données d'un module spécifique
|
||||||
|
if (count(explode('/',$this->getUrl())) === 6) {
|
||||||
// Jeton incorrect
|
// Jeton incorrect
|
||||||
if ($this->getUrl(3) !== $_SESSION['csrf']) {
|
if ($this->getUrl(3) !== $_SESSION['csrf']) {
|
||||||
// Valeurs en sortie
|
// Valeurs en sortie
|
||||||
@ -633,82 +670,18 @@ class plugin extends common {
|
|||||||
'notification' => 'Action non autorisée'
|
'notification' => 'Action non autorisée'
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
// Récupérer le fichier et le décompacter
|
|
||||||
$zipFilename = $this->getInput('pluginImportFile', helper::FILTER_STRING_SHORT, true);
|
|
||||||
$targetPage = $this->getInput('pluginImportPage', helper::FILTER_STRING_SHORT, true);
|
|
||||||
$tempFolder = uniqid();
|
|
||||||
mkdir (self::TEMP_DIR . $tempFolder, 0755);
|
|
||||||
$zip = new ZipArchive();
|
|
||||||
if ($zip->open(self::FILE_DIR . 'source/' . $zipFilename) === TRUE) {
|
|
||||||
$zip->extractTo(self::TEMP_DIR . $tempFolder );
|
|
||||||
}
|
|
||||||
|
|
||||||
// copie du contenu de la page
|
// Traitement
|
||||||
$this->copyDir (self::TEMP_DIR . $tempFolder . '/' .$key . '/content', self::DATA_DIR . '/' .$key . '/content');
|
|
||||||
// Supprimer les fichiers importés
|
|
||||||
unlink (self::TEMP_DIR . $tempFolder . '/' .$key . '/' . $fileTarget . '.json');
|
|
||||||
// Import des fichiers placés ailleurs que dans les dossiers localisés.
|
|
||||||
$this->copyDir (self::TEMP_DIR . $tempFolder, self::DATA_DIR );
|
|
||||||
|
|
||||||
|
|
||||||
// Import des données localisées page.json et module.json
|
|
||||||
// Pour chaque dossier localisé
|
|
||||||
// $dataTarget = array();
|
|
||||||
// $dataSource = array();
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Liste des pages de même nom dans l'archive et le site
|
|
||||||
/*
|
|
||||||
$list = '';
|
|
||||||
foreach (self::$i18nList as $key=>$value) {
|
|
||||||
// Les Pages et les modules
|
|
||||||
foreach (['page','module'] as $fileTarget){
|
|
||||||
if (file_exists(self::TEMP_DIR . $tempFolder . '/' .$key . '/' . $fileTarget . '.json')) {
|
|
||||||
// Le dossier de langue existe
|
|
||||||
// faire la fusion
|
|
||||||
$dataSource = json_decode(file_get_contents(self::TEMP_DIR . $tempFolder . '/' .$key . '/' . $fileTarget . '.json'), true);
|
|
||||||
// Des pages de même nom que celles de l'archive existent
|
|
||||||
if( $fileTarget === 'page' ){
|
|
||||||
foreach( $dataSource as $keydataSource=>$valuedataSource ){
|
|
||||||
foreach( $this->getData(['page']) as $keypage=>$valuepage ){
|
|
||||||
if( $keydataSource === $keypage){
|
|
||||||
$list === '' ? $list .= ' '.$this->getData(['page', $keypage, 'title']) : $list .= ', '.$this->getData(['page', $keypage, 'title']);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
$dataTarget = json_decode(file_get_contents(self::DATA_DIR . $key . '/' . $fileTarget . '.json'), true);
|
|
||||||
$data [$fileTarget] = array_merge($dataTarget[$fileTarget], $dataSource);
|
|
||||||
if( $list === ''){
|
|
||||||
file_put_contents(self::DATA_DIR . '/' .$key . '/' . $fileTarget . '.json', json_encode( $data ,JSON_UNESCAPED_UNICODE|JSON_PRETTY_PRINT|LOCK_EX) );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
// Supprimer le dossier temporaire
|
|
||||||
$this->removeDir(self::TEMP_DIR . $tempFolder);
|
|
||||||
$zip->close();
|
|
||||||
/*
|
|
||||||
if( $list !== '' ){
|
|
||||||
$success = false;
|
|
||||||
strpos( $list, ',') === false ? $notification = 'Import impossible la page suivante doit être renommée :'.$list : $notification = 'Import impossible les pages suivantes doivent être renommées :'.$list;
|
|
||||||
}
|
|
||||||
else{
|
|
||||||
$success = true;
|
|
||||||
$notification = 'Import réussi';
|
|
||||||
}*/
|
|
||||||
// Valeurs en sortie
|
// Valeurs en sortie
|
||||||
$this->addOutput([
|
$this->addOutput([
|
||||||
'redirect' => helper::baseUrl() . 'plugin',
|
'redirect' => helper::baseUrl() . 'plugin',
|
||||||
'state' => $success,
|
'state' => true,
|
||||||
'notification' => $notification
|
'notification' => 'Okay'
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Liste des pages ne contenant pas de module
|
// Liste des pages ne contenant pas de module
|
||||||
self::$pagesList = $this->getData(['page']);
|
self::$pagesList = $this->getData(['page']);
|
||||||
foreach(self::$pagesList as $page => $pageId) {
|
foreach(self::$pagesList as $page => $pageId) {
|
||||||
|
@ -43,7 +43,7 @@
|
|||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col1 offset11">
|
<div class="col1 offset11">
|
||||||
<?php echo template::button('configModuledataImport', [
|
<?php echo template::button('configModuledataImport', [
|
||||||
'href' => helper::baseUrl() . 'dataImport',
|
'href' => helper::baseUrl() . 'plugin/dataImport',
|
||||||
'value' => template::ico('upload'),
|
'value' => template::ico('upload'),
|
||||||
"help" => 'Importer des données de module dans une page libre'
|
"help" => 'Importer des données de module dans une page libre'
|
||||||
]); ?>
|
]); ?>
|
||||||
|
Loading…
Reference in New Issue
Block a user