1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/noalyss_ynh.git synced 2024-09-03 19:46:20 +02:00
noalyss_ynh/sources/include/restore.inc.php
2015-09-27 00:54:25 +02:00

241 lines
7.3 KiB
PHP

<?php
/*
* This file is part of NOALYSS.
*
* NOALYSS 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 2 of the License, or
* (at your option) any later version.
*
* NOALYSS 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 NOALYSS; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
// Copyright Author Dany De Bontridder danydb@aevalys.eu
if ( !defined ('ALLOWED')) die('Forbidden');
require_once NOALYSS_INCLUDE.'/class_iradio.php';
require_once NOALYSS_INCLUDE.'/class_ifile.php';
/*!\file
* \brief restaure a database
*/
if ( isset ($_REQUEST['sa'] ))
{
if ( defined ('PG_PATH') )
putenv("PATH=".PG_PATH);
$cmd=escapeshellcmd (PG_RESTORE);
if (defined("noalyss_user"))
{
putenv("PGPASSWORD=" . noalyss_password);
putenv("PGUSER=" . noalyss_user);
putenv("PGHOST=" . noalyss_psql_host);
putenv("PGPORT=" . noalyss_psql_port);
} else if (defined("phpcompta_user"))
{
putenv("PGPASSWORD=" . phpcompta_password);
putenv("PGUSER=" . phpcompta_user);
putenv("PGHOST=" . phpcompta_psql_host);
putenv("PGPORT=" . phpcompta_psql_port);
} else {
die ('Aucune connection');
}
$retour='<hr>'.HtmlInput::button_anchor(_("Retour"),"?action=restore","","smallbutton");
if ( ! isset($_REQUEST['t']))
{
echo '<div class="content">';
echo ("<span class=\"error\">"._("Vous devez préciser s'il s'agit d'un modèle ou d'un dossier")."</span>");
echo $retour;
echo '</div>';
exit();
}
if ( empty ($_FILES['file']['name']) ||
strlen(trim($_FILES['file']['name']))==0
)
{
echo '<div class="content">';
echo ("<span class=\"error\">"._('Vous devez donner un fichier')." </span>");
echo $retour;
echo '</div>';
exit();
}
//---------------------------------------------------------------------------
// Restore a folder (dossier)
if ( $_REQUEST['t']=='d')
{
echo '<div class="content" style="width:80%;margin-left:10%">';
$cn=new Database();
$id=$cn->get_next_seq('dossier_id');
if ( strlen(trim($_REQUEST['database'])) == 0 )
{
$lname=$id." Restauration :".sql_string($_FILES['file']['name']);
}
else
{
$lname=$id." ".$_REQUEST['database'];
}
if (strlen(trim($_REQUEST['desc']))==0)
{
$ldesc=$lname;
}
else
{
$ldesc=sql_string($_REQUEST['desc']);
}
$sql="insert into ac_dossier (dos_id,dos_name,dos_description) values ($1,$2,$3)";
$cn->start();
try
{
$cn->get_value($sql,array($id,$lname,$ldesc));
}
catch ( Exception $e)
{
echo '<span class="error">'._("Echec de la restauration ").'</span>';
$cn->rollback();
exit();
}
$cn->commit();
$name=domaine."dossier".$id;
echo $name;
$cn->exec_sql("create database ".$name." encoding='utf8'");
$args=" --no-owner -d $name ".$_FILES['file']['tmp_name'];
$cmd= escapeshellcmd(PG_RESTORE);
exec($cmd.$args);
$test=new Database($id);
if ( $test->exist_table('version') )
{
echo '<h2 class="info"> '._('Restauration réussie du dossier ').$lname.'</h2>';
$test->close();
}
else
{
$test->close();
echo '<h2 class="error"> '._('Problème lors de la restauration ').$lname.'</h2>';
$cn->exec_sql('delete from ac_dossier where dos_id=$1',array($id));
$cn->exec_sql('drop database '.$name);
exit();
}
$new_cn=new Database($id);
$new_cn->apply_patch($name,0);
echo '<span class="error">'._('Ne pas recharger la page, sinon votre base de données sera restaurée une fois de plus').'</span>';
Dossier::synchro_admin($id);
echo $retour;
echo '</div>';
}
//---------------------------------------------------------------------------
// Restore a modele
if ( $_REQUEST['t']=='m')
{
echo '<div class="content">';
$cn=new Database();
$id=$cn->get_next_seq('s_modid');
if ( strlen(trim($_REQUEST['database'])) == 0 )
$lname=$id." Restauration :".sql_string($_FILES['file']['name']);
else
$lname=$id." ".$_REQUEST['database'];
$sql="insert into modeledef (mod_id,mod_name,mod_desc) values (".$id.",'Restauration".$lname."','".$ldesc."') ";
$cn->start();
try
{
$cn->get_value($sql);
}
catch ( Exception $e)
{
echo '<span class="error">'._("Echec de la restauration ").'</span>';
$cn->rollback();
exit();
}
$cn->commit();
$name=domaine."mod".$id;
$cn->exec_sql("create database ".$name." encoding='utf8'");
$args=" -d $name ".$_FILES['file']['tmp_name'];
$status=exec(PG_RESTORE.$args);
$test=new Database($id,'mod');
if ( $test->exist_table('version') )
{
echo '<h2 class="info"> '._('Restauration réussie du dossier ').$lname.'</h2>';
$test->close();
}
else
{
$test->close();
echo '<h2 class="error"> '._('Problème lors de la restauration ').$lname.'</h2>';
$cn->exec_sql('delete from modeledef where mod_id=$1',array($id));
$cn->exec_sql('drop database '.$name);
exit();
}
$new_cn=new Database($id,'mod');
$new_cn->apply_patch($name,0);
echo '<span class="error">'._('Ne pas recharger la page, sinon votre base de données sera restaurée une fois de plus').'</span>';
echo $retour;
echo '</div>';
}
}
else
{
echo '<div class="content" style="width:80%;margin-left:10%">';
echo '<form method="POST" action="admin_repo.php" enctype="multipart/form-data" >';
echo HtmlInput::hidden('action','restore');
echo HtmlInput::hidden('sa','r');
echo '<table>';
echo '<tr><td>'._("Nom de la base de donnée").HtmlInput::infobulle(29)
.'</td>';
$wNom=new IText();
$wNom->name="database";
$wNom->size=30;
echo '<td>'.$wNom->input().'</td></tr>';
echo '<tr><td>'._("Type de backup")." :".'</td>';
$chk=new IRadio();
$chk->name="t";
$chk->value="d";
echo '<td> '.$chk->input()._("Dossier").'</td>';
echo '</tr><tr><td></td>';
$chk->name="t";
$chk->value="m";
echo '<td>'.$chk->input()._("Modele").'</td>';
echo '<tr>';
$file=new IFile();
$file->name="file";
$file->value="mod";
echo td(_('Fichier ')).
td($file->input());
$desc=new ITextarea('desc');
echo '</tr>';
echo '</table>';
echo "<p>Description </p>";
$desc->heigh=4;$desc->width=60;
echo $desc->input();
echo '<p>';
echo HtmlInput::submit("",_("Restauration"));
echo '</p>';
echo '</form>';
echo '</div>';
}