@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | final public const CITATION_LIMIT = 150; |
| 48 | 48 | final public const DELAY_BOTFLAG_SECONDS = 120; |
| 49 | 49 | final public const DELAY_NO_BOTFLAG_SECONDS = 120; |
| 50 | - final public const ERROR_MSG_TEMPLATE = __DIR__ . '/templates/message_errors.wiki'; |
|
| 50 | + final public const ERROR_MSG_TEMPLATE = __DIR__.'/templates/message_errors.wiki'; |
|
| 51 | 51 | protected const ALWAYS_NO_BOTFLAG_ON_BA = true; |
| 52 | 52 | protected const ALWAYS_NO_BOTFLAG_ON_ADQ = true; |
| 53 | 53 | |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | { |
| 95 | 95 | while (true) { |
| 96 | 96 | echo "\n-------------------------------------\n\n"; |
| 97 | - echo date("Y-m-d H:i:s") . " "; |
|
| 97 | + echo date("Y-m-d H:i:s")." "; |
|
| 98 | 98 | $this->log->info($this->memory->getMemory(true)); |
| 99 | 99 | $this->pageProcess(); |
| 100 | 100 | sleep(2); // précaution boucle infinie |
@@ -126,7 +126,7 @@ discard block |
||
| 126 | 126 | try { |
| 127 | 127 | $this->wikiPageAction = ServiceFactory::wikiPageAction($this->pageWorkStatus->getTitle()); // , true ? |
| 128 | 128 | } catch (Exception) { |
| 129 | - $this->log->warning("*** WikiPageAction error : " . $this->pageWorkStatus->getTitle() . " \n"); |
|
| 129 | + $this->log->warning("*** WikiPageAction error : ".$this->pageWorkStatus->getTitle()." \n"); |
|
| 130 | 130 | sleep(20); |
| 131 | 131 | |
| 132 | 132 | return false; |
@@ -162,7 +162,7 @@ discard block |
||
| 162 | 162 | |
| 163 | 163 | protected function printTitle(string $title): void |
| 164 | 164 | { |
| 165 | - echo Color::BG_CYAN . $title . Color::NORMAL . " \n"; |
|
| 165 | + echo Color::BG_CYAN.$title.Color::NORMAL." \n"; |
|
| 166 | 166 | } |
| 167 | 167 | |
| 168 | 168 | protected function checkArticleLabels($title): void |
@@ -240,10 +240,10 @@ discard block |
||
| 240 | 240 | |
| 241 | 241 | protected function printDebug(array $data) |
| 242 | 242 | { |
| 243 | - $this->log->debug('origin: ' . $data['raw']); |
|
| 244 | - $this->log->debug('completed: ' . $data['opti']); |
|
| 245 | - $this->log->debug('modifs: ' . $data['modifs']); |
|
| 246 | - $this->log->debug('version: ' . $data['version']); |
|
| 243 | + $this->log->debug('origin: '.$data['raw']); |
|
| 244 | + $this->log->debug('completed: '.$data['opti']); |
|
| 245 | + $this->log->debug('modifs: '.$data['modifs']); |
|
| 246 | + $this->log->debug('version: '.$data['version']); |
|
| 247 | 247 | } |
| 248 | 248 | |
| 249 | 249 | protected function editPage(): bool |
@@ -263,7 +263,7 @@ discard block |
||
| 263 | 263 | $this->log->alert("*** Invalid CSRF token \n"); |
| 264 | 264 | throw new Exception('Invalid CSRF token', $e->getCode(), $e); |
| 265 | 265 | } else { |
| 266 | - $this->log->warning('Exception in editPage() ' . $e->getMessage()); |
|
| 266 | + $this->log->warning('Exception in editPage() '.$e->getMessage()); |
|
| 267 | 267 | sleep(10); |
| 268 | 268 | |
| 269 | 269 | return false; |
@@ -285,16 +285,16 @@ discard block |
||
| 285 | 285 | $this->sendOuvrageErrorsOnTalkPage($pageOuvrageCollection, $this->log); |
| 286 | 286 | } |
| 287 | 287 | } catch (Throwable $e) { |
| 288 | - $this->log->warning('Exception in editPage() ' . $e->getMessage()); |
|
| 288 | + $this->log->warning('Exception in editPage() '.$e->getMessage()); |
|
| 289 | 289 | unset($e); |
| 290 | 290 | } |
| 291 | 291 | |
| 292 | 292 | if (!$this->pageWorkStatus->botFlag) { |
| 293 | - $this->log->debug("sleep " . self::DELAY_NO_BOTFLAG_SECONDS); |
|
| 293 | + $this->log->debug("sleep ".self::DELAY_NO_BOTFLAG_SECONDS); |
|
| 294 | 294 | sleep(self::DELAY_NO_BOTFLAG_SECONDS); |
| 295 | 295 | } |
| 296 | 296 | if ($this->pageWorkStatus->botFlag) { |
| 297 | - $this->log->debug("sleep " . self::DELAY_BOTFLAG_SECONDS); |
|
| 297 | + $this->log->debug("sleep ".self::DELAY_BOTFLAG_SECONDS); |
|
| 298 | 298 | sleep(self::DELAY_BOTFLAG_SECONDS); |
| 299 | 299 | } |
| 300 | 300 | } |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | use Codedungeon\PHPCliColors\Color; |
| 20 | 20 | use Mediawiki\DataModel\EditInfo; |
| 21 | 21 | |
| 22 | -include __DIR__ . '/../CodexBot2_Bootstrap.php'; |
|
| 22 | +include __DIR__.'/../CodexBot2_Bootstrap.php'; |
|
| 23 | 23 | |
| 24 | 24 | /** |
| 25 | 25 | * Stupid bot for replacement task |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | ] |
| 46 | 46 | ); |
| 47 | 47 | $titles = $list->getPageTitles(); |
| 48 | -echo count($titles) . " articles !\n"; |
|
| 48 | +echo count($titles)." articles !\n"; |
|
| 49 | 49 | |
| 50 | 50 | |
| 51 | 51 | foreach ($titles as $title) { |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | $bot->checkStopOnTalkpageOrException(); |
| 54 | 54 | |
| 55 | 55 | $title = trim($title); |
| 56 | - echo Color::BG_GREEN . $title . Color::NORMAL . "\n"; |
|
| 56 | + echo Color::BG_GREEN.$title.Color::NORMAL."\n"; |
|
| 57 | 57 | |
| 58 | 58 | $pageAction = new WikiPageAction($wiki, $title); |
| 59 | 59 | if ($pageAction->getNs() !== 0) { |
@@ -86,10 +86,10 @@ discard block |
||
| 86 | 86 | |
| 87 | 87 | $currentTaskName = $taskName; |
| 88 | 88 | if ($botflag) { |
| 89 | - $currentTaskName = 'bot ' . $taskName; |
|
| 89 | + $currentTaskName = 'bot '.$taskName; |
|
| 90 | 90 | } |
| 91 | 91 | $result = $pageAction->editPage($newText, new EditInfo($currentTaskName, true, $botflag)); |
| 92 | - echo "Edit result : " . ($result ? "OK" : "ERREUR") . "\n"; |
|
| 92 | + echo "Edit result : ".($result ? "OK" : "ERREUR")."\n"; |
|
| 93 | 93 | sleep(5); |
| 94 | 94 | } |
| 95 | 95 | |