mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-09 11:03:17 +00:00
96 lines
2.6 KiB
PHP
96 lines
2.6 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Phraseanet
|
|
*
|
|
* (c) 2005-2013 Alchemy
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
/**
|
|
*
|
|
* @package KonsoleKomander
|
|
* @license http://opensource.org/licenses/gpl-3.0 GPLv3
|
|
* @link www.phraseanet.com
|
|
*/
|
|
use Alchemy\Phrasea\Command\Command;
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
use Symfony\Component\Process\ProcessBuilder;
|
|
|
|
class module_console_systemBackupDB extends Command
|
|
{
|
|
|
|
public function __construct($name = null)
|
|
{
|
|
parent::__construct($name);
|
|
|
|
$dir = sprintf(
|
|
'%s/config/'
|
|
, dirname(dirname(dirname(dirname(__DIR__))))
|
|
);
|
|
|
|
$this->setDescription('Backup Phraseanet Databases');
|
|
|
|
$this->addArgument('directory', null, 'The directory where to backup', $dir);
|
|
|
|
return $this;
|
|
}
|
|
|
|
protected function doExecute(InputInterface $input, OutputInterface $output)
|
|
{
|
|
$output->write('Phraseanet is going to be backup...', true);
|
|
|
|
$ok = $this->dump_base($this->getService('phraseanet.appbox'), $input, $output) && $ok;
|
|
|
|
foreach ($this->getService('phraseanet.appbox')->get_databoxes() as $databox) {
|
|
$ok = $this->dump_base($databox, $input, $output) && $ok;
|
|
}
|
|
|
|
return (int) ! $ok;
|
|
}
|
|
|
|
protected function dump_base(base $base, InputInterface $input, OutputInterface $output)
|
|
{
|
|
$date_obj = new DateTime();
|
|
|
|
$filename = sprintf(
|
|
'%s%s_%s.sql'
|
|
, p4string::addEndSlash($input->getArgument('directory'))
|
|
, $base->get_dbname()
|
|
, $date_obj->format('Y_m_d_H_i_s')
|
|
);
|
|
|
|
$output->write(sprintf('Generating %s ... ', $filename));
|
|
|
|
$builder = ProcessBuilder::create(array(
|
|
'mysqldump',
|
|
'--host='.$base->get_host(),
|
|
'--port='.$base->get_port(),
|
|
'--user='.$base->get_user(),
|
|
'--password='.$base->get_passwd(),
|
|
'--databases', $base->get_dbname(),
|
|
'--default-character-set=utf8'
|
|
));
|
|
|
|
$proces = $builder->getProcess();
|
|
$proces->run();
|
|
|
|
if ($proces->isSuccessful()) {
|
|
file_put_contents($filename, $proces->getOutput());
|
|
}
|
|
|
|
if (file_exists($filename) && filesize($filename) > 0) {
|
|
$output->writeln('OK');
|
|
|
|
return true;
|
|
} else {
|
|
$output->writeln('<error>Failed</error>');
|
|
|
|
return false;
|
|
}
|
|
}
|
|
}
|