0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
lib
/
core
/
Tiki
/
Command
/
[
Home
]
File: UpdateCommand.php
<?php // (c) Copyright 2002-2015 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: UpdateCommand.php 53803 2015-02-06 00:42:50Z jyhem $ namespace Tiki\Command; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; class UpdateCommand extends Command { protected function configure() { $this ->setName('database:update') ->setDescription('Update the database to the latest schema') ->addOption( 'auto-register', null, InputOption::VALUE_NONE, 'Record any failed patch as applied.' ); } protected function execute(InputInterface $input, OutputInterface $output) { $autoRegister = $input->getOption('auto-register'); $installer = new \Installer; $installed = $installer->tableExists('users_users'); if ($installed) { $installer->update(); $output->writeln('Update completed.'); if (count($installer->installed)) { foreach ($installer->installed as $patch) { $output->writeln("<info>Installed: $patch</info>"); } } if ( count($installer->executed) ) { foreach ( $installer->executed as $script ) { $output->writeln("<info>Executed: $script</info>"); } } $output->writeln('<info>Queries executed successfully: ' . count($installer->success) . '</info>'); if ( count($installer->failures) ) { foreach ( $installer->failures as $key => $error ) { list( $query, $message, $patch ) = $error; $output->writeln("<error>Error $key in $patch\n\t$query\n\t$message</error>"); if ($autoRegister) { $installer->recordPatch($patch); } } } $cachelib = \TikiLib::lib('cache'); $cachelib->empty_cache(); } else { $output->writeln('<error>Database not found.</error>'); } } }