@@ -86,10 +86,10 @@ |
||
| 86 | 86 | // filter titles already in edited.txt |
| 87 | 87 | unset($list); |
| 88 | 88 | //echo count($titles)." titles\n"; |
| 89 | -$edited = file(__DIR__ . '/../resources/article_externRef_edited.txt', FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES); |
|
| 89 | +$edited = file(__DIR__.'/../resources/article_externRef_edited.txt', FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES); |
|
| 90 | 90 | $filtered = array_diff($titles, $edited); |
| 91 | 91 | $list = new PageList($filtered); |
| 92 | -echo ">" . $list->count() . " dans liste\n"; |
|
| 92 | +echo ">".$list->count()." dans liste\n"; |
|
| 93 | 93 | |
| 94 | 94 | |
| 95 | 95 | $httpClient = ServiceFactory::getHttpClient(); |
@@ -86,7 +86,7 @@ |
||
| 86 | 86 | 'srsort' => CirrusSearch::SRSORT_NONE, |
| 87 | 87 | // 'sroffset' => $offset, //default: 0 |
| 88 | 88 | // 'srqiprofile' => CirrusSearch::SRQIPROFILE_POPULAR_INCLINKS_PV, // nombre de vues de la page |
| 89 | - 'srqiprofile' => 'popular_inclinks', |
|
| 89 | + 'srqiprofile' => 'popular_inclinks', |
|
| 90 | 90 | ], |
| 91 | 91 | [CirrusSearch::OPTION_CONTINUE => true] |
| 92 | 92 | ); |
@@ -63,13 +63,13 @@ |
||
| 63 | 63 | $list = new PageList([trim($options['page'])]); |
| 64 | 64 | |
| 65 | 65 | // delete Title from edited.txt |
| 66 | - $file = __DIR__ . '/../resources/article_externRef_edited.txt'; |
|
| 66 | + $file = __DIR__.'/../resources/article_externRef_edited.txt'; |
|
| 67 | 67 | $text = file_get_contents($file); |
| 68 | - $newText = str_replace(trim($argv[1]) . "\n", '', $text); |
|
| 68 | + $newText = str_replace(trim($argv[1])."\n", '', $text); |
|
| 69 | 69 | if (!empty($text) && $text !== $newText) { |
| 70 | 70 | @file_put_contents($file, $newText); |
| 71 | 71 | } |
| 72 | - $botConfig->setTaskName(' |
|
@@ -63,7 +63,7 @@ |
||
| 63 | 63 | if ($webarchiveDTO->getArchiver() === '[[Internet Archive]]') { |
| 64 | 64 | $this->log->notice(' |
@@ -32,7 +32,7 @@ |
||
| 32 | 32 | $this->summary->memo['sites'][] = $this->externalPage->getPrettyDomainName(); // ??? |
| 33 | 33 | } |
| 34 | 34 | if (isset($mapData['accès url'])) { |
| 35 | - $this->log->debug('accès |
|
@@ -21,7 +21,7 @@ |
||
| 21 | 21 | */ |
| 22 | 22 | class LocationHandler extends AbstractOuvrageHandler |
| 23 | 23 | { |
| 24 | - final public const TRANSLATE_CITY_FR = __DIR__ . '/../../resources/traduction_ville.csv'; |
|
| 24 | + final public const TRANSLATE_CITY_FR = __DIR__.'/../../resources/traduction_ville.csv'; |
|
| 25 | 25 | |
| 26 | 26 | public function __construct(OuvrageTemplate $ouvrage, OptiStatus $optiStatus, protected PageListInterface $pageListManager) |
| 27 | 27 | { |
@@ -18,7 +18,7 @@ discard block |
||
| 18 | 18 | use Codedungeon\PHPCliColors\Color; |
| 19 | 19 | use Mediawiki\DataModel\EditInfo; |
| 20 | 20 | |
| 21 | -include __DIR__ . '/../CodexBot2_Bootstrap.php'; |
|
| 21 | +include __DIR__.'/../CodexBot2_Bootstrap.php'; |
|
| 22 | 22 | |
| 23 | 23 | /** |
| 24 | 24 | * Stupid bot for replacement task |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | ] |
| 45 | 45 | ); |
| 46 | 46 | $titles = $list->getPageTitles(); |
| 47 | -echo count($titles) . " articles !\n"; |
|
| 47 | +echo count($titles)." articles !\n"; |
|
| 48 | 48 | |
| 49 | 49 | |
| 50 | 50 | foreach ($titles as $title) { |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | $bot->checkStopOnTalkpageOrException(); |
| 53 | 53 | |
| 54 | 54 | $title = trim($title); |
| 55 | - echo Color::BG_GREEN . $title . Color::NORMAL . "\n"; |
|
| 55 | + echo Color::BG_GREEN.$title.Color::NORMAL."\n"; |
|
| 56 | 56 | |
| 57 | 57 | $pageAction = new WikiPageAction($wiki, $title); |
| 58 | 58 | if ($pageAction->getNs() !== 0) { |
@@ -81,10 +81,10 @@ discard block |
||
| 81 | 81 | |
| 82 | 82 | $currentTaskName = $taskName; |
| 83 | 83 | if ($botflag) { |
| 84 | - $currentTaskName = 'bot ' . $taskName; |
|
| 84 | + $currentTaskName = 'bot '.$taskName; |
|
| 85 | 85 | } |
| 86 | 86 | $result = $pageAction->editPage($newText, new EditInfo($currentTaskName, false, $botflag)); |
| 87 | - echo "Edit result : " . ($result ? "OK" : "ERREUR") . "\n"; |
|
| 87 | + echo "Edit result : ".($result ? "OK" : "ERREUR")."\n"; |
|
| 88 | 88 | sleep(5); |
| 89 | 89 | } |
| 90 | 90 | |
@@ -31,7 +31,7 @@ |
||
| 31 | 31 | { |
| 32 | 32 | protected const USER_RC_LIMIT = 100; |
| 33 | 33 | protected const TASK_NAME = ' |
@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | public const SLEEP_AFTER_EDITION = 5; // sec |
| 29 | 29 | public const MINUTES_DELAY_AFTER_LAST_HUMAN_EDIT = 10; // minutes |
| 30 | 30 | public const CHECK_EDIT_CONFLICT = true; |
| 31 | - public const ARTICLE_ANALYZED_FILENAME = __DIR__ . '/../resources/article_externRef_edited.txt'; |
|
| 31 | + public const ARTICLE_ANALYZED_FILENAME = __DIR__.'/../resources/article_externRef_edited.txt'; |
|
| 32 | 32 | public const SKIP_ADQ = false; |
| 33 | 33 | public const SKIP_LASTEDIT_BY_BOT = false; |
| 34 | 34 | public const CITATION_NUMBER_ON_FIRE = 15; |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | $result = $this->transformer->process($refContent, $this->summary); |
| 78 | 78 | } catch (Throwable $e) { |
| 79 | 79 | $this->log->critical( |
| 80 | - 'Error patate34 ' . $e->getMessage() . " " . $e->getFile() . ":" . $e->getLine(), |
|
| 80 | + 'Error patate34 '.$e->getMessage()." ".$e->getFile().":".$e->getLine(), |
|
| 81 | 81 | ['stats' => 'externref.exception.patate34'] |
| 82 | 82 | ); |
| 83 | 83 | // TODO : parse $e->message -> variable process, taskName, botflag... |
@@ -144,11 +144,11 @@ discard block |
||
| 144 | 144 | $suffix = ''; |
| 145 | 145 | if (isset($this->summary->memo['count article'])) { |
| 146 | 146 | $this->log->stats->increment('externref.count.article'); |
| 147 | - $suffix .= ' ' . $this->summary->memo['count article'] . 'x {article}'; |
|
| 147 | + $suffix .= ' '.$this->summary->memo['count article'].'x {article}'; |
|
| 148 | 148 | } |
| 149 | 149 | if (isset($this->summary->memo['count lien web'])) { |
| 150 | 150 | $this->log->stats->increment('externref.count.lienweb'); |
| 151 | - $suffix .= ' ' . $this->summary->memo['count lien web'] . 'x {lien web}'; |
|
| 151 | + $suffix .= ' '.$this->summary->memo['count lien web'].'x {lien web}'; |
|
| 152 | 152 | } |
| 153 | 153 | if (isset($this->summary->memo['presse'])) { |
| 154 | 154 | $this->log->stats->increment('externref.count.presse'); |
@@ -162,20 +162,20 @@ discard block |
||
| 162 | 162 | $this->log->stats->increment('externref.count.lienbrisé'); |
| 163 | 163 | $suffix .= ' ⚠️️️lien brisé'; //⚠️ |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | class WikiBotConfig |
| 32 | 32 | { |
| 33 | 33 | public const VERSION = '2.2'; |
| 34 | - public const WATCHPAGE_FILENAME = __DIR__ . '/resources/watch_pages.json'; |
|
| 34 | + public const WATCHPAGE_FILENAME = __DIR__.'/resources/watch_pages.json'; |
|
| 35 | 35 | public const EXIT_ON_CHECK_WATCHPAGE = false; |
| 36 | 36 | // do not stop if they play with {stop} on bot talk page |
| 37 | 37 | public const BLACKLIST_EDITOR = ['OrlodrimBot']; |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | * @var DateTimeImmutable |
| 58 | 58 | */ |
| 59 | 59 | protected $lastCheckStopDate; |
| 60 | - protected SMSInterface|null $SMSClient; |
|
| 60 | + protected SMSInterface | null $SMSClient; |
|
| 61 | 61 | protected $mediawikiFactory; |
| 62 | 62 | protected ?string $gitCommitHash = null; |
| 63 | 63 | |
@@ -91,9 +91,8 @@ discard block |
||
| 91 | 91 | { |
| 92 | 92 | $text = WikiTextUtil::removeHTMLcomments($text); |
| 93 | 93 | $botName = $botName ?: self::getBotName(); |
| 94 | - $denyReg = (empty($botName)) ? '' : |
|
| 95 | - '|\{\{bots ?\| ?(optout|deny)\=[^\}]*' . preg_quote($botName, '#') . '[^\}]*\}\}'; |
|
| 96 | - return preg_match('#({{nobots}}|{{bots ?\| ?(optout|deny) ?= ?all ?}}' . $denyReg . ')#i', $text) > 0; |
|
| 94 | + $denyReg = (empty($botName)) ? '' : '|\{\{bots ?\| ?(optout|deny)\=[^\}]*'.preg_quote($botName, '#').'[^\}]*\}\}'; |
|
| 95 | + return preg_match('#({{nobots}}|{{bots ?\| ?(optout|deny) ?= ?all ?}}'.$denyReg.')#i', $text) > 0; |
|
| 97 | 96 | } |
| 98 | 97 | |
| 99 | 98 | /** |
@@ -128,12 +127,12 @@ discard block |
||
| 128 | 127 | if ($this->gitCommitHash) { |
| 129 | 128 | return $this->gitCommitHash; |
| 130 | 129 | } |
| 131 | - $path = __DIR__ . '/../../.git/'; |
|
| 130 | + $path = __DIR__.'/../../.git/'; |
|
| 132 | 131 | if (!file_exists($path)) { |
| 133 | 132 | return null; |
| 134 | 133 | } |
| 135 | - $head = trim(substr(file_get_contents($path . 'HEAD'), 4)); |
|
| 136 | - $hash = trim(file_get_contents(sprintf($path . $head))); |
|
| 134 | + $head = trim(substr(file_get_contents($path.'HEAD'), 4)); |
|
| 135 | + $hash = trim(file_get_contents(sprintf($path.$head))); |
|
| 137 | 136 | $this->gitCommitHash = $hash; // cached |
| 138 | 137 | |
| 139 | 138 | return $hash; |
@@ -204,7 +203,7 @@ discard block |
||
| 204 | 203 | |
| 205 | 204 | protected function getBotTalkPageTitle(): string |
| 206 | 205 | { |
| 207 | - return self::TALK_PAGE_PREFIX . $this::getBotName(); |
|
| 206 | + return self::TALK_PAGE_PREFIX.$this::getBotName(); |
|
| 208 | 207 | } |
| 209 | 208 | |
| 210 | 209 | protected function sendSMSandFunnyTalk(string $lastEditor, ?bool $botTalk): void |
@@ -304,8 +303,8 @@ discard block |
||
| 304 | 303 | */ |
| 305 | 304 | public function minutesSinceLastEdit(string $title): int |
| 306 | 305 | { |
| 307 | - $time = $this->getTimestamp($title); // 2011-09-02T16:31:13Z |
|
| 306 | + $time = $this->getTimestamp($title); // 2011-09-02T16:31:13Z |
|
| 308 | 307 | |
| 309 | - return (int)round((time() - strtotime($time)) / 60); |
|
| 308 | + return (int) round((time() - strtotime($time)) / 60); |
|
| 310 | 309 | } |
| 311 | 310 | } |