Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2019-04-02 17:35:45 +0300
committerJoas Schilling <coding@schilljs.com>2019-04-08 18:00:53 +0300
commitd3835dfc83c936e0cabe99052fa558614bf5764c (patch)
treecb7f50456b250d11df4dd03cdffcb4e9650784ac /lib/Migration
parent7316ba61479591dd67220f62bf8ba0b9a671b060 (diff)
Add /wiki sample command
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Migration')
-rw-r--r--lib/Migration/RegisterSampleCommands.php65
1 files changed, 65 insertions, 0 deletions
diff --git a/lib/Migration/RegisterSampleCommands.php b/lib/Migration/RegisterSampleCommands.php
new file mode 100644
index 000000000..c20fc8f18
--- /dev/null
+++ b/lib/Migration/RegisterSampleCommands.php
@@ -0,0 +1,65 @@
+<?php
+declare(strict_types=1);
+/**
+ * @copyright Copyright (c) 2019, Joas Schilling <coding@schilljs.com>
+ *
+ * @author Joas Schilling <coding@schilljs.com>
+ *
+ * @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 <http://www.gnu.org/licenses/>.
+ *
+ */
+
+namespace OCA\Spreed\Migration;
+
+use OCA\Spreed\Model\Command;
+use OCA\Spreed\Service\CommandService;
+use OCP\App\IAppManager;
+use OCP\AppFramework\Db\DoesNotExistException;
+use OCP\Migration\IOutput;
+use OCP\Migration\IRepairStep;
+
+class RegisterSampleCommands implements IRepairStep {
+
+ /** @var CommandService */
+ protected $service;
+ /** @var IAppManager */
+ protected $appManager;
+
+ public function __construct(CommandService $service, IAppManager $appManager) {
+ $this->service = $service;
+ $this->appManager = $appManager;
+ }
+
+ public function getName(): string {
+ return 'Create help command';
+ }
+
+ public function run(IOutput $output): void {
+ try {
+ $this->service->find('', 'wiki');
+ } catch (DoesNotExistException $e) {
+
+ $this->service->create(
+ '',
+ 'wiki',
+ 'Wikipedia search',
+ 'php ' . $this->appManager->getAppPath('spreed') . '/sample-commands/wikipedia.php "{ARGUMENTS_DOUBLEQUOTE_ESCAPED}"',
+ Command::RESPONSE_ALL,
+ Command::ENABLED_ALL
+ );
+ }
+ }
+}