2017-11-18 02:31:33 -05:00
|
|
|
<?php
|
|
|
|
/**
|
2020-02-09 10:18:46 -05:00
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2017-11-18 02:31:33 -05:00
|
|
|
*/
|
2020-02-09 10:18:46 -05:00
|
|
|
|
2017-11-18 02:31:33 -05:00
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
2018-10-05 18:53:13 -04:00
|
|
|
use Friendica\Core\Update;
|
2019-12-15 16:34:11 -05:00
|
|
|
use Friendica\DI;
|
2017-11-18 02:31:33 -05:00
|
|
|
|
2020-02-09 10:18:46 -05:00
|
|
|
/**
|
|
|
|
* This file is called when the database structure needs to be updated
|
|
|
|
*/
|
2019-12-15 17:28:01 -05:00
|
|
|
class DBUpdate
|
2018-07-09 22:39:59 -04:00
|
|
|
{
|
|
|
|
public static function execute()
|
|
|
|
{
|
2019-03-24 17:51:30 -04:00
|
|
|
// Just in case the last update wasn't failed
|
2020-01-19 15:21:13 -05:00
|
|
|
if (DI::config()->get('system', 'update', Update::SUCCESS, true) != Update::FAILED) {
|
2019-12-15 16:34:11 -05:00
|
|
|
Update::run(DI::app()->getBasePath());
|
2019-03-24 17:51:30 -04:00
|
|
|
}
|
2017-11-18 02:31:33 -05:00
|
|
|
}
|
|
|
|
}
|