| 1 |  |  | <?php | 
            
                                                                                                            
                            
            
                                    
            
            
                | 2 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 3 |  |  | declare(strict_types=1); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 4 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 5 |  |  | namespace AOE\Crawler\Backend\RequestForm; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 6 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 7 |  |  | /* | 
            
                                                                                                            
                            
            
                                    
            
            
                | 8 |  |  |  * (c) 2020 AOE GmbH <[email protected]> | 
            
                                                                                                            
                            
            
                                    
            
            
                | 9 |  |  |  * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 10 |  |  |  * This file is part of the TYPO3 Crawler Extension. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 11 |  |  |  * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 12 |  |  |  * It is free software; you can redistribute it and/or modify it under | 
            
                                                                                                            
                            
            
                                    
            
            
                | 13 |  |  |  * the terms of the GNU General Public License, either version 2 | 
            
                                                                                                            
                            
            
                                    
            
            
                | 14 |  |  |  * of the License, or any later version. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 15 |  |  |  * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 16 |  |  |  * For the full copyright and license information, please read the | 
            
                                                                                                            
                            
            
                                    
            
            
                | 17 |  |  |  * LICENSE.txt file that was distributed with this source code. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 18 |  |  |  * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 19 |  |  |  * The TYPO3 project - inspiring people to share! | 
            
                                                                                                            
                            
            
                                    
            
            
                | 20 |  |  |  */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 21 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 22 |  |  | use AOE\Crawler\Controller\CrawlerController; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 23 |  |  | use AOE\Crawler\Domain\Model\Reason; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 24 |  |  | use AOE\Crawler\Utility\MessageUtility; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 25 |  |  | use AOE\Crawler\Utility\SignalSlotUtility; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 26 |  |  | use TYPO3\CMS\Core\Utility\GeneralUtility; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 27 |  |  | use TYPO3\CMS\Fluid\View\StandaloneView; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 28 |  |  | use TYPO3\CMS\Info\Controller\InfoModuleController; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 29 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 30 |  |  | final class StartRequestForm extends AbstractRequestForm implements RequestFormInterface | 
            
                                                                                                            
                            
            
                                    
            
            
                | 31 |  |  | { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 32 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 33 |  |  |      * @var StandaloneView | 
            
                                                                                                            
                            
            
                                    
            
            
                | 34 |  |  |      */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 35 |  |  |     private $view; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 36 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 37 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 38 |  |  |      * @var InfoModuleController | 
            
                                                                                                            
                            
            
                                    
            
            
                | 39 |  |  |      */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 40 |  |  |     private $infoModuleController; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 41 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 42 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 43 |  |  |      * @var int | 
            
                                                                                                            
                            
            
                                    
            
            
                | 44 |  |  |      */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 45 |  |  |     private $reqMinute = 1000; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 46 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 47 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 48 |  |  |      * @var array holds the selection of configuration from the configuration selector box | 
            
                                                                                                            
                            
            
                                    
            
            
                | 49 |  |  |      */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 50 |  |  |     private $incomingConfigurationSelection = []; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 51 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 52 | 4 |  |     public function __construct(StandaloneView $view, InfoModuleController $infoModuleController, array $extensionSettings) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 53 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 54 | 4 |  |         $this->view = $view; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 55 | 4 |  |         $this->infoModuleController = $infoModuleController; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 56 | 4 |  |         $this->extensionSettings = $extensionSettings; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 57 | 4 |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 58 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 59 | 2 |  |     public function render($id, string $elementName, array $menuItems): string | 
            
                                                                                                            
                            
            
                                    
            
            
                | 60 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 61 | 2 |  |         return $this->showCrawlerInformationAction($id); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 62 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 63 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 64 |  |  |     /******************************* | 
            
                                                                                                            
                            
            
                                    
            
            
                | 65 |  |  |      * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 66 |  |  |      * Generate URLs for crawling: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 67 |  |  |      * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 68 |  |  |      ******************************/ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 69 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 70 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 71 |  |  |      * Show a list of URLs to be crawled for each page | 
            
                                                                                                            
                            
            
                                    
            
            
                | 72 |  |  |      */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 73 | 2 |  |     private function showCrawlerInformationAction(int $pageId): string | 
            
                                                                                                            
                            
            
                                    
            
            
                | 74 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 75 | 2 |  |         if (empty($pageId)) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 76 |  |  |             $this->isErrorDetected = true; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 77 |  |  |             MessageUtility::addErrorMessage($this->getLanguageService()->sL('LLL:EXT:crawler/Resources/Private/Language/locallang.xlf:labels.noPageSelected')); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 78 |  |  |             return ''; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 79 |  |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 80 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 81 | 2 |  |         $this->view->setTemplate('ShowCrawlerInformation'); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 82 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 83 | 2 |  |         $crawlParameter = GeneralUtility::_GP('_crawl'); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 84 | 2 |  |         $downloadParameter = GeneralUtility::_GP('_download'); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 85 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 86 | 2 |  |         $submitCrawlUrls = isset($crawlParameter); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 87 | 2 |  |         $downloadCrawlUrls = isset($downloadParameter); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 88 | 2 |  |         $this->makeCrawlerProcessableChecks($this->extensionSettings); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 89 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 90 | 2 |  |         $scheduledTime = $this->getScheduledTime((string) GeneralUtility::_GP('tstamp')); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 91 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 92 | 2 |  |         $this->incomingConfigurationSelection = GeneralUtility::_GP('configurationSelection'); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 93 | 2 |  |         $this->incomingConfigurationSelection = is_array($this->incomingConfigurationSelection) ? $this->incomingConfigurationSelection : []; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 94 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 95 | 2 |  |         $this->crawlerController = GeneralUtility::makeInstance(CrawlerController::class); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 96 | 2 |  |         $this->crawlerController->setID = GeneralUtility::md5int(microtime()); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 97 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 98 | 2 |  |         $code = ''; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 99 | 2 |  |         $noConfigurationSelected = empty($this->incomingConfigurationSelection) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 100 | 2 |  |             || (count($this->incomingConfigurationSelection) === 1 && empty($this->incomingConfigurationSelection[0])); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 101 | 2 |  |         if ($noConfigurationSelected) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 102 | 2 |  |             MessageUtility::addWarningMessage($this->getLanguageService()->sL('LLL:EXT:crawler/Resources/Private/Language/locallang.xlf:labels.noConfigSelected')); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 103 |  |  |         } else { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 104 |  |  |             if ($submitCrawlUrls) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 105 |  |  |                 $reason = new Reason(); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 106 |  |  |                 $reason->setReason(Reason::REASON_GUI_SUBMIT); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 107 |  |  |                 $reason->setDetailText('The user ' . $GLOBALS['BE_USER']->user['username'] . ' added pages to the crawler queue manually'); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 108 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 109 |  |  |                 $signalPayload = ['reason' => $reason]; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 110 |  |  |                 SignalSlotUtility::emitSignal( | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 111 |  |  |                     self::class, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 112 |  |  |                     SignalSlotUtility::SIGNAL_INVOKE_QUEUE_CHANGE, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 113 |  |  |                     $signalPayload | 
            
                                                                                                            
                            
            
                                    
            
            
                | 114 |  |  |                 ); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 115 |  |  |             } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 116 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 117 |  |  |             $code = $this->crawlerController->getPageTreeAndUrls( | 
            
                                                                                                            
                            
            
                                    
            
            
                | 118 |  |  |                 $pageId, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 119 |  |  |                 $this->infoModuleController->MOD_SETTINGS['depth'], | 
            
                                                                                                            
                            
            
                                    
            
            
                | 120 |  |  |                 $scheduledTime, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 121 |  |  |                 $this->reqMinute, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 122 |  |  |                 $submitCrawlUrls, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 123 |  |  |                 $downloadCrawlUrls, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 124 |  |  |                 // Do not filter any processing instructions | 
            
                                                                                                            
                            
            
                                    
            
            
                | 125 |  |  |                 [], | 
            
                                                                                                            
                            
            
                                    
            
            
                | 126 |  |  |                 $this->incomingConfigurationSelection | 
            
                                                                                                            
                            
            
                                    
            
            
                | 127 |  |  |             ); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 128 |  |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 129 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 130 | 2 |  |         $downloadUrls = $this->crawlerController->downloadUrls; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 131 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 132 | 2 |  |         $duplicateTrack = $this->crawlerController->duplicateTrack; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 133 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 134 | 2 |  |         $this->view->assign('noConfigurationSelected', $noConfigurationSelected); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 135 | 2 |  |         $this->view->assign('submitCrawlUrls', $submitCrawlUrls); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 136 | 2 |  |         $this->view->assign('amountOfUrls', count($duplicateTrack)); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 137 | 2 |  |         $this->view->assign('selectors', $this->generateConfigurationSelectors($pageId)); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 138 | 2 |  |         $this->view->assign('code', $code); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 139 | 2 |  |         $this->view->assign('displayActions', 0); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 140 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 141 |  |  |         // Download Urls to crawl: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 142 | 2 |  |         if ($downloadCrawlUrls) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 143 |  |  |             // Creating output header: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 144 |  |  |             header('Content-Type: application/octet-stream'); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 145 |  |  |             header('Content-Disposition: attachment; filename=CrawlerUrls.txt'); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 146 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 147 |  |  |             // Printing the content of the CSV lines: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 148 |  |  |             echo implode(chr(13) . chr(10), $downloadUrls); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 149 |  |  |             exit; | 
                            
                    |  |  |  | 
                                                                                        
                                                                                            
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 150 |  |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 151 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 152 | 2 |  |         return $this->view->render(); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 153 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 154 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 155 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 156 |  |  |      * Generates the configuration selectors for compiling URLs: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 157 |  |  |      */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 158 | 2 |  |     private function generateConfigurationSelectors(int $pageId): array | 
            
                                                                                                            
                            
            
                                    
            
            
                | 159 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 160 | 2 |  |         $selectors = []; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 161 | 2 |  |         $selectors['depth'] = $this->selectorBox( | 
            
                                                                                                            
                            
            
                                    
            
            
                | 162 |  |  |             [ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 163 | 2 |  |                 0 => $this->getLanguageService()->sL('LLL:EXT:core/Resources/Private/Language/locallang_core.xlf:labels.depth_0'), | 
            
                                                                                                            
                            
            
                                    
            
            
                | 164 | 2 |  |                 1 => $this->getLanguageService()->sL('LLL:EXT:core/Resources/Private/Language/locallang_core.xlf:labels.depth_1'), | 
            
                                                                                                            
                            
            
                                    
            
            
                | 165 | 2 |  |                 2 => $this->getLanguageService()->sL('LLL:EXT:core/Resources/Private/Language/locallang_core.xlf:labels.depth_2'), | 
            
                                                                                                            
                            
            
                                    
            
            
                | 166 | 2 |  |                 3 => $this->getLanguageService()->sL('LLL:EXT:core/Resources/Private/Language/locallang_core.xlf:labels.depth_3'), | 
            
                                                                                                            
                            
            
                                    
            
            
                | 167 | 2 |  |                 4 => $this->getLanguageService()->sL('LLL:EXT:core/Resources/Private/Language/locallang_core.xlf:labels.depth_4'), | 
            
                                                                                                            
                            
            
                                    
            
            
                | 168 | 2 |  |                 99 => $this->getLanguageService()->sL('LLL:EXT:core/Resources/Private/Language/locallang_core.xlf:labels.depth_infi'), | 
            
                                                                                                            
                            
            
                                    
            
            
                | 169 |  |  |             ], | 
            
                                                                                                            
                            
            
                                    
            
            
                | 170 | 2 |  |             'SET[depth]', | 
            
                                                                                                            
                            
            
                                    
            
            
                | 171 | 2 |  |             $this->infoModuleController->MOD_SETTINGS['depth'], | 
            
                                                                                                            
                            
            
                                    
            
            
                | 172 | 2 |  |             false | 
            
                                                                                                            
                            
            
                                    
            
            
                | 173 |  |  |         ); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 174 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 175 |  |  |         // Configurations | 
            
                                                                                                            
                            
            
                                    
            
            
                | 176 | 2 |  |         $availableConfigurations = $this->crawlerController->getConfigurationsForBranch($pageId, (int) $this->infoModuleController->MOD_SETTINGS['depth'] ?: 0); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 177 | 2 |  |         $selectors['configurations'] = $this->selectorBox( | 
            
                                                                                                            
                            
            
                                    
            
            
                | 178 | 2 |  |             empty($availableConfigurations) ? [] : array_combine($availableConfigurations, $availableConfigurations), | 
            
                                                                                                            
                            
            
                                    
            
            
                | 179 | 2 |  |             'configurationSelection', | 
            
                                                                                                            
                            
            
                                    
            
            
                | 180 | 2 |  |             $this->incomingConfigurationSelection, | 
            
                                                                                                            
                            
            
                                    
            
            
                | 181 | 2 |  |             true | 
            
                                                                                                            
                            
            
                                    
            
            
                | 182 |  |  |         ); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 183 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 184 |  |  |         // Scheduled time: | 
            
                                                                                                            
                            
            
                                    
            
            
                | 185 | 2 |  |         $selectors['scheduled'] = $this->selectorBox( | 
            
                                                                                                            
                            
            
                                    
            
            
                | 186 |  |  |             [ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 187 | 2 |  |                 'now' => $this->getLanguageService()->sL('LLL:EXT:crawler/Resources/Private/Language/locallang.xlf:labels.time.now'), | 
            
                                                                                                            
                            
            
                                    
            
            
                | 188 | 2 |  |                 'midnight' => $this->getLanguageService()->sL('LLL:EXT:crawler/Resources/Private/Language/locallang.xlf:labels.time.midnight'), | 
            
                                                                                                            
                            
            
                                    
            
            
                | 189 | 2 |  |                 '04:00' => $this->getLanguageService()->sL('LLL:EXT:crawler/Resources/Private/Language/locallang.xlf:labels.time.4am'), | 
            
                                                                                                            
                            
            
                                    
            
            
                | 190 |  |  |             ], | 
            
                                                                                                            
                            
            
                                    
            
            
                | 191 | 2 |  |             'tstamp', | 
            
                                                                                                            
                            
            
                                    
            
            
                | 192 | 2 |  |             GeneralUtility::_POST('tstamp'), | 
            
                                                                                                            
                            
            
                                    
            
            
                | 193 | 2 |  |             false | 
            
                                                                                                            
                            
            
                                    
            
            
                | 194 |  |  |         ); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 195 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 196 | 2 |  |         return $selectors; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 197 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 198 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 199 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 200 |  |  |      * Create selector box | 
            
                                                                                                            
                            
            
                                    
            
            
                | 201 |  |  |      * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 202 |  |  |      * @param array $optArray Options key(value) => label pairs | 
            
                                                                                                            
                            
            
                                    
            
            
                | 203 |  |  |      * @param string $name Selector box name | 
            
                                                                                                            
                            
            
                                    
            
            
                | 204 |  |  |      * @param string|array $value Selector box value (array for multiple...) | 
            
                                                                                                            
                            
            
                                    
            
            
                | 205 |  |  |      * @param boolean $multiple If set, will draw multiple box. | 
            
                                                                                                            
                            
            
                                    
            
            
                | 206 |  |  |      * | 
            
                                                                                                            
                            
            
                                    
            
            
                | 207 |  |  |      * @return string HTML select element | 
            
                                                                                                            
                            
            
                                    
            
            
                | 208 |  |  |      */ | 
            
                                                                                                            
                            
            
                                    
            
            
                | 209 | 2 |  |     private function selectorBox($optArray, $name, $value, bool $multiple): string | 
            
                                                                                                            
                            
            
                                    
            
            
                | 210 |  |  |     { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 211 | 2 |  |         if (! is_string($value) || ! is_array($value)) { | 
                            
                    |  |  |  | 
                                                                                        
                                                                                     | 
            
                                                                                                            
                            
            
                                    
            
            
                | 212 | 2 |  |             $value = ''; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 213 |  |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 214 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 215 | 2 |  |         $options = []; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 216 | 2 |  |         foreach ($optArray as $key => $val) { | 
            
                                                                                                            
                            
            
                                    
            
            
                | 217 | 2 |  |             $selected = (! $multiple && ! strcmp($value, (string) $key)) || ($multiple && in_array($key, (array) $value, true)); | 
            
                                                                                                            
                            
            
                                    
            
            
                | 218 |  |  |             $options[] = ' | 
            
                                                                                                            
                            
            
                                    
            
            
                | 219 | 2 |  |                 <option value="' . $key . '" ' . ($selected ? ' selected="selected"' : '') . '>' . htmlspecialchars($val, ENT_QUOTES | ENT_HTML5) . '</option>'; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 220 |  |  |         } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 221 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 222 | 2 |  |         return '<select class="form-control" name="' . htmlspecialchars($name . ($multiple ? '[]' : ''), ENT_QUOTES | ENT_HTML5) . '"' . ($multiple ? ' multiple' : '') . '>' . implode('', $options) . '</select>'; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 223 |  |  |     } | 
            
                                                                                                            
                            
            
                                    
            
            
                | 224 |  |  |  | 
            
                                                                                                            
                            
            
                                    
            
            
                | 225 |  |  |     /** | 
            
                                                                                                            
                            
            
                                    
            
            
                | 226 |  |  |      * @return int | 
            
                                                                                                            
                                                                
            
                                    
            
            
                | 227 |  |  |      */ | 
            
                                                                        
                            
            
                                    
            
            
                | 228 | 2 |  |     private function getScheduledTime(string $time) | 
            
                                                                        
                            
            
                                    
            
            
                | 229 |  |  |     { | 
            
                                                                        
                            
            
                                    
            
            
                | 230 | 2 |  |         switch ($time) { | 
            
                                                                        
                            
            
                                    
            
            
                | 231 | 2 |  |             case 'midnight': | 
            
                                                                        
                            
            
                                    
            
            
                | 232 |  |  |                 $scheduledTime = mktime(0, 0, 0); | 
            
                                                                        
                            
            
                                    
            
            
                | 233 |  |  |                 break; | 
            
                                                                        
                            
            
                                    
            
            
                | 234 | 2 |  |             case '04:00': | 
            
                                                                        
                            
            
                                    
            
            
                | 235 |  |  |                 $scheduledTime = mktime(0, 0, 0) + 4 * 3600; | 
            
                                                                        
                            
            
                                    
            
            
                | 236 |  |  |                 break; | 
            
                                                                        
                            
            
                                    
            
            
                | 237 | 2 |  |             case 'now': | 
            
                                                                        
                            
            
                                    
            
            
                | 238 |  |  |             default: | 
            
                                                                        
                            
            
                                    
            
            
                | 239 | 2 |  |                 $scheduledTime = time(); | 
            
                                                                        
                            
            
                                    
            
            
                | 240 | 2 |  |                 break; | 
            
                                                                        
                            
            
                                    
            
            
                | 241 |  |  |         } | 
            
                                                                        
                            
            
                                    
            
            
                | 242 | 2 |  |         return $scheduledTime; | 
            
                                                                                                            
                            
            
                                    
            
            
                | 243 |  |  |     } | 
            
                                                                                                            
                                                                
            
                                    
            
            
                | 244 |  |  | } | 
            
                                                        
            
                                    
            
            
                | 245 |  |  |  |