@@ -34,53 +34,53 @@ |
||
| 34 | 34 | use Symfony\Component\Console\Output\OutputInterface; |
| 35 | 35 | |
| 36 | 36 | class Put extends Command { |
| 37 | - private FileUtils $fileUtils; |
|
| 38 | - private IRootFolder $rootFolder; |
|
| 37 | + private FileUtils $fileUtils; |
|
| 38 | + private IRootFolder $rootFolder; |
|
| 39 | 39 | |
| 40 | - public function __construct(FileUtils $fileUtils, IRootFolder $rootFolder) { |
|
| 41 | - $this->fileUtils = $fileUtils; |
|
| 42 | - $this->rootFolder = $rootFolder; |
|
| 43 | - parent::__construct(); |
|
| 44 | - } |
|
| 40 | + public function __construct(FileUtils $fileUtils, IRootFolder $rootFolder) { |
|
| 41 | + $this->fileUtils = $fileUtils; |
|
| 42 | + $this->rootFolder = $rootFolder; |
|
| 43 | + parent::__construct(); |
|
| 44 | + } |
|
| 45 | 45 | |
| 46 | - protected function configure(): void { |
|
| 47 | - $this |
|
| 48 | - ->setName('files:put') |
|
| 49 | - ->setDescription('Write contents of a file') |
|
| 50 | - ->addArgument('input', InputArgument::REQUIRED, "Source local path, use - to read from STDIN") |
|
| 51 | - ->addArgument('file', InputArgument::REQUIRED, "Target Nextcloud file path to write to or fileid of existing file"); |
|
| 52 | - } |
|
| 46 | + protected function configure(): void { |
|
| 47 | + $this |
|
| 48 | + ->setName('files:put') |
|
| 49 | + ->setDescription('Write contents of a file') |
|
| 50 | + ->addArgument('input', InputArgument::REQUIRED, "Source local path, use - to read from STDIN") |
|
| 51 | + ->addArgument('file', InputArgument::REQUIRED, "Target Nextcloud file path to write to or fileid of existing file"); |
|
| 52 | + } |
|
| 53 | 53 | |
| 54 | - public function execute(InputInterface $input, OutputInterface $output): int { |
|
| 55 | - $fileOutput = $input->getArgument('file'); |
|
| 56 | - $inputName = $input->getArgument('input'); |
|
| 57 | - $node = $this->fileUtils->getNode($fileOutput); |
|
| 54 | + public function execute(InputInterface $input, OutputInterface $output): int { |
|
| 55 | + $fileOutput = $input->getArgument('file'); |
|
| 56 | + $inputName = $input->getArgument('input'); |
|
| 57 | + $node = $this->fileUtils->getNode($fileOutput); |
|
| 58 | 58 | |
| 59 | - if ($node instanceof Folder) { |
|
| 60 | - $output->writeln("<error>$fileOutput is a folder</error>"); |
|
| 61 | - return 1; |
|
| 62 | - } |
|
| 63 | - if (!$node and is_numeric($fileOutput)) { |
|
| 64 | - $output->writeln("<error>$fileOutput not found</error>"); |
|
| 65 | - return 1; |
|
| 66 | - } |
|
| 59 | + if ($node instanceof Folder) { |
|
| 60 | + $output->writeln("<error>$fileOutput is a folder</error>"); |
|
| 61 | + return 1; |
|
| 62 | + } |
|
| 63 | + if (!$node and is_numeric($fileOutput)) { |
|
| 64 | + $output->writeln("<error>$fileOutput not found</error>"); |
|
| 65 | + return 1; |
|
| 66 | + } |
|
| 67 | 67 | |
| 68 | - $source = ($inputName === null || $inputName === '-') ? STDIN : fopen($inputName, 'r'); |
|
| 69 | - if (!$source) { |
|
| 70 | - $output->writeln("<error>Failed to open $inputName</error>"); |
|
| 71 | - return 1; |
|
| 72 | - } |
|
| 73 | - if ($node instanceof File) { |
|
| 74 | - $target = $node->fopen('w'); |
|
| 75 | - if (!$target) { |
|
| 76 | - $output->writeln("<error>Failed to open $fileOutput</error>"); |
|
| 77 | - return 1; |
|
| 78 | - } |
|
| 79 | - stream_copy_to_stream($source, $target); |
|
| 80 | - } else { |
|
| 81 | - $this->rootFolder->newFile($fileOutput, $source); |
|
| 82 | - } |
|
| 83 | - return 0; |
|
| 84 | - } |
|
| 68 | + $source = ($inputName === null || $inputName === '-') ? STDIN : fopen($inputName, 'r'); |
|
| 69 | + if (!$source) { |
|
| 70 | + $output->writeln("<error>Failed to open $inputName</error>"); |
|
| 71 | + return 1; |
|
| 72 | + } |
|
| 73 | + if ($node instanceof File) { |
|
| 74 | + $target = $node->fopen('w'); |
|
| 75 | + if (!$target) { |
|
| 76 | + $output->writeln("<error>Failed to open $fileOutput</error>"); |
|
| 77 | + return 1; |
|
| 78 | + } |
|
| 79 | + stream_copy_to_stream($source, $target); |
|
| 80 | + } else { |
|
| 81 | + $this->rootFolder->newFile($fileOutput, $source); |
|
| 82 | + } |
|
| 83 | + return 0; |
|
| 84 | + } |
|
| 85 | 85 | |
| 86 | 86 | } |
@@ -32,58 +32,58 @@ |
||
| 32 | 32 | use Symfony\Component\Console\Output\OutputInterface; |
| 33 | 33 | |
| 34 | 34 | class Get extends Command { |
| 35 | - private FileUtils $fileUtils; |
|
| 35 | + private FileUtils $fileUtils; |
|
| 36 | 36 | |
| 37 | - public function __construct(FileUtils $fileUtils) { |
|
| 38 | - $this->fileUtils = $fileUtils; |
|
| 39 | - parent::__construct(); |
|
| 40 | - } |
|
| 37 | + public function __construct(FileUtils $fileUtils) { |
|
| 38 | + $this->fileUtils = $fileUtils; |
|
| 39 | + parent::__construct(); |
|
| 40 | + } |
|
| 41 | 41 | |
| 42 | - protected function configure(): void { |
|
| 43 | - $this |
|
| 44 | - ->setName('files:get') |
|
| 45 | - ->setDescription('Get the contents of a file') |
|
| 46 | - ->addArgument('file', InputArgument::REQUIRED, "Source file id or Nextcloud path") |
|
| 47 | - ->addArgument('output', InputArgument::OPTIONAL, "Target local file to output to, defaults to STDOUT"); |
|
| 48 | - } |
|
| 42 | + protected function configure(): void { |
|
| 43 | + $this |
|
| 44 | + ->setName('files:get') |
|
| 45 | + ->setDescription('Get the contents of a file') |
|
| 46 | + ->addArgument('file', InputArgument::REQUIRED, "Source file id or Nextcloud path") |
|
| 47 | + ->addArgument('output', InputArgument::OPTIONAL, "Target local file to output to, defaults to STDOUT"); |
|
| 48 | + } |
|
| 49 | 49 | |
| 50 | - public function execute(InputInterface $input, OutputInterface $output): int { |
|
| 51 | - $fileInput = $input->getArgument('file'); |
|
| 52 | - $outputName = $input->getArgument('output'); |
|
| 53 | - $node = $this->fileUtils->getNode($fileInput); |
|
| 50 | + public function execute(InputInterface $input, OutputInterface $output): int { |
|
| 51 | + $fileInput = $input->getArgument('file'); |
|
| 52 | + $outputName = $input->getArgument('output'); |
|
| 53 | + $node = $this->fileUtils->getNode($fileInput); |
|
| 54 | 54 | |
| 55 | - if (!$node) { |
|
| 56 | - $output->writeln("<error>file $fileInput not found</error>"); |
|
| 57 | - return 1; |
|
| 58 | - } |
|
| 55 | + if (!$node) { |
|
| 56 | + $output->writeln("<error>file $fileInput not found</error>"); |
|
| 57 | + return 1; |
|
| 58 | + } |
|
| 59 | 59 | |
| 60 | - if ($node instanceof File) { |
|
| 61 | - $isTTY = stream_isatty(STDOUT); |
|
| 62 | - if ($outputName === null && $isTTY && $node->getMimePart() !== 'text') { |
|
| 63 | - $output->writeln([ |
|
| 64 | - "<error>Warning: Binary output can mess up your terminal</error>", |
|
| 65 | - " Use <info>occ files:get $fileInput -</info> to output it to the terminal anyway", |
|
| 66 | - " Or <info>occ files:get $fileInput <FILE></info> to save to a file instead" |
|
| 67 | - ]); |
|
| 68 | - return 1; |
|
| 69 | - } |
|
| 70 | - $source = $node->fopen('r'); |
|
| 71 | - if (!$source) { |
|
| 72 | - $output->writeln("<error>Failed to open $fileInput for reading</error>"); |
|
| 73 | - return 1; |
|
| 74 | - } |
|
| 75 | - $target = ($outputName === null || $outputName === '-') ? STDOUT : fopen($outputName, 'w'); |
|
| 76 | - if (!$target) { |
|
| 77 | - $output->writeln("<error>Failed to open $outputName for reading</error>"); |
|
| 78 | - return 1; |
|
| 79 | - } |
|
| 60 | + if ($node instanceof File) { |
|
| 61 | + $isTTY = stream_isatty(STDOUT); |
|
| 62 | + if ($outputName === null && $isTTY && $node->getMimePart() !== 'text') { |
|
| 63 | + $output->writeln([ |
|
| 64 | + "<error>Warning: Binary output can mess up your terminal</error>", |
|
| 65 | + " Use <info>occ files:get $fileInput -</info> to output it to the terminal anyway", |
|
| 66 | + " Or <info>occ files:get $fileInput <FILE></info> to save to a file instead" |
|
| 67 | + ]); |
|
| 68 | + return 1; |
|
| 69 | + } |
|
| 70 | + $source = $node->fopen('r'); |
|
| 71 | + if (!$source) { |
|
| 72 | + $output->writeln("<error>Failed to open $fileInput for reading</error>"); |
|
| 73 | + return 1; |
|
| 74 | + } |
|
| 75 | + $target = ($outputName === null || $outputName === '-') ? STDOUT : fopen($outputName, 'w'); |
|
| 76 | + if (!$target) { |
|
| 77 | + $output->writeln("<error>Failed to open $outputName for reading</error>"); |
|
| 78 | + return 1; |
|
| 79 | + } |
|
| 80 | 80 | |
| 81 | - stream_copy_to_stream($source, $target); |
|
| 82 | - return 0; |
|
| 83 | - } else { |
|
| 84 | - $output->writeln("<error>$fileInput is a directory</error>"); |
|
| 85 | - return 1; |
|
| 86 | - } |
|
| 87 | - } |
|
| 81 | + stream_copy_to_stream($source, $target); |
|
| 82 | + return 0; |
|
| 83 | + } else { |
|
| 84 | + $output->writeln("<error>$fileInput is a directory</error>"); |
|
| 85 | + return 1; |
|
| 86 | + } |
|
| 87 | + } |
|
| 88 | 88 | |
| 89 | 89 | } |
@@ -35,82 +35,82 @@ |
||
| 35 | 35 | use Symfony\Component\Console\Question\ConfirmationQuestion; |
| 36 | 36 | |
| 37 | 37 | class Delete extends Command { |
| 38 | - private FileUtils $fileUtils; |
|
| 38 | + private FileUtils $fileUtils; |
|
| 39 | 39 | |
| 40 | - public function __construct(FileUtils $fileUtils) { |
|
| 41 | - $this->fileUtils = $fileUtils; |
|
| 42 | - parent::__construct(); |
|
| 43 | - } |
|
| 40 | + public function __construct(FileUtils $fileUtils) { |
|
| 41 | + $this->fileUtils = $fileUtils; |
|
| 42 | + parent::__construct(); |
|
| 43 | + } |
|
| 44 | 44 | |
| 45 | - protected function configure(): void { |
|
| 46 | - $this |
|
| 47 | - ->setName('files:delete') |
|
| 48 | - ->setDescription('Delete a file or folder') |
|
| 49 | - ->addArgument('file', InputArgument::REQUIRED, "File id or path") |
|
| 50 | - ->addOption('force', 'f', InputOption::VALUE_NONE, "Don't ask for configuration and don't output any warnings"); |
|
| 51 | - } |
|
| 45 | + protected function configure(): void { |
|
| 46 | + $this |
|
| 47 | + ->setName('files:delete') |
|
| 48 | + ->setDescription('Delete a file or folder') |
|
| 49 | + ->addArgument('file', InputArgument::REQUIRED, "File id or path") |
|
| 50 | + ->addOption('force', 'f', InputOption::VALUE_NONE, "Don't ask for configuration and don't output any warnings"); |
|
| 51 | + } |
|
| 52 | 52 | |
| 53 | - public function execute(InputInterface $input, OutputInterface $output): int { |
|
| 54 | - $fileInput = $input->getArgument('file'); |
|
| 55 | - $inputIsId = is_numeric($fileInput); |
|
| 56 | - $force = $input->getOption('force'); |
|
| 57 | - $node = $this->fileUtils->getNode($fileInput); |
|
| 53 | + public function execute(InputInterface $input, OutputInterface $output): int { |
|
| 54 | + $fileInput = $input->getArgument('file'); |
|
| 55 | + $inputIsId = is_numeric($fileInput); |
|
| 56 | + $force = $input->getOption('force'); |
|
| 57 | + $node = $this->fileUtils->getNode($fileInput); |
|
| 58 | 58 | |
| 59 | - if (!$node) { |
|
| 60 | - $output->writeln("<error>file $fileInput not found</error>"); |
|
| 61 | - return 1; |
|
| 62 | - } |
|
| 59 | + if (!$node) { |
|
| 60 | + $output->writeln("<error>file $fileInput not found</error>"); |
|
| 61 | + return 1; |
|
| 62 | + } |
|
| 63 | 63 | |
| 64 | - $deleteConfirmed = $force; |
|
| 65 | - if (!$deleteConfirmed) { |
|
| 66 | - /** @var QuestionHelper $helper */ |
|
| 67 | - $helper = $this->getHelper('question'); |
|
| 68 | - $storage = $node->getStorage(); |
|
| 69 | - if (!$inputIsId && $storage->instanceOfStorage(SharedStorage::class) && $node->getInternalPath() === '') { |
|
| 70 | - /** @var SharedStorage $storage */ |
|
| 71 | - [,$user] = explode('/', $fileInput, 3); |
|
| 72 | - $question = new ConfirmationQuestion("<info>$fileInput</info> in a shared file, do you want to unshare the file from <info>$user</info> instead of deleting the source file? [Y/n] ", true); |
|
| 73 | - if ($helper->ask($input, $output, $question)) { |
|
| 74 | - $storage->unshareStorage(); |
|
| 75 | - return 0; |
|
| 76 | - } else { |
|
| 77 | - $node = $storage->getShare()->getNode(); |
|
| 78 | - $output->writeln(""); |
|
| 79 | - } |
|
| 80 | - } |
|
| 64 | + $deleteConfirmed = $force; |
|
| 65 | + if (!$deleteConfirmed) { |
|
| 66 | + /** @var QuestionHelper $helper */ |
|
| 67 | + $helper = $this->getHelper('question'); |
|
| 68 | + $storage = $node->getStorage(); |
|
| 69 | + if (!$inputIsId && $storage->instanceOfStorage(SharedStorage::class) && $node->getInternalPath() === '') { |
|
| 70 | + /** @var SharedStorage $storage */ |
|
| 71 | + [,$user] = explode('/', $fileInput, 3); |
|
| 72 | + $question = new ConfirmationQuestion("<info>$fileInput</info> in a shared file, do you want to unshare the file from <info>$user</info> instead of deleting the source file? [Y/n] ", true); |
|
| 73 | + if ($helper->ask($input, $output, $question)) { |
|
| 74 | + $storage->unshareStorage(); |
|
| 75 | + return 0; |
|
| 76 | + } else { |
|
| 77 | + $node = $storage->getShare()->getNode(); |
|
| 78 | + $output->writeln(""); |
|
| 79 | + } |
|
| 80 | + } |
|
| 81 | 81 | |
| 82 | - $filesByUsers = $this->fileUtils->getFilesByUser($node); |
|
| 83 | - if (count($filesByUsers) > 1) { |
|
| 84 | - $output->writeln("Warning: the provided file is accessible by more than one user"); |
|
| 85 | - $output->writeln(" all of the following users will lose access to the file when deleted:"); |
|
| 86 | - $output->writeln(""); |
|
| 87 | - foreach ($filesByUsers as $user => $filesByUser) { |
|
| 88 | - $output->writeln($user . ":"); |
|
| 89 | - foreach($filesByUser as $file) { |
|
| 90 | - $output->writeln(" - " . $file->getPath()); |
|
| 91 | - } |
|
| 92 | - } |
|
| 93 | - $output->writeln(""); |
|
| 94 | - } |
|
| 82 | + $filesByUsers = $this->fileUtils->getFilesByUser($node); |
|
| 83 | + if (count($filesByUsers) > 1) { |
|
| 84 | + $output->writeln("Warning: the provided file is accessible by more than one user"); |
|
| 85 | + $output->writeln(" all of the following users will lose access to the file when deleted:"); |
|
| 86 | + $output->writeln(""); |
|
| 87 | + foreach ($filesByUsers as $user => $filesByUser) { |
|
| 88 | + $output->writeln($user . ":"); |
|
| 89 | + foreach($filesByUser as $file) { |
|
| 90 | + $output->writeln(" - " . $file->getPath()); |
|
| 91 | + } |
|
| 92 | + } |
|
| 93 | + $output->writeln(""); |
|
| 94 | + } |
|
| 95 | 95 | |
| 96 | - if ($node instanceof Folder) { |
|
| 97 | - $maybeContents = " and all it's contents"; |
|
| 98 | - } else { |
|
| 99 | - $maybeContents = ""; |
|
| 100 | - } |
|
| 101 | - $question = new ConfirmationQuestion("Delete " . $node->getPath() . $maybeContents . "? [y/N] ", false); |
|
| 102 | - $deleteConfirmed = $helper->ask($input, $output, $question); |
|
| 103 | - } |
|
| 96 | + if ($node instanceof Folder) { |
|
| 97 | + $maybeContents = " and all it's contents"; |
|
| 98 | + } else { |
|
| 99 | + $maybeContents = ""; |
|
| 100 | + } |
|
| 101 | + $question = new ConfirmationQuestion("Delete " . $node->getPath() . $maybeContents . "? [y/N] ", false); |
|
| 102 | + $deleteConfirmed = $helper->ask($input, $output, $question); |
|
| 103 | + } |
|
| 104 | 104 | |
| 105 | - if ($deleteConfirmed) { |
|
| 106 | - if ($node->isDeletable()) { |
|
| 107 | - $node->delete(); |
|
| 108 | - } else { |
|
| 109 | - $output->writeln("<error>File cannot be deleted, insufficient permissions.</error>"); |
|
| 110 | - } |
|
| 111 | - } |
|
| 105 | + if ($deleteConfirmed) { |
|
| 106 | + if ($node->isDeletable()) { |
|
| 107 | + $node->delete(); |
|
| 108 | + } else { |
|
| 109 | + $output->writeln("<error>File cannot be deleted, insufficient permissions.</error>"); |
|
| 110 | + } |
|
| 111 | + } |
|
| 112 | 112 | |
| 113 | - return 0; |
|
| 114 | - } |
|
| 113 | + return 0; |
|
| 114 | + } |
|
| 115 | 115 | |
| 116 | 116 | } |
@@ -85,9 +85,9 @@ discard block |
||
| 85 | 85 | $output->writeln(" all of the following users will lose access to the file when deleted:"); |
| 86 | 86 | $output->writeln(""); |
| 87 | 87 | foreach ($filesByUsers as $user => $filesByUser) { |
| 88 | - $output->writeln($user . ":"); |
|
| 89 | - foreach($filesByUser as $file) { |
|
| 90 | - $output->writeln(" - " . $file->getPath()); |
|
| 88 | + $output->writeln($user.":"); |
|
| 89 | + foreach ($filesByUser as $file) { |
|
| 90 | + $output->writeln(" - ".$file->getPath()); |
|
| 91 | 91 | } |
| 92 | 92 | } |
| 93 | 93 | $output->writeln(""); |
@@ -98,7 +98,7 @@ discard block |
||
| 98 | 98 | } else { |
| 99 | 99 | $maybeContents = ""; |
| 100 | 100 | } |
| 101 | - $question = new ConfirmationQuestion("Delete " . $node->getPath() . $maybeContents . "? [y/N] ", false); |
|
| 101 | + $question = new ConfirmationQuestion("Delete ".$node->getPath().$maybeContents."? [y/N] ", false); |
|
| 102 | 102 | $deleteConfirmed = $helper->ask($input, $output, $question); |
| 103 | 103 | } |
| 104 | 104 | |
@@ -6,84 +6,84 @@ |
||
| 6 | 6 | |
| 7 | 7 | class ComposerStaticInitFiles |
| 8 | 8 | { |
| 9 | - public static $prefixLengthsPsr4 = array ( |
|
| 9 | + public static $prefixLengthsPsr4 = array( |
|
| 10 | 10 | 'O' => |
| 11 | - array ( |
|
| 11 | + array( |
|
| 12 | 12 | 'OCA\\Files\\' => 10, |
| 13 | 13 | ), |
| 14 | 14 | ); |
| 15 | 15 | |
| 16 | - public static $prefixDirsPsr4 = array ( |
|
| 16 | + public static $prefixDirsPsr4 = array( |
|
| 17 | 17 | 'OCA\\Files\\' => |
| 18 | - array ( |
|
| 19 | - 0 => __DIR__ . '/..' . '/../lib', |
|
| 18 | + array( |
|
| 19 | + 0 => __DIR__.'/..'.'/../lib', |
|
| 20 | 20 | ), |
| 21 | 21 | ); |
| 22 | 22 | |
| 23 | - public static $classMap = array ( |
|
| 24 | - 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php', |
|
| 25 | - 'OCA\\Files\\Activity\\FavoriteProvider' => __DIR__ . '/..' . '/../lib/Activity/FavoriteProvider.php', |
|
| 26 | - 'OCA\\Files\\Activity\\Filter\\Favorites' => __DIR__ . '/..' . '/../lib/Activity/Filter/Favorites.php', |
|
| 27 | - 'OCA\\Files\\Activity\\Filter\\FileChanges' => __DIR__ . '/..' . '/../lib/Activity/Filter/FileChanges.php', |
|
| 28 | - 'OCA\\Files\\Activity\\Helper' => __DIR__ . '/..' . '/../lib/Activity/Helper.php', |
|
| 29 | - 'OCA\\Files\\Activity\\Provider' => __DIR__ . '/..' . '/../lib/Activity/Provider.php', |
|
| 30 | - 'OCA\\Files\\Activity\\Settings\\FavoriteAction' => __DIR__ . '/..' . '/../lib/Activity/Settings/FavoriteAction.php', |
|
| 31 | - 'OCA\\Files\\Activity\\Settings\\FileActivitySettings' => __DIR__ . '/..' . '/../lib/Activity/Settings/FileActivitySettings.php', |
|
| 32 | - 'OCA\\Files\\Activity\\Settings\\FileChanged' => __DIR__ . '/..' . '/../lib/Activity/Settings/FileChanged.php', |
|
| 33 | - 'OCA\\Files\\Activity\\Settings\\FileFavoriteChanged' => __DIR__ . '/..' . '/../lib/Activity/Settings/FileFavoriteChanged.php', |
|
| 34 | - 'OCA\\Files\\App' => __DIR__ . '/..' . '/../lib/App.php', |
|
| 35 | - 'OCA\\Files\\AppInfo\\Application' => __DIR__ . '/..' . '/../lib/AppInfo/Application.php', |
|
| 36 | - 'OCA\\Files\\BackgroundJob\\CleanupDirectEditingTokens' => __DIR__ . '/..' . '/../lib/BackgroundJob/CleanupDirectEditingTokens.php', |
|
| 37 | - 'OCA\\Files\\BackgroundJob\\CleanupFileLocks' => __DIR__ . '/..' . '/../lib/BackgroundJob/CleanupFileLocks.php', |
|
| 38 | - 'OCA\\Files\\BackgroundJob\\DeleteExpiredOpenLocalEditor' => __DIR__ . '/..' . '/../lib/BackgroundJob/DeleteExpiredOpenLocalEditor.php', |
|
| 39 | - 'OCA\\Files\\BackgroundJob\\DeleteOrphanedItems' => __DIR__ . '/..' . '/../lib/BackgroundJob/DeleteOrphanedItems.php', |
|
| 40 | - 'OCA\\Files\\BackgroundJob\\ScanFiles' => __DIR__ . '/..' . '/../lib/BackgroundJob/ScanFiles.php', |
|
| 41 | - 'OCA\\Files\\BackgroundJob\\TransferOwnership' => __DIR__ . '/..' . '/../lib/BackgroundJob/TransferOwnership.php', |
|
| 42 | - 'OCA\\Files\\Capabilities' => __DIR__ . '/..' . '/../lib/Capabilities.php', |
|
| 43 | - 'OCA\\Files\\Collaboration\\Resources\\Listener' => __DIR__ . '/..' . '/../lib/Collaboration/Resources/Listener.php', |
|
| 44 | - 'OCA\\Files\\Collaboration\\Resources\\ResourceProvider' => __DIR__ . '/..' . '/../lib/Collaboration/Resources/ResourceProvider.php', |
|
| 45 | - 'OCA\\Files\\Command\\Delete' => __DIR__ . '/..' . '/../lib/Command/Delete.php', |
|
| 46 | - 'OCA\\Files\\Command\\DeleteOrphanedFiles' => __DIR__ . '/..' . '/../lib/Command/DeleteOrphanedFiles.php', |
|
| 47 | - 'OCA\\Files\\Command\\Get' => __DIR__ . '/..' . '/../lib/Command/Get.php', |
|
| 48 | - 'OCA\\Files\\Command\\Put' => __DIR__ . '/..' . '/../lib/Command/Put.php', |
|
| 49 | - 'OCA\\Files\\Command\\RepairTree' => __DIR__ . '/..' . '/../lib/Command/RepairTree.php', |
|
| 50 | - 'OCA\\Files\\Command\\Scan' => __DIR__ . '/..' . '/../lib/Command/Scan.php', |
|
| 51 | - 'OCA\\Files\\Command\\ScanAppData' => __DIR__ . '/..' . '/../lib/Command/ScanAppData.php', |
|
| 52 | - 'OCA\\Files\\Command\\TransferOwnership' => __DIR__ . '/..' . '/../lib/Command/TransferOwnership.php', |
|
| 53 | - 'OCA\\Files\\Controller\\ApiController' => __DIR__ . '/..' . '/../lib/Controller/ApiController.php', |
|
| 54 | - 'OCA\\Files\\Controller\\DirectEditingController' => __DIR__ . '/..' . '/../lib/Controller/DirectEditingController.php', |
|
| 55 | - 'OCA\\Files\\Controller\\DirectEditingViewController' => __DIR__ . '/..' . '/../lib/Controller/DirectEditingViewController.php', |
|
| 56 | - 'OCA\\Files\\Controller\\OpenLocalEditorController' => __DIR__ . '/..' . '/../lib/Controller/OpenLocalEditorController.php', |
|
| 57 | - 'OCA\\Files\\Controller\\TemplateController' => __DIR__ . '/..' . '/../lib/Controller/TemplateController.php', |
|
| 58 | - 'OCA\\Files\\Controller\\TransferOwnershipController' => __DIR__ . '/..' . '/../lib/Controller/TransferOwnershipController.php', |
|
| 59 | - 'OCA\\Files\\Controller\\ViewController' => __DIR__ . '/..' . '/../lib/Controller/ViewController.php', |
|
| 60 | - 'OCA\\Files\\Db\\OpenLocalEditor' => __DIR__ . '/..' . '/../lib/Db/OpenLocalEditor.php', |
|
| 61 | - 'OCA\\Files\\Db\\OpenLocalEditorMapper' => __DIR__ . '/..' . '/../lib/Db/OpenLocalEditorMapper.php', |
|
| 62 | - 'OCA\\Files\\Db\\TransferOwnership' => __DIR__ . '/..' . '/../lib/Db/TransferOwnership.php', |
|
| 63 | - 'OCA\\Files\\Db\\TransferOwnershipMapper' => __DIR__ . '/..' . '/../lib/Db/TransferOwnershipMapper.php', |
|
| 64 | - 'OCA\\Files\\DirectEditingCapabilities' => __DIR__ . '/..' . '/../lib/DirectEditingCapabilities.php', |
|
| 65 | - 'OCA\\Files\\Event\\LoadAdditionalScriptsEvent' => __DIR__ . '/..' . '/../lib/Event/LoadAdditionalScriptsEvent.php', |
|
| 66 | - 'OCA\\Files\\Event\\LoadSidebar' => __DIR__ . '/..' . '/../lib/Event/LoadSidebar.php', |
|
| 67 | - 'OCA\\Files\\Exception\\TransferOwnershipException' => __DIR__ . '/..' . '/../lib/Exception/TransferOwnershipException.php', |
|
| 68 | - 'OCA\\Files\\Helper' => __DIR__ . '/..' . '/../lib/Helper.php', |
|
| 69 | - 'OCA\\Files\\Listener\\LegacyLoadAdditionalScriptsAdapter' => __DIR__ . '/..' . '/../lib/Listener/LegacyLoadAdditionalScriptsAdapter.php', |
|
| 70 | - 'OCA\\Files\\Listener\\LoadSidebarListener' => __DIR__ . '/..' . '/../lib/Listener/LoadSidebarListener.php', |
|
| 71 | - 'OCA\\Files\\Listener\\RenderReferenceEventListener' => __DIR__ . '/..' . '/../lib/Listener/RenderReferenceEventListener.php', |
|
| 72 | - 'OCA\\Files\\Migration\\Version11301Date20191205150729' => __DIR__ . '/..' . '/../lib/Migration/Version11301Date20191205150729.php', |
|
| 73 | - 'OCA\\Files\\Migration\\Version12101Date20221011153334' => __DIR__ . '/..' . '/../lib/Migration/Version12101Date20221011153334.php', |
|
| 74 | - 'OCA\\Files\\Notification\\Notifier' => __DIR__ . '/..' . '/../lib/Notification/Notifier.php', |
|
| 75 | - 'OCA\\Files\\Search\\FilesSearchProvider' => __DIR__ . '/..' . '/../lib/Search/FilesSearchProvider.php', |
|
| 76 | - 'OCA\\Files\\Service\\DirectEditingService' => __DIR__ . '/..' . '/../lib/Service/DirectEditingService.php', |
|
| 77 | - 'OCA\\Files\\Service\\OwnershipTransferService' => __DIR__ . '/..' . '/../lib/Service/OwnershipTransferService.php', |
|
| 78 | - 'OCA\\Files\\Service\\TagService' => __DIR__ . '/..' . '/../lib/Service/TagService.php', |
|
| 79 | - 'OCA\\Files\\Service\\UserConfig' => __DIR__ . '/..' . '/../lib/Service/UserConfig.php', |
|
| 80 | - 'OCA\\Files\\Service\\ViewConfig' => __DIR__ . '/..' . '/../lib/Service/ViewConfig.php', |
|
| 81 | - 'OCA\\Files\\Settings\\PersonalSettings' => __DIR__ . '/..' . '/../lib/Settings/PersonalSettings.php', |
|
| 23 | + public static $classMap = array( |
|
| 24 | + 'Composer\\InstalledVersions' => __DIR__.'/..'.'/composer/InstalledVersions.php', |
|
| 25 | + 'OCA\\Files\\Activity\\FavoriteProvider' => __DIR__.'/..'.'/../lib/Activity/FavoriteProvider.php', |
|
| 26 | + 'OCA\\Files\\Activity\\Filter\\Favorites' => __DIR__.'/..'.'/../lib/Activity/Filter/Favorites.php', |
|
| 27 | + 'OCA\\Files\\Activity\\Filter\\FileChanges' => __DIR__.'/..'.'/../lib/Activity/Filter/FileChanges.php', |
|
| 28 | + 'OCA\\Files\\Activity\\Helper' => __DIR__.'/..'.'/../lib/Activity/Helper.php', |
|
| 29 | + 'OCA\\Files\\Activity\\Provider' => __DIR__.'/..'.'/../lib/Activity/Provider.php', |
|
| 30 | + 'OCA\\Files\\Activity\\Settings\\FavoriteAction' => __DIR__.'/..'.'/../lib/Activity/Settings/FavoriteAction.php', |
|
| 31 | + 'OCA\\Files\\Activity\\Settings\\FileActivitySettings' => __DIR__.'/..'.'/../lib/Activity/Settings/FileActivitySettings.php', |
|
| 32 | + 'OCA\\Files\\Activity\\Settings\\FileChanged' => __DIR__.'/..'.'/../lib/Activity/Settings/FileChanged.php', |
|
| 33 | + 'OCA\\Files\\Activity\\Settings\\FileFavoriteChanged' => __DIR__.'/..'.'/../lib/Activity/Settings/FileFavoriteChanged.php', |
|
| 34 | + 'OCA\\Files\\App' => __DIR__.'/..'.'/../lib/App.php', |
|
| 35 | + 'OCA\\Files\\AppInfo\\Application' => __DIR__.'/..'.'/../lib/AppInfo/Application.php', |
|
| 36 | + 'OCA\\Files\\BackgroundJob\\CleanupDirectEditingTokens' => __DIR__.'/..'.'/../lib/BackgroundJob/CleanupDirectEditingTokens.php', |
|
| 37 | + 'OCA\\Files\\BackgroundJob\\CleanupFileLocks' => __DIR__.'/..'.'/../lib/BackgroundJob/CleanupFileLocks.php', |
|
| 38 | + 'OCA\\Files\\BackgroundJob\\DeleteExpiredOpenLocalEditor' => __DIR__.'/..'.'/../lib/BackgroundJob/DeleteExpiredOpenLocalEditor.php', |
|
| 39 | + 'OCA\\Files\\BackgroundJob\\DeleteOrphanedItems' => __DIR__.'/..'.'/../lib/BackgroundJob/DeleteOrphanedItems.php', |
|
| 40 | + 'OCA\\Files\\BackgroundJob\\ScanFiles' => __DIR__.'/..'.'/../lib/BackgroundJob/ScanFiles.php', |
|
| 41 | + 'OCA\\Files\\BackgroundJob\\TransferOwnership' => __DIR__.'/..'.'/../lib/BackgroundJob/TransferOwnership.php', |
|
| 42 | + 'OCA\\Files\\Capabilities' => __DIR__.'/..'.'/../lib/Capabilities.php', |
|
| 43 | + 'OCA\\Files\\Collaboration\\Resources\\Listener' => __DIR__.'/..'.'/../lib/Collaboration/Resources/Listener.php', |
|
| 44 | + 'OCA\\Files\\Collaboration\\Resources\\ResourceProvider' => __DIR__.'/..'.'/../lib/Collaboration/Resources/ResourceProvider.php', |
|
| 45 | + 'OCA\\Files\\Command\\Delete' => __DIR__.'/..'.'/../lib/Command/Delete.php', |
|
| 46 | + 'OCA\\Files\\Command\\DeleteOrphanedFiles' => __DIR__.'/..'.'/../lib/Command/DeleteOrphanedFiles.php', |
|
| 47 | + 'OCA\\Files\\Command\\Get' => __DIR__.'/..'.'/../lib/Command/Get.php', |
|
| 48 | + 'OCA\\Files\\Command\\Put' => __DIR__.'/..'.'/../lib/Command/Put.php', |
|
| 49 | + 'OCA\\Files\\Command\\RepairTree' => __DIR__.'/..'.'/../lib/Command/RepairTree.php', |
|
| 50 | + 'OCA\\Files\\Command\\Scan' => __DIR__.'/..'.'/../lib/Command/Scan.php', |
|
| 51 | + 'OCA\\Files\\Command\\ScanAppData' => __DIR__.'/..'.'/../lib/Command/ScanAppData.php', |
|
| 52 | + 'OCA\\Files\\Command\\TransferOwnership' => __DIR__.'/..'.'/../lib/Command/TransferOwnership.php', |
|
| 53 | + 'OCA\\Files\\Controller\\ApiController' => __DIR__.'/..'.'/../lib/Controller/ApiController.php', |
|
| 54 | + 'OCA\\Files\\Controller\\DirectEditingController' => __DIR__.'/..'.'/../lib/Controller/DirectEditingController.php', |
|
| 55 | + 'OCA\\Files\\Controller\\DirectEditingViewController' => __DIR__.'/..'.'/../lib/Controller/DirectEditingViewController.php', |
|
| 56 | + 'OCA\\Files\\Controller\\OpenLocalEditorController' => __DIR__.'/..'.'/../lib/Controller/OpenLocalEditorController.php', |
|
| 57 | + 'OCA\\Files\\Controller\\TemplateController' => __DIR__.'/..'.'/../lib/Controller/TemplateController.php', |
|
| 58 | + 'OCA\\Files\\Controller\\TransferOwnershipController' => __DIR__.'/..'.'/../lib/Controller/TransferOwnershipController.php', |
|
| 59 | + 'OCA\\Files\\Controller\\ViewController' => __DIR__.'/..'.'/../lib/Controller/ViewController.php', |
|
| 60 | + 'OCA\\Files\\Db\\OpenLocalEditor' => __DIR__.'/..'.'/../lib/Db/OpenLocalEditor.php', |
|
| 61 | + 'OCA\\Files\\Db\\OpenLocalEditorMapper' => __DIR__.'/..'.'/../lib/Db/OpenLocalEditorMapper.php', |
|
| 62 | + 'OCA\\Files\\Db\\TransferOwnership' => __DIR__.'/..'.'/../lib/Db/TransferOwnership.php', |
|
| 63 | + 'OCA\\Files\\Db\\TransferOwnershipMapper' => __DIR__.'/..'.'/../lib/Db/TransferOwnershipMapper.php', |
|
| 64 | + 'OCA\\Files\\DirectEditingCapabilities' => __DIR__.'/..'.'/../lib/DirectEditingCapabilities.php', |
|
| 65 | + 'OCA\\Files\\Event\\LoadAdditionalScriptsEvent' => __DIR__.'/..'.'/../lib/Event/LoadAdditionalScriptsEvent.php', |
|
| 66 | + 'OCA\\Files\\Event\\LoadSidebar' => __DIR__.'/..'.'/../lib/Event/LoadSidebar.php', |
|
| 67 | + 'OCA\\Files\\Exception\\TransferOwnershipException' => __DIR__.'/..'.'/../lib/Exception/TransferOwnershipException.php', |
|
| 68 | + 'OCA\\Files\\Helper' => __DIR__.'/..'.'/../lib/Helper.php', |
|
| 69 | + 'OCA\\Files\\Listener\\LegacyLoadAdditionalScriptsAdapter' => __DIR__.'/..'.'/../lib/Listener/LegacyLoadAdditionalScriptsAdapter.php', |
|
| 70 | + 'OCA\\Files\\Listener\\LoadSidebarListener' => __DIR__.'/..'.'/../lib/Listener/LoadSidebarListener.php', |
|
| 71 | + 'OCA\\Files\\Listener\\RenderReferenceEventListener' => __DIR__.'/..'.'/../lib/Listener/RenderReferenceEventListener.php', |
|
| 72 | + 'OCA\\Files\\Migration\\Version11301Date20191205150729' => __DIR__.'/..'.'/../lib/Migration/Version11301Date20191205150729.php', |
|
| 73 | + 'OCA\\Files\\Migration\\Version12101Date20221011153334' => __DIR__.'/..'.'/../lib/Migration/Version12101Date20221011153334.php', |
|
| 74 | + 'OCA\\Files\\Notification\\Notifier' => __DIR__.'/..'.'/../lib/Notification/Notifier.php', |
|
| 75 | + 'OCA\\Files\\Search\\FilesSearchProvider' => __DIR__.'/..'.'/../lib/Search/FilesSearchProvider.php', |
|
| 76 | + 'OCA\\Files\\Service\\DirectEditingService' => __DIR__.'/..'.'/../lib/Service/DirectEditingService.php', |
|
| 77 | + 'OCA\\Files\\Service\\OwnershipTransferService' => __DIR__.'/..'.'/../lib/Service/OwnershipTransferService.php', |
|
| 78 | + 'OCA\\Files\\Service\\TagService' => __DIR__.'/..'.'/../lib/Service/TagService.php', |
|
| 79 | + 'OCA\\Files\\Service\\UserConfig' => __DIR__.'/..'.'/../lib/Service/UserConfig.php', |
|
| 80 | + 'OCA\\Files\\Service\\ViewConfig' => __DIR__.'/..'.'/../lib/Service/ViewConfig.php', |
|
| 81 | + 'OCA\\Files\\Settings\\PersonalSettings' => __DIR__.'/..'.'/../lib/Settings/PersonalSettings.php', |
|
| 82 | 82 | ); |
| 83 | 83 | |
| 84 | 84 | public static function getInitializer(ClassLoader $loader) |
| 85 | 85 | { |
| 86 | - return \Closure::bind(function () use ($loader) { |
|
| 86 | + return \Closure::bind(function() use ($loader) { |
|
| 87 | 87 | $loader->prefixLengthsPsr4 = ComposerStaticInitFiles::$prefixLengthsPsr4; |
| 88 | 88 | $loader->prefixDirsPsr4 = ComposerStaticInitFiles::$prefixDirsPsr4; |
| 89 | 89 | $loader->classMap = ComposerStaticInitFiles::$classMap; |
@@ -6,62 +6,62 @@ |
||
| 6 | 6 | $baseDir = $vendorDir; |
| 7 | 7 | |
| 8 | 8 | return array( |
| 9 | - 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php', |
|
| 10 | - 'OCA\\Files\\Activity\\FavoriteProvider' => $baseDir . '/../lib/Activity/FavoriteProvider.php', |
|
| 11 | - 'OCA\\Files\\Activity\\Filter\\Favorites' => $baseDir . '/../lib/Activity/Filter/Favorites.php', |
|
| 12 | - 'OCA\\Files\\Activity\\Filter\\FileChanges' => $baseDir . '/../lib/Activity/Filter/FileChanges.php', |
|
| 13 | - 'OCA\\Files\\Activity\\Helper' => $baseDir . '/../lib/Activity/Helper.php', |
|
| 14 | - 'OCA\\Files\\Activity\\Provider' => $baseDir . '/../lib/Activity/Provider.php', |
|
| 15 | - 'OCA\\Files\\Activity\\Settings\\FavoriteAction' => $baseDir . '/../lib/Activity/Settings/FavoriteAction.php', |
|
| 16 | - 'OCA\\Files\\Activity\\Settings\\FileActivitySettings' => $baseDir . '/../lib/Activity/Settings/FileActivitySettings.php', |
|
| 17 | - 'OCA\\Files\\Activity\\Settings\\FileChanged' => $baseDir . '/../lib/Activity/Settings/FileChanged.php', |
|
| 18 | - 'OCA\\Files\\Activity\\Settings\\FileFavoriteChanged' => $baseDir . '/../lib/Activity/Settings/FileFavoriteChanged.php', |
|
| 19 | - 'OCA\\Files\\App' => $baseDir . '/../lib/App.php', |
|
| 20 | - 'OCA\\Files\\AppInfo\\Application' => $baseDir . '/../lib/AppInfo/Application.php', |
|
| 21 | - 'OCA\\Files\\BackgroundJob\\CleanupDirectEditingTokens' => $baseDir . '/../lib/BackgroundJob/CleanupDirectEditingTokens.php', |
|
| 22 | - 'OCA\\Files\\BackgroundJob\\CleanupFileLocks' => $baseDir . '/../lib/BackgroundJob/CleanupFileLocks.php', |
|
| 23 | - 'OCA\\Files\\BackgroundJob\\DeleteExpiredOpenLocalEditor' => $baseDir . '/../lib/BackgroundJob/DeleteExpiredOpenLocalEditor.php', |
|
| 24 | - 'OCA\\Files\\BackgroundJob\\DeleteOrphanedItems' => $baseDir . '/../lib/BackgroundJob/DeleteOrphanedItems.php', |
|
| 25 | - 'OCA\\Files\\BackgroundJob\\ScanFiles' => $baseDir . '/../lib/BackgroundJob/ScanFiles.php', |
|
| 26 | - 'OCA\\Files\\BackgroundJob\\TransferOwnership' => $baseDir . '/../lib/BackgroundJob/TransferOwnership.php', |
|
| 27 | - 'OCA\\Files\\Capabilities' => $baseDir . '/../lib/Capabilities.php', |
|
| 28 | - 'OCA\\Files\\Collaboration\\Resources\\Listener' => $baseDir . '/../lib/Collaboration/Resources/Listener.php', |
|
| 29 | - 'OCA\\Files\\Collaboration\\Resources\\ResourceProvider' => $baseDir . '/../lib/Collaboration/Resources/ResourceProvider.php', |
|
| 30 | - 'OCA\\Files\\Command\\Delete' => $baseDir . '/../lib/Command/Delete.php', |
|
| 31 | - 'OCA\\Files\\Command\\DeleteOrphanedFiles' => $baseDir . '/../lib/Command/DeleteOrphanedFiles.php', |
|
| 32 | - 'OCA\\Files\\Command\\Get' => $baseDir . '/../lib/Command/Get.php', |
|
| 33 | - 'OCA\\Files\\Command\\Put' => $baseDir . '/../lib/Command/Put.php', |
|
| 34 | - 'OCA\\Files\\Command\\RepairTree' => $baseDir . '/../lib/Command/RepairTree.php', |
|
| 35 | - 'OCA\\Files\\Command\\Scan' => $baseDir . '/../lib/Command/Scan.php', |
|
| 36 | - 'OCA\\Files\\Command\\ScanAppData' => $baseDir . '/../lib/Command/ScanAppData.php', |
|
| 37 | - 'OCA\\Files\\Command\\TransferOwnership' => $baseDir . '/../lib/Command/TransferOwnership.php', |
|
| 38 | - 'OCA\\Files\\Controller\\ApiController' => $baseDir . '/../lib/Controller/ApiController.php', |
|
| 39 | - 'OCA\\Files\\Controller\\DirectEditingController' => $baseDir . '/../lib/Controller/DirectEditingController.php', |
|
| 40 | - 'OCA\\Files\\Controller\\DirectEditingViewController' => $baseDir . '/../lib/Controller/DirectEditingViewController.php', |
|
| 41 | - 'OCA\\Files\\Controller\\OpenLocalEditorController' => $baseDir . '/../lib/Controller/OpenLocalEditorController.php', |
|
| 42 | - 'OCA\\Files\\Controller\\TemplateController' => $baseDir . '/../lib/Controller/TemplateController.php', |
|
| 43 | - 'OCA\\Files\\Controller\\TransferOwnershipController' => $baseDir . '/../lib/Controller/TransferOwnershipController.php', |
|
| 44 | - 'OCA\\Files\\Controller\\ViewController' => $baseDir . '/../lib/Controller/ViewController.php', |
|
| 45 | - 'OCA\\Files\\Db\\OpenLocalEditor' => $baseDir . '/../lib/Db/OpenLocalEditor.php', |
|
| 46 | - 'OCA\\Files\\Db\\OpenLocalEditorMapper' => $baseDir . '/../lib/Db/OpenLocalEditorMapper.php', |
|
| 47 | - 'OCA\\Files\\Db\\TransferOwnership' => $baseDir . '/../lib/Db/TransferOwnership.php', |
|
| 48 | - 'OCA\\Files\\Db\\TransferOwnershipMapper' => $baseDir . '/../lib/Db/TransferOwnershipMapper.php', |
|
| 49 | - 'OCA\\Files\\DirectEditingCapabilities' => $baseDir . '/../lib/DirectEditingCapabilities.php', |
|
| 50 | - 'OCA\\Files\\Event\\LoadAdditionalScriptsEvent' => $baseDir . '/../lib/Event/LoadAdditionalScriptsEvent.php', |
|
| 51 | - 'OCA\\Files\\Event\\LoadSidebar' => $baseDir . '/../lib/Event/LoadSidebar.php', |
|
| 52 | - 'OCA\\Files\\Exception\\TransferOwnershipException' => $baseDir . '/../lib/Exception/TransferOwnershipException.php', |
|
| 53 | - 'OCA\\Files\\Helper' => $baseDir . '/../lib/Helper.php', |
|
| 54 | - 'OCA\\Files\\Listener\\LegacyLoadAdditionalScriptsAdapter' => $baseDir . '/../lib/Listener/LegacyLoadAdditionalScriptsAdapter.php', |
|
| 55 | - 'OCA\\Files\\Listener\\LoadSidebarListener' => $baseDir . '/../lib/Listener/LoadSidebarListener.php', |
|
| 56 | - 'OCA\\Files\\Listener\\RenderReferenceEventListener' => $baseDir . '/../lib/Listener/RenderReferenceEventListener.php', |
|
| 57 | - 'OCA\\Files\\Migration\\Version11301Date20191205150729' => $baseDir . '/../lib/Migration/Version11301Date20191205150729.php', |
|
| 58 | - 'OCA\\Files\\Migration\\Version12101Date20221011153334' => $baseDir . '/../lib/Migration/Version12101Date20221011153334.php', |
|
| 59 | - 'OCA\\Files\\Notification\\Notifier' => $baseDir . '/../lib/Notification/Notifier.php', |
|
| 60 | - 'OCA\\Files\\Search\\FilesSearchProvider' => $baseDir . '/../lib/Search/FilesSearchProvider.php', |
|
| 61 | - 'OCA\\Files\\Service\\DirectEditingService' => $baseDir . '/../lib/Service/DirectEditingService.php', |
|
| 62 | - 'OCA\\Files\\Service\\OwnershipTransferService' => $baseDir . '/../lib/Service/OwnershipTransferService.php', |
|
| 63 | - 'OCA\\Files\\Service\\TagService' => $baseDir . '/../lib/Service/TagService.php', |
|
| 64 | - 'OCA\\Files\\Service\\UserConfig' => $baseDir . '/../lib/Service/UserConfig.php', |
|
| 65 | - 'OCA\\Files\\Service\\ViewConfig' => $baseDir . '/../lib/Service/ViewConfig.php', |
|
| 66 | - 'OCA\\Files\\Settings\\PersonalSettings' => $baseDir . '/../lib/Settings/PersonalSettings.php', |
|
| 9 | + 'Composer\\InstalledVersions' => $vendorDir.'/composer/InstalledVersions.php', |
|
| 10 | + 'OCA\\Files\\Activity\\FavoriteProvider' => $baseDir.'/../lib/Activity/FavoriteProvider.php', |
|
| 11 | + 'OCA\\Files\\Activity\\Filter\\Favorites' => $baseDir.'/../lib/Activity/Filter/Favorites.php', |
|
| 12 | + 'OCA\\Files\\Activity\\Filter\\FileChanges' => $baseDir.'/../lib/Activity/Filter/FileChanges.php', |
|
| 13 | + 'OCA\\Files\\Activity\\Helper' => $baseDir.'/../lib/Activity/Helper.php', |
|
| 14 | + 'OCA\\Files\\Activity\\Provider' => $baseDir.'/../lib/Activity/Provider.php', |
|
| 15 | + 'OCA\\Files\\Activity\\Settings\\FavoriteAction' => $baseDir.'/../lib/Activity/Settings/FavoriteAction.php', |
|
| 16 | + 'OCA\\Files\\Activity\\Settings\\FileActivitySettings' => $baseDir.'/../lib/Activity/Settings/FileActivitySettings.php', |
|
| 17 | + 'OCA\\Files\\Activity\\Settings\\FileChanged' => $baseDir.'/../lib/Activity/Settings/FileChanged.php', |
|
| 18 | + 'OCA\\Files\\Activity\\Settings\\FileFavoriteChanged' => $baseDir.'/../lib/Activity/Settings/FileFavoriteChanged.php', |
|
| 19 | + 'OCA\\Files\\App' => $baseDir.'/../lib/App.php', |
|
| 20 | + 'OCA\\Files\\AppInfo\\Application' => $baseDir.'/../lib/AppInfo/Application.php', |
|
| 21 | + 'OCA\\Files\\BackgroundJob\\CleanupDirectEditingTokens' => $baseDir.'/../lib/BackgroundJob/CleanupDirectEditingTokens.php', |
|
| 22 | + 'OCA\\Files\\BackgroundJob\\CleanupFileLocks' => $baseDir.'/../lib/BackgroundJob/CleanupFileLocks.php', |
|
| 23 | + 'OCA\\Files\\BackgroundJob\\DeleteExpiredOpenLocalEditor' => $baseDir.'/../lib/BackgroundJob/DeleteExpiredOpenLocalEditor.php', |
|
| 24 | + 'OCA\\Files\\BackgroundJob\\DeleteOrphanedItems' => $baseDir.'/../lib/BackgroundJob/DeleteOrphanedItems.php', |
|
| 25 | + 'OCA\\Files\\BackgroundJob\\ScanFiles' => $baseDir.'/../lib/BackgroundJob/ScanFiles.php', |
|
| 26 | + 'OCA\\Files\\BackgroundJob\\TransferOwnership' => $baseDir.'/../lib/BackgroundJob/TransferOwnership.php', |
|
| 27 | + 'OCA\\Files\\Capabilities' => $baseDir.'/../lib/Capabilities.php', |
|
| 28 | + 'OCA\\Files\\Collaboration\\Resources\\Listener' => $baseDir.'/../lib/Collaboration/Resources/Listener.php', |
|
| 29 | + 'OCA\\Files\\Collaboration\\Resources\\ResourceProvider' => $baseDir.'/../lib/Collaboration/Resources/ResourceProvider.php', |
|
| 30 | + 'OCA\\Files\\Command\\Delete' => $baseDir.'/../lib/Command/Delete.php', |
|
| 31 | + 'OCA\\Files\\Command\\DeleteOrphanedFiles' => $baseDir.'/../lib/Command/DeleteOrphanedFiles.php', |
|
| 32 | + 'OCA\\Files\\Command\\Get' => $baseDir.'/../lib/Command/Get.php', |
|
| 33 | + 'OCA\\Files\\Command\\Put' => $baseDir.'/../lib/Command/Put.php', |
|
| 34 | + 'OCA\\Files\\Command\\RepairTree' => $baseDir.'/../lib/Command/RepairTree.php', |
|
| 35 | + 'OCA\\Files\\Command\\Scan' => $baseDir.'/../lib/Command/Scan.php', |
|
| 36 | + 'OCA\\Files\\Command\\ScanAppData' => $baseDir.'/../lib/Command/ScanAppData.php', |
|
| 37 | + 'OCA\\Files\\Command\\TransferOwnership' => $baseDir.'/../lib/Command/TransferOwnership.php', |
|
| 38 | + 'OCA\\Files\\Controller\\ApiController' => $baseDir.'/../lib/Controller/ApiController.php', |
|
| 39 | + 'OCA\\Files\\Controller\\DirectEditingController' => $baseDir.'/../lib/Controller/DirectEditingController.php', |
|
| 40 | + 'OCA\\Files\\Controller\\DirectEditingViewController' => $baseDir.'/../lib/Controller/DirectEditingViewController.php', |
|
| 41 | + 'OCA\\Files\\Controller\\OpenLocalEditorController' => $baseDir.'/../lib/Controller/OpenLocalEditorController.php', |
|
| 42 | + 'OCA\\Files\\Controller\\TemplateController' => $baseDir.'/../lib/Controller/TemplateController.php', |
|
| 43 | + 'OCA\\Files\\Controller\\TransferOwnershipController' => $baseDir.'/../lib/Controller/TransferOwnershipController.php', |
|
| 44 | + 'OCA\\Files\\Controller\\ViewController' => $baseDir.'/../lib/Controller/ViewController.php', |
|
| 45 | + 'OCA\\Files\\Db\\OpenLocalEditor' => $baseDir.'/../lib/Db/OpenLocalEditor.php', |
|
| 46 | + 'OCA\\Files\\Db\\OpenLocalEditorMapper' => $baseDir.'/../lib/Db/OpenLocalEditorMapper.php', |
|
| 47 | + 'OCA\\Files\\Db\\TransferOwnership' => $baseDir.'/../lib/Db/TransferOwnership.php', |
|
| 48 | + 'OCA\\Files\\Db\\TransferOwnershipMapper' => $baseDir.'/../lib/Db/TransferOwnershipMapper.php', |
|
| 49 | + 'OCA\\Files\\DirectEditingCapabilities' => $baseDir.'/../lib/DirectEditingCapabilities.php', |
|
| 50 | + 'OCA\\Files\\Event\\LoadAdditionalScriptsEvent' => $baseDir.'/../lib/Event/LoadAdditionalScriptsEvent.php', |
|
| 51 | + 'OCA\\Files\\Event\\LoadSidebar' => $baseDir.'/../lib/Event/LoadSidebar.php', |
|
| 52 | + 'OCA\\Files\\Exception\\TransferOwnershipException' => $baseDir.'/../lib/Exception/TransferOwnershipException.php', |
|
| 53 | + 'OCA\\Files\\Helper' => $baseDir.'/../lib/Helper.php', |
|
| 54 | + 'OCA\\Files\\Listener\\LegacyLoadAdditionalScriptsAdapter' => $baseDir.'/../lib/Listener/LegacyLoadAdditionalScriptsAdapter.php', |
|
| 55 | + 'OCA\\Files\\Listener\\LoadSidebarListener' => $baseDir.'/../lib/Listener/LoadSidebarListener.php', |
|
| 56 | + 'OCA\\Files\\Listener\\RenderReferenceEventListener' => $baseDir.'/../lib/Listener/RenderReferenceEventListener.php', |
|
| 57 | + 'OCA\\Files\\Migration\\Version11301Date20191205150729' => $baseDir.'/../lib/Migration/Version11301Date20191205150729.php', |
|
| 58 | + 'OCA\\Files\\Migration\\Version12101Date20221011153334' => $baseDir.'/../lib/Migration/Version12101Date20221011153334.php', |
|
| 59 | + 'OCA\\Files\\Notification\\Notifier' => $baseDir.'/../lib/Notification/Notifier.php', |
|
| 60 | + 'OCA\\Files\\Search\\FilesSearchProvider' => $baseDir.'/../lib/Search/FilesSearchProvider.php', |
|
| 61 | + 'OCA\\Files\\Service\\DirectEditingService' => $baseDir.'/../lib/Service/DirectEditingService.php', |
|
| 62 | + 'OCA\\Files\\Service\\OwnershipTransferService' => $baseDir.'/../lib/Service/OwnershipTransferService.php', |
|
| 63 | + 'OCA\\Files\\Service\\TagService' => $baseDir.'/../lib/Service/TagService.php', |
|
| 64 | + 'OCA\\Files\\Service\\UserConfig' => $baseDir.'/../lib/Service/UserConfig.php', |
|
| 65 | + 'OCA\\Files\\Service\\ViewConfig' => $baseDir.'/../lib/Service/ViewConfig.php', |
|
| 66 | + 'OCA\\Files\\Settings\\PersonalSettings' => $baseDir.'/../lib/Settings/PersonalSettings.php', |
|
| 67 | 67 | ); |