@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php declare( strict_types=1 ); |
|
| 1 | +<?php declare(strict_types=1); |
|
| 2 | 2 | |
| 3 | 3 | namespace BotRiconferme\Task\Subtask; |
| 4 | 4 | |
@@ -14,7 +14,7 @@ discard block |
||
| 14 | 14 | /** |
| 15 | 15 | * @inheritDoc |
| 16 | 16 | */ |
| 17 | - public function runInternal() : int { |
|
| 17 | + public function runInternal () : int { |
|
| 18 | 18 | $pages = $this->getDataProvider()->getPagesToClose(); |
| 19 | 19 | |
| 20 | 20 | if ( !$pages ) { |
@@ -33,15 +33,15 @@ discard block |
||
| 33 | 33 | * @param PageRiconferma[] $pages |
| 34 | 34 | * @see UpdatesAround::addToVotazioni() |
| 35 | 35 | */ |
| 36 | - protected function updateVotazioni( array $pages ) { |
|
| 36 | + protected function updateVotazioni ( array $pages ) { |
|
| 37 | 37 | $this->getLogger()->info( |
| 38 | 38 | 'Updating votazioni: ' . implode( ', ', array_map( 'strval', $pages ) ) |
| 39 | 39 | ); |
| 40 | 40 | $votePage = new Page( $this->getConfig()->get( 'vote-page-title' ) ); |
| 41 | 41 | |
| 42 | - $titles = []; |
|
| 42 | + $titles = [ ]; |
|
| 43 | 43 | foreach ( $pages as $page ) { |
| 44 | - $titles[] = preg_quote( $page->getTitle() ); |
|
| 44 | + $titles[ ] = preg_quote( $page->getTitle() ); |
|
| 45 | 45 | } |
| 46 | 46 | |
| 47 | 47 | $titleReg = implode( '|', $titles ); |
@@ -70,7 +70,7 @@ discard block |
||
| 70 | 70 | * @param array $pages |
| 71 | 71 | * @see UpdatesAround::addToNews() |
| 72 | 72 | */ |
| 73 | - protected function updateNews( array $pages ) { |
|
| 73 | + protected function updateNews ( array $pages ) { |
|
| 74 | 74 | $simpleAmount = $voteAmount = 0; |
| 75 | 75 | foreach ( $pages as $page ) { |
| 76 | 76 | if ( $page->isVote() ) { |
@@ -93,8 +93,8 @@ discard block |
||
| 93 | 93 | $simpleMatches = $newsPage->getMatch( $simpleReg ); |
| 94 | 94 | $voteMatches = $newsPage->getMatch( $voteReg ); |
| 95 | 95 | |
| 96 | - $newSimp = (int)$simpleMatches[2] - $simpleAmount ?: ''; |
|
| 97 | - $newVote = (int)$voteMatches[2] - $voteAmount ?: ''; |
|
| 96 | + $newSimp = (int)$simpleMatches[ 2 ] - $simpleAmount ?: ''; |
|
| 97 | + $newVote = (int)$voteMatches[ 2 ] - $voteAmount ?: ''; |
|
| 98 | 98 | $newContent = preg_replace( $simpleReg, '${1}' . $newSimp, $content ); |
| 99 | 99 | $newContent = preg_replace( $voteReg, '${1}' . $newVote, $newContent ); |
| 100 | 100 | |
@@ -112,7 +112,7 @@ discard block |
||
| 112 | 112 | * |
| 113 | 113 | * @param PageRiconferma[] $pages |
| 114 | 114 | */ |
| 115 | - protected function updateAdminList( array $pages ) { |
|
| 115 | + protected function updateAdminList ( array $pages ) { |
|
| 116 | 116 | $this->getLogger()->info( |
| 117 | 117 | 'Updating admin list: ' . implode( ', ', array_map( 'strval', $pages ) ) |
| 118 | 118 | ); |
@@ -120,17 +120,17 @@ discard block |
||
| 120 | 120 | $newContent = $adminsPage->getContent(); |
| 121 | 121 | $newDate = date( 'Ymd', strtotime( '+1 year' ) ); |
| 122 | 122 | |
| 123 | - $riconfNames = $removeNames = []; |
|
| 123 | + $riconfNames = $removeNames = [ ]; |
|
| 124 | 124 | foreach ( $pages as $page ) { |
| 125 | 125 | $user = $page->getUser(); |
| 126 | 126 | $reg = "!(\{\{Amministratore\/riga\|$user.+\| *)\d+( *\|(?: *pausa)? *\}\}\n)!"; |
| 127 | 127 | if ( $page->getOutcome() & PageRiconferma::OUTCOME_FAIL ) { |
| 128 | 128 | // Remove the line |
| 129 | 129 | $newContent = preg_replace( $reg, '', $newContent ); |
| 130 | - $removeNames[] = $user; |
|
| 130 | + $removeNames[ ] = $user; |
|
| 131 | 131 | } else { |
| 132 | 132 | $newContent = preg_replace( $reg, '$1' . $newDate . '$2', $newContent ); |
| 133 | - $riconfNames[] = $user; |
|
| 133 | + $riconfNames[ ] = $user; |
|
| 134 | 134 | } |
| 135 | 135 | } |
| 136 | 136 | |
@@ -150,13 +150,13 @@ discard block |
||
| 150 | 150 | /** |
| 151 | 151 | * @param PageRiconferma[] $pages |
| 152 | 152 | */ |
| 153 | - protected function updateCUList( array $pages ) { |
|
| 153 | + protected function updateCUList ( array $pages ) { |
|
| 154 | 154 | $this->getLogger()->info( 'Checking if CU list needs updating.' ); |
| 155 | 155 | $cuList = new Page( $this->getConfig()->get( 'cu-list-title' ) ); |
| 156 | 156 | $admins = $this->getDataProvider()->getUsersList(); |
| 157 | 157 | $newContent = $cuList->getContent(); |
| 158 | 158 | |
| 159 | - $riconfNames = $removeNames = []; |
|
| 159 | + $riconfNames = $removeNames = [ ]; |
|
| 160 | 160 | foreach ( $pages as $page ) { |
| 161 | 161 | $user = $page->getUser(); |
| 162 | 162 | if ( array_key_exists( 'checkuser', $admins[ $user ] ) ) { |
@@ -164,10 +164,10 @@ discard block |
||
| 164 | 164 | if ( $page->getOutcome() & PageRiconferma::OUTCOME_FAIL ) { |
| 165 | 165 | // Remove the line |
| 166 | 166 | $newContent = preg_replace( $reg, '', $newContent ); |
| 167 | - $removeNames[] = $user; |
|
| 167 | + $removeNames[ ] = $user; |
|
| 168 | 168 | } else { |
| 169 | 169 | $newContent = preg_replace( $reg, '$1{{subst:#time:j F Y}}$2', $newContent ); |
| 170 | - $riconfNames[] = $user; |
|
| 170 | + $riconfNames[ ] = $user; |
|
| 171 | 171 | } |
| 172 | 172 | } |
| 173 | 173 | } |
@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php declare( strict_types=1 ); |
|
| 1 | +<?php declare(strict_types=1); |
|
| 2 | 2 | |
| 3 | 3 | namespace BotRiconferme\Task; |
| 4 | 4 | |
@@ -15,15 +15,15 @@ discard block |
||
| 15 | 15 | /** |
| 16 | 16 | * @inheritDoc |
| 17 | 17 | */ |
| 18 | - protected function getSubtasksMap(): array { |
|
| 18 | + protected function getSubtasksMap (): array { |
|
| 19 | 19 | // Everything is done here. |
| 20 | - return []; |
|
| 20 | + return [ ]; |
|
| 21 | 21 | } |
| 22 | 22 | |
| 23 | 23 | /** |
| 24 | 24 | * @inheritDoc |
| 25 | 25 | */ |
| 26 | - public function runInternal() : int { |
|
| 26 | + public function runInternal () : int { |
|
| 27 | 27 | $pages = $this->getDataProvider()->getOpenPages(); |
| 28 | 28 | |
| 29 | 29 | if ( !$pages ) { |
@@ -37,12 +37,12 @@ discard block |
||
| 37 | 37 | * @param PageRiconferma[] $pages |
| 38 | 38 | * @return int a STATUS_* constant |
| 39 | 39 | */ |
| 40 | - protected function processPages( array $pages ) : int { |
|
| 41 | - $actualPages = []; |
|
| 40 | + protected function processPages ( array $pages ) : int { |
|
| 41 | + $actualPages = [ ]; |
|
| 42 | 42 | foreach ( $pages as $page ) { |
| 43 | 43 | if ( $page->hasOpposition() && !$page->isVote() ) { |
| 44 | 44 | $this->openVote( $page ); |
| 45 | - $actualPages[] = $page; |
|
| 45 | + $actualPages[ ] = $page; |
|
| 46 | 46 | } |
| 47 | 47 | } |
| 48 | 48 | |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | * |
| 61 | 61 | * @param PageRiconferma $page |
| 62 | 62 | */ |
| 63 | - protected function openVote( PageRiconferma $page ) { |
|
| 63 | + protected function openVote ( PageRiconferma $page ) { |
|
| 64 | 64 | $this->getLogger()->info( "Starting vote on $page" ); |
| 65 | 65 | |
| 66 | 66 | $content = $page->getContent(); |
@@ -99,13 +99,13 @@ discard block |
||
| 99 | 99 | * @see SimpleUpdates::updateVotazioni() |
| 100 | 100 | * @see UpdatesAround::addToVotazioni() |
| 101 | 101 | */ |
| 102 | - protected function updateVotePage( array $pages ) { |
|
| 102 | + protected function updateVotePage ( array $pages ) { |
|
| 103 | 103 | $votePage = new Page( $this->getConfig()->get( 'vote-page-title' ) ); |
| 104 | 104 | $content = $votePage->getContent(); |
| 105 | 105 | |
| 106 | - $titles = []; |
|
| 106 | + $titles = [ ]; |
|
| 107 | 107 | foreach ( $pages as $page ) { |
| 108 | - $titles[] = preg_quote( $page->getTitle() ); |
|
| 108 | + $titles[ ] = preg_quote( $page->getTitle() ); |
|
| 109 | 109 | } |
| 110 | 110 | $titleReg = implode( '|', $titles ); |
| 111 | 111 | $search = "!^\*.+ La \[\[($titleReg)\|procedura]] termina.+\n!gm"; |
@@ -128,14 +128,14 @@ discard block |
||
| 128 | 128 | $newContent = preg_replace( $introReg, '$0' . "\n$newLines", $newContent, 1 ); |
| 129 | 129 | } else { |
| 130 | 130 | // Start section |
| 131 | - $matches = []; |
|
| 131 | + $matches = [ ]; |
|
| 132 | 132 | if ( preg_match( $introReg, $newContent, $matches ) === 0 ) { |
| 133 | 133 | throw new TaskException( 'Intro not found in vote page' ); |
| 134 | 134 | } |
| 135 | 135 | $beforeReg = '!INSERIRE LA NOTIZIA PIÙ NUOVA IN CIMA.+!m'; |
| 136 | 136 | // Replace semicolon with full stop |
| 137 | 137 | $newLines = substr( $newLines, 0, -2 ) . ".\n"; |
| 138 | - $newContent = preg_replace( $beforeReg, '$0' . "\n{$matches[0]}\n$newLines", $newContent, 1 ); |
|
| 138 | + $newContent = preg_replace( $beforeReg, '$0' . "\n{$matches[ 0 ]}\n$newLines", $newContent, 1 ); |
|
| 139 | 139 | } |
| 140 | 140 | |
| 141 | 141 | $summary = $this->msg( 'vote-start-vote-page-summary' ) |
@@ -157,7 +157,7 @@ discard block |
||
| 157 | 157 | * @see UpdatesAround::addToNews() |
| 158 | 158 | * @see SimpleUpdates::updateNews() |
| 159 | 159 | */ |
| 160 | - protected function updateNews( int $amount ) { |
|
| 160 | + protected function updateNews ( int $amount ) { |
|
| 161 | 161 | $this->getLogger()->info( "Turning $amount pages into votes" ); |
| 162 | 162 | $newsPage = new Page( $this->getConfig()->get( 'news-page-title' ) ); |
| 163 | 163 | |
@@ -172,8 +172,8 @@ discard block |
||
| 172 | 172 | throw new TaskException( 'Param "voto" not found in news page' ); |
| 173 | 173 | } |
| 174 | 174 | |
| 175 | - $newTac = intval( $newsPage->getMatch( $regTac )[2] ) - $amount ?: ''; |
|
| 176 | - $newVot = intval( $newsPage->getMatch( $regVot )[2] ) + $amount ?: ''; |
|
| 175 | + $newTac = intval( $newsPage->getMatch( $regTac )[ 2 ] ) - $amount ?: ''; |
|
| 176 | + $newVot = intval( $newsPage->getMatch( $regVot )[ 2 ] ) + $amount ?: ''; |
|
| 177 | 177 | |
| 178 | 178 | $newContent = preg_replace( $regTac, '${1}' . $newTac, $content ); |
| 179 | 179 | $newContent = preg_replace( $regVot, '${1}' . $newVot, $newContent ); |
@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php declare( strict_types=1 ); |
|
| 1 | +<?php declare(strict_types=1); |
|
| 2 | 2 | |
| 3 | 3 | namespace BotRiconferme\Task; |
| 4 | 4 | |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | */ |
| 12 | 12 | abstract class TaskBase extends ContextSource { |
| 13 | 13 | /** @var string[] */ |
| 14 | - protected $errors = []; |
|
| 14 | + protected $errors = [ ]; |
|
| 15 | 15 | /** @var TaskDataProvider */ |
| 16 | 16 | protected $dataProvider; |
| 17 | 17 | |
@@ -20,14 +20,14 @@ discard block |
||
| 20 | 20 | * |
| 21 | 21 | * @param TaskDataProvider $dataProvider |
| 22 | 22 | */ |
| 23 | - final public function __construct( TaskDataProvider $dataProvider ) { |
|
| 23 | + final public function __construct ( TaskDataProvider $dataProvider ) { |
|
| 24 | 24 | set_exception_handler( [ $this, 'handleException' ] ); |
| 25 | 25 | set_error_handler( [ $this, 'handleError' ] ); |
| 26 | 26 | parent::__construct(); |
| 27 | 27 | $this->dataProvider = $dataProvider; |
| 28 | 28 | } |
| 29 | 29 | |
| 30 | - public function __destruct() { |
|
| 30 | + public function __destruct () { |
|
| 31 | 31 | restore_error_handler(); |
| 32 | 32 | restore_exception_handler(); |
| 33 | 33 | } |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | * |
| 38 | 38 | * @return TaskResult |
| 39 | 39 | */ |
| 40 | - final public function run() : TaskResult { |
|
| 40 | + final public function run () : TaskResult { |
|
| 41 | 41 | $class = ( new \ReflectionClass( $this ) )->getShortName(); |
| 42 | 42 | $opName = $this->getOperationName(); |
| 43 | 43 | $this->getLogger()->info( "Starting $opName $class" ); |
@@ -68,14 +68,14 @@ discard block |
||
| 68 | 68 | * |
| 69 | 69 | * @return int One of the STATUS_* constants |
| 70 | 70 | */ |
| 71 | - abstract protected function runInternal() : int; |
|
| 71 | + abstract protected function runInternal () : int; |
|
| 72 | 72 | |
| 73 | 73 | /** |
| 74 | 74 | * How this operation should be called in logs |
| 75 | 75 | * |
| 76 | 76 | * @return string |
| 77 | 77 | */ |
| 78 | - abstract public function getOperationName() : string; |
|
| 78 | + abstract public function getOperationName () : string; |
|
| 79 | 79 | |
| 80 | 80 | /** |
| 81 | 81 | * Exception handler. |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | * @param \Throwable $ex |
| 84 | 84 | * @protected |
| 85 | 85 | */ |
| 86 | - public function handleException( \Throwable $ex ) { |
|
| 86 | + public function handleException ( \Throwable $ex ) { |
|
| 87 | 87 | $this->getLogger()->error( |
| 88 | 88 | get_class( $ex ) . ': ' . |
| 89 | 89 | $ex->getMessage() . "\nTrace:\n" . |
@@ -100,14 +100,14 @@ discard block |
||
| 100 | 100 | * @param int $errline |
| 101 | 101 | * @protected |
| 102 | 102 | */ |
| 103 | - public function handleError( $errno, $errstr, $errfile, $errline ) { |
|
| 103 | + public function handleError ( $errno, $errstr, $errfile, $errline ) { |
|
| 104 | 104 | throw new \ErrorException( $errstr, 0, $errno, $errfile, $errline ); |
| 105 | 105 | } |
| 106 | 106 | |
| 107 | 107 | /** |
| 108 | 108 | * @return TaskDataProvider |
| 109 | 109 | */ |
| 110 | - protected function getDataProvider() : TaskDataProvider { |
|
| 110 | + protected function getDataProvider () : TaskDataProvider { |
|
| 111 | 111 | return $this->dataProvider; |
| 112 | 112 | } |
| 113 | 113 | } |
@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php declare( strict_types=1 ); |
|
| 1 | +<?php declare(strict_types=1); |
|
| 2 | 2 | |
| 3 | 3 | namespace BotRiconferme\Task; |
| 4 | 4 | |
@@ -14,13 +14,13 @@ discard block |
||
| 14 | 14 | * |
| 15 | 15 | * @return string[] |
| 16 | 16 | */ |
| 17 | - abstract protected function getSubtasksMap() : array; |
|
| 17 | + abstract protected function getSubtasksMap () : array; |
|
| 18 | 18 | |
| 19 | 19 | /** |
| 20 | 20 | * @param string $subtask Defined in self::SUBTASKS_MAP |
| 21 | 21 | * @return TaskResult |
| 22 | 22 | */ |
| 23 | - protected function runSubtask( string $subtask ) : TaskResult { |
|
| 23 | + protected function runSubtask ( string $subtask ) : TaskResult { |
|
| 24 | 24 | $map = $this->getSubtasksMap(); |
| 25 | 25 | if ( !isset( $map[ $subtask ] ) ) { |
| 26 | 26 | throw new \InvalidArgumentException( "'$subtask' is not a valid task." ); |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | /** |
| 34 | 34 | * @inheritDoc |
| 35 | 35 | */ |
| 36 | - final public function getOperationName(): string { |
|
| 36 | + final public function getOperationName (): string { |
|
| 37 | 37 | return 'task'; |
| 38 | 38 | } |
| 39 | 39 | |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | * @param string $class |
| 44 | 44 | * @return Subtask |
| 45 | 45 | */ |
| 46 | - private function getSubtaskInstance( string $class ) : Subtask { |
|
| 46 | + private function getSubtaskInstance ( string $class ) : Subtask { |
|
| 47 | 47 | return new $class( $this->getDataProvider() ); |
| 48 | 48 | } |
| 49 | 49 | } |
@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php declare( strict_types=1 ); |
|
| 1 | +<?php declare(strict_types=1); |
|
| 2 | 2 | /** |
| 3 | 3 | * Entry point for the bot, called by CLI |
| 4 | 4 | */ |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | |
| 38 | 38 | /* URL (for debugging purpose) */ |
| 39 | 39 | $urlParam = getopt( '', [ 'force-url:' ] ); |
| 40 | -$url = $urlParam['force-url'] ?? 'https://it.wikipedia.org/w/api.php'; |
|
| 40 | +$url = $urlParam[ 'force-url' ] ?? 'https://it.wikipedia.org/w/api.php'; |
|
| 41 | 41 | |
| 42 | 42 | define( 'DEFAULT_URL', $url ); |
| 43 | 43 | |
@@ -87,9 +87,9 @@ discard block |
||
| 87 | 87 | |
| 88 | 88 | if ( count( $taskOpts ) === 2 ) { |
| 89 | 89 | throw new InvalidArgumentException( 'Cannot specify both task and subtask.' ); |
| 90 | -} elseif ( isset( $taskOpts['task'] ) ) { |
|
| 90 | +} elseif ( isset( $taskOpts[ 'task' ] ) ) { |
|
| 91 | 91 | $bot->runTask( $taskOpts[ 'task' ] ); |
| 92 | -} elseif ( isset( $taskOpts['subtask'] ) ) { |
|
| 92 | +} elseif ( isset( $taskOpts[ 'subtask' ] ) ) { |
|
| 93 | 93 | $bot->runSubtask( $taskOpts[ 'subtask' ] ); |
| 94 | 94 | } else { |
| 95 | 95 | $bot->runAll(); |
@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php declare( strict_types=1 ); |
|
| 1 | +<?php declare(strict_types=1); |
|
| 2 | 2 | |
| 3 | 3 | namespace BotRiconferme; |
| 4 | 4 | |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | /** @var Controller */ |
| 20 | 20 | private $controller; |
| 21 | 21 | |
| 22 | - public function __construct() { |
|
| 22 | + public function __construct () { |
|
| 23 | 23 | $this->setLogger( new Logger ); |
| 24 | 24 | $this->setConfig( Config::getInstance() ); |
| 25 | 25 | $this->setController( new Controller ); |
@@ -28,42 +28,42 @@ discard block |
||
| 28 | 28 | /** |
| 29 | 29 | * @return LoggerInterface |
| 30 | 30 | */ |
| 31 | - protected function getLogger() : LoggerInterface { |
|
| 31 | + protected function getLogger () : LoggerInterface { |
|
| 32 | 32 | return $this->logger; |
| 33 | 33 | } |
| 34 | 34 | |
| 35 | 35 | /** |
| 36 | 36 | * @inheritDoc |
| 37 | 37 | */ |
| 38 | - public function setLogger( LoggerInterface $logger ) { |
|
| 38 | + public function setLogger ( LoggerInterface $logger ) { |
|
| 39 | 39 | $this->logger = $logger; |
| 40 | 40 | } |
| 41 | 41 | |
| 42 | 42 | /** |
| 43 | 43 | * @return Config |
| 44 | 44 | */ |
| 45 | - protected function getConfig() : Config { |
|
| 45 | + protected function getConfig () : Config { |
|
| 46 | 46 | return $this->config; |
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | /** |
| 50 | 50 | * @param Config $cfg |
| 51 | 51 | */ |
| 52 | - protected function setConfig( Config $cfg ) { |
|
| 52 | + protected function setConfig ( Config $cfg ) { |
|
| 53 | 53 | $this->config = $cfg; |
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | /** |
| 57 | 57 | * @return Controller |
| 58 | 58 | */ |
| 59 | - protected function getController() : Controller { |
|
| 59 | + protected function getController () : Controller { |
|
| 60 | 60 | return $this->controller; |
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | /** |
| 64 | 64 | * @param Controller $controller |
| 65 | 65 | */ |
| 66 | - protected function setController( Controller $controller ) { |
|
| 66 | + protected function setController ( Controller $controller ) { |
|
| 67 | 67 | $this->controller = $controller; |
| 68 | 68 | } |
| 69 | 69 | |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | * @param string $key |
| 74 | 74 | * @return Message |
| 75 | 75 | */ |
| 76 | - protected function msg( string $key ) : Message { |
|
| 76 | + protected function msg ( string $key ) : Message { |
|
| 77 | 77 | return new Message( $key ); |
| 78 | 78 | } |
| 79 | 79 | } |
@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php declare( strict_types=1 ); |
|
| 1 | +<?php declare(strict_types=1); |
|
| 2 | 2 | |
| 3 | 3 | namespace BotRiconferme\Page; |
| 4 | 4 | |
@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | * @param string $title |
| 21 | 21 | * @param string $domain The site where the page lives, if different from default |
| 22 | 22 | */ |
| 23 | - public function __construct( string $title, string $domain = DEFAULT_URL ) { |
|
| 23 | + public function __construct ( string $title, string $domain = DEFAULT_URL ) { |
|
| 24 | 24 | $this->title = $title; |
| 25 | 25 | $this->controller = new Controller( $domain ); |
| 26 | 26 | } |
@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | /** |
| 29 | 29 | * @return string |
| 30 | 30 | */ |
| 31 | - public function getTitle() : string { |
|
| 31 | + public function getTitle () : string { |
|
| 32 | 32 | return $this->title; |
| 33 | 33 | } |
| 34 | 34 | |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | * @param int|null $section A section number to retrieve the content of that section |
| 39 | 39 | * @return string |
| 40 | 40 | */ |
| 41 | - public function getContent( int $section = null ) : string { |
|
| 41 | + public function getContent ( int $section = null ) : string { |
|
| 42 | 42 | if ( $this->content === null ) { |
| 43 | 43 | $this->content = $this->controller->getPageContent( $this->title, $section ); |
| 44 | 44 | } |
@@ -50,16 +50,16 @@ discard block |
||
| 50 | 50 | * |
| 51 | 51 | * @param array $params |
| 52 | 52 | */ |
| 53 | - public function edit( array $params ) { |
|
| 53 | + public function edit ( array $params ) { |
|
| 54 | 54 | $params = [ |
| 55 | 55 | 'title' => $this->getTitle() |
| 56 | 56 | ] + $params; |
| 57 | 57 | |
| 58 | 58 | $this->controller->editPage( $params ); |
| 59 | - if ( isset( $params['text'] ) ) { |
|
| 60 | - $this->content = $params['text']; |
|
| 61 | - } elseif ( isset( $params['appendtext'] ) ) { |
|
| 62 | - $this->content .= $params['appendtext']; |
|
| 59 | + if ( isset( $params[ 'text' ] ) ) { |
|
| 60 | + $this->content = $params[ 'text' ]; |
|
| 61 | + } elseif ( isset( $params[ 'appendtext' ] ) ) { |
|
| 62 | + $this->content .= $params[ 'appendtext' ]; |
|
| 63 | 63 | } else { |
| 64 | 64 | // Clear the cache anyway |
| 65 | 65 | ( new Logger )->warning( 'Resetting content cache. Params: ' . var_export( $params, true ) ); |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | * @param string $regex |
| 74 | 74 | * @return bool |
| 75 | 75 | */ |
| 76 | - public function matches( string $regex ) : bool { |
|
| 76 | + public function matches ( string $regex ) : bool { |
|
| 77 | 77 | return (bool)preg_match( $regex, $this->getContent() ); |
| 78 | 78 | } |
| 79 | 79 | |
@@ -85,8 +85,8 @@ discard block |
||
| 85 | 85 | * @return string[] |
| 86 | 86 | * @throws \Exception |
| 87 | 87 | */ |
| 88 | - public function getMatch( string $regex ) : array { |
|
| 89 | - $ret = []; |
|
| 88 | + public function getMatch ( string $regex ) : array { |
|
| 89 | + $ret = [ ]; |
|
| 90 | 90 | if ( preg_match( $regex, $this->getContent(), $ret ) === 0 ) { |
| 91 | 91 | throw new \Exception( 'The content does not match the given regex' ); |
| 92 | 92 | } |
@@ -98,7 +98,7 @@ discard block |
||
| 98 | 98 | * |
| 99 | 99 | * @return string |
| 100 | 100 | */ |
| 101 | - public function __toString() { |
|
| 101 | + public function __toString () { |
|
| 102 | 102 | return $this->getTitle(); |
| 103 | 103 | } |
| 104 | 104 | } |
@@ -1,4 +1,4 @@ discard block |
||
| 1 | -<?php declare( strict_types=1 ); |
|
| 1 | +<?php declare(strict_types=1); |
|
| 2 | 2 | |
| 3 | 3 | namespace BotRiconferme\Wiki; |
| 4 | 4 | |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | /** |
| 28 | 28 | * @param string $domain The URL of the wiki, if different from default |
| 29 | 29 | */ |
| 30 | - public function __construct( string $domain = DEFAULT_URL ) { |
|
| 30 | + public function __construct ( string $domain = DEFAULT_URL ) { |
|
| 31 | 31 | $this->logger = new Logger; |
| 32 | 32 | $this->domain = $domain; |
| 33 | 33 | } |
@@ -40,7 +40,7 @@ discard block |
||
| 40 | 40 | * @return string |
| 41 | 41 | * @throws MissingPageException |
| 42 | 42 | */ |
| 43 | - public function getPageContent( string $title, int $section = null ) : string { |
|
| 43 | + public function getPageContent ( string $title, int $section = null ) : string { |
|
| 44 | 44 | $this->logger->debug( "Retrieving content of page $title" ); |
| 45 | 45 | $params = [ |
| 46 | 46 | 'action' => 'query', |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | ]; |
| 52 | 52 | |
| 53 | 53 | if ( $section !== null ) { |
| 54 | - $params['rvsection'] = $section; |
|
| 54 | + $params[ 'rvsection' ] = $section; |
|
| 55 | 55 | } |
| 56 | 56 | |
| 57 | 57 | $req = RequestBase::newFromParams( $params )->setUrl( $this->domain ); |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | throw new MissingPageException( $title ); |
| 62 | 62 | } |
| 63 | 63 | |
| 64 | - $mainSlot = $page->revisions[0]->slots->main; |
|
| 64 | + $mainSlot = $page->revisions[ 0 ]->slots->main; |
|
| 65 | 65 | |
| 66 | 66 | if ( $section !== null && isset( $mainSlot->nosuchsection ) ) { |
| 67 | 67 | throw new MissingSectionException( $title, $section ); |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | * @param array $params |
| 76 | 76 | * @throws EditException |
| 77 | 77 | */ |
| 78 | - public function editPage( array $params ) { |
|
| 78 | + public function editPage ( array $params ) { |
|
| 79 | 79 | $this->login(); |
| 80 | 80 | |
| 81 | 81 | $params = [ |
@@ -97,7 +97,7 @@ discard block |
||
| 97 | 97 | * Login wrapper. Checks if we're already logged in and clears tokens cache |
| 98 | 98 | * @throws LoginException |
| 99 | 99 | */ |
| 100 | - public function login() { |
|
| 100 | + public function login () { |
|
| 101 | 101 | if ( self::$loggedIn ) { |
| 102 | 102 | $this->logger->debug( 'Already logged in' ); |
| 103 | 103 | return; |
@@ -124,7 +124,7 @@ discard block |
||
| 124 | 124 | |
| 125 | 125 | self::$loggedIn = true; |
| 126 | 126 | // Clear tokens cache |
| 127 | - $this->tokens = []; |
|
| 127 | + $this->tokens = [ ]; |
|
| 128 | 128 | $this->logger->info( 'Login succeeded' ); |
| 129 | 129 | } |
| 130 | 130 | |
@@ -134,7 +134,7 @@ discard block |
||
| 134 | 134 | * @param string $type |
| 135 | 135 | * @return string |
| 136 | 136 | */ |
| 137 | - public function getToken( string $type ) : string { |
|
| 137 | + public function getToken ( string $type ) : string { |
|
| 138 | 138 | if ( !isset( $this->tokens[ $type ] ) ) { |
| 139 | 139 | $params = [ |
| 140 | 140 | 'action' => 'query', |
@@ -157,7 +157,7 @@ discard block |
||
| 157 | 157 | * @param string $title |
| 158 | 158 | * @return int |
| 159 | 159 | */ |
| 160 | - public function getPageCreationTS( string $title ) : int { |
|
| 160 | + public function getPageCreationTS ( string $title ) : int { |
|
| 161 | 161 | $params = [ |
| 162 | 162 | 'action' => 'query', |
| 163 | 163 | 'prop' => 'revisions', |
@@ -170,7 +170,7 @@ discard block |
||
| 170 | 170 | |
| 171 | 171 | $res = RequestBase::newFromParams( $params )->setUrl( $this->domain )->execute(); |
| 172 | 172 | $data = $res->query->pages; |
| 173 | - return strtotime( reset( $data )->revisions[0]->timestamp ); |
|
| 173 | + return strtotime( reset( $data )->revisions[ 0 ]->timestamp ); |
|
| 174 | 174 | } |
| 175 | 175 | |
| 176 | 176 | /** |
@@ -179,7 +179,7 @@ discard block |
||
| 179 | 179 | * @param string $title |
| 180 | 180 | * @param string $reason |
| 181 | 181 | */ |
| 182 | - public function protectPage( string $title, string $reason ) { |
|
| 182 | + public function protectPage ( string $title, string $reason ) { |
|
| 183 | 183 | $this->logger->info( "Protecting page $title" ); |
| 184 | 184 | $this->login(); |
| 185 | 185 | |