-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added AppDataUpdate repair step to sync settings changes on app update (
#34)
- Loading branch information
1 parent
c79426b
commit f2e1563
Showing
2 changed files
with
61 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* @copyright Copyright (c) 2022-2023 Andrey Borysenko <[email protected]> | ||
* | ||
* @copyright Copyright (c) 2022-2023 Alexander Piskun <[email protected]> | ||
* | ||
* @author 2022-2023 Andrey Borysenko <[email protected]> | ||
* | ||
* @license AGPL-3.0-or-later | ||
* | ||
* 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 <http://www.gnu.org/licenses/>. | ||
* | ||
*/ | ||
|
||
namespace OCA\Cloud_Py_API\Migration; | ||
|
||
use OCP\Migration\IOutput; | ||
use OCP\Migration\IRepairStep; | ||
|
||
use OCA\Cloud_Py_API\Migration\data\AppInitialData; | ||
use OCA\Cloud_Py_API\Service\UtilsService; | ||
|
||
class AppUpdateStep implements IRepairStep { | ||
/** @var UtilsService */ | ||
private $utils; | ||
|
||
public function __construct(UtilsService $utils) { | ||
$this->utils = $utils; | ||
} | ||
|
||
public function getName(): string { | ||
return "Updating Cloud_Py_API data"; | ||
} | ||
|
||
public function run(IOutput $output) { | ||
$output->startProgress(1); | ||
$app_data = AppInitialData::$INITIAL_DATA; | ||
|
||
$output->advance(1, 'Checking for inital data changes and syncing with database'); | ||
$this->utils->checkForSettingsUpdates($app_data); | ||
|
||
$output->finishProgress(); | ||
} | ||
} |