setDescription('BETA - Get all downloads report') ->addOption('type', null, InputOption::VALUE_REQUIRED, 'type of report downloads, if not defined or empty it is for all downloads') ->addOption('collection_id', 'c', InputOption::VALUE_REQUIRED| InputOption::VALUE_IS_ARRAY, 'Distant collection ID in the databox, get all available collection if not defined') ->addOption('permalink', 'p', InputOption::VALUE_REQUIRED, 'the subdefinition name to retrieve permalink if exist, available only for type record and for all downloads type ""') ->setHelp( "eg: bin/report downloads:all --databox_id 2 --email 'noreply@mydomaine.com' --dmin '2022-12-01' --dmax '2023-01-01' --type 'user' \n" . "\type of report\n" . "- '' or not defined all downloads\n" . "- 'user' downloads by user\n" . "- 'record' downloads by record\n" ); } /** * @inheritDoc */ protected function getReport(InputInterface $input, OutputInterface $output) { $type = $input->getOption('type'); $collectionIds = $input->getOption('collection_id'); $permalink = $input->getOption('permalink'); if (!empty($type) && !in_array($type, self::TYPES)) { $output->writeln("wrong '--type' option (--help for available value)"); return 1; } if (!empty($permalink) && $type == 'user') { $output->writeln("--permalink is not used with type=user "); return 1; } $databox = $this->findDbOr404($this->sbasId); $collIds = []; // treat coollection Id to send to the sql request // if empty get all databox active collection if (empty($collectionIds)) { foreach ($databox->get_collections() as $collection) { $collIds[] = $databox->get_connection()->quote($collection->get_coll_id()); } } else { foreach ($collectionIds as $colId) { $collIds[] = $databox->get_connection()->quote($colId); } } return (new ReportActions( $databox, [ 'dmin' => $this->dmin, 'dmax' => $this->dmax, 'group' => $type, 'anonymize' => $this->container['conf']->get(['registry', 'modules', 'anonymous-report']) ] )) ->setAppKey($this->container['conf']->get(['main', 'key'])) ->setCollIds($collIds) ->setPermalink($permalink) ->setAsDownloadReport(true) ; } }