You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

GetPath.php 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Joas Schilling <coding@schilljs.com>
  6. * @author Victor Dubiniuk <dubiniuk@owncloud.com>
  7. *
  8. * @license AGPL-3.0
  9. *
  10. * This code is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU Affero General Public License, version 3,
  12. * as published by the Free Software Foundation.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Affero General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public License, version 3,
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>
  21. *
  22. */
  23. namespace OC\Core\Command\App;
  24. use OC\Core\Command\Base;
  25. use Stecman\Component\Symfony\Console\BashCompletion\CompletionContext;
  26. use Symfony\Component\Console\Input\InputArgument;
  27. use Symfony\Component\Console\Input\InputInterface;
  28. use Symfony\Component\Console\Output\OutputInterface;
  29. class GetPath extends Base {
  30. protected function configure() {
  31. parent::configure();
  32. $this
  33. ->setName('app:getpath')
  34. ->setDescription('Get an absolute path to the app directory')
  35. ->addArgument(
  36. 'app',
  37. InputArgument::REQUIRED,
  38. 'Name of the app'
  39. )
  40. ;
  41. }
  42. /**
  43. * Executes the current command.
  44. *
  45. * @param InputInterface $input An InputInterface instance
  46. * @param OutputInterface $output An OutputInterface instance
  47. * @return int 0 if everything went fine, or an error code
  48. */
  49. protected function execute(InputInterface $input, OutputInterface $output): int {
  50. $appName = $input->getArgument('app');
  51. $path = \OC_App::getAppPath($appName);
  52. if ($path !== false) {
  53. $output->writeln($path);
  54. return 0;
  55. }
  56. // App not found, exit with non-zero
  57. return 1;
  58. }
  59. /**
  60. * @param string $argumentName
  61. * @param CompletionContext $context
  62. * @return string[]
  63. */
  64. public function completeArgumentValues($argumentName, CompletionContext $context) {
  65. if ($argumentName === 'app') {
  66. return \OC_App::getAllApps();
  67. }
  68. return [];
  69. }
  70. }