@@ -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 | |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | /** |
18 | 18 | * @inheritDoc |
19 | 19 | */ |
20 | - public function runInternal() : int { |
|
20 | + public function runInternal () : int { |
|
21 | 21 | $failed = $this->getFailures(); |
22 | 22 | if ( !$failed ) { |
23 | 23 | return TaskResult::STATUS_NOTHING; |
@@ -39,12 +39,12 @@ discard block |
||
39 | 39 | * |
40 | 40 | * @return PageRiconferma[] |
41 | 41 | */ |
42 | - private function getFailures() : array { |
|
43 | - $ret = []; |
|
42 | + private function getFailures () : array { |
|
43 | + $ret = [ ]; |
|
44 | 44 | $allPages = $this->getDataProvider()->getPagesToClose(); |
45 | 45 | foreach ( $allPages as $page ) { |
46 | 46 | if ( $page->getOutcome() & PageRiconferma::OUTCOME_FAIL ) { |
47 | - $ret[] = $page; |
|
47 | + $ret[ ] = $page; |
|
48 | 48 | } |
49 | 49 | } |
50 | 50 | return $ret; |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | /** |
54 | 54 | * @param User[] $users |
55 | 55 | */ |
56 | - protected function updateBurList( array $users ) { |
|
56 | + protected function updateBurList ( array $users ) { |
|
57 | 57 | $this->getLogger()->info( 'Updating bur list. Removing: ' . implode( ', ', $users ) ); |
58 | 58 | $remList = Element::regexFromArray( $users ); |
59 | 59 | $burList = $this->getPage( $this->getOpt( 'bur-list-title' ) ); |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | * |
77 | 77 | * @param PageRiconferma[] $pages |
78 | 78 | */ |
79 | - protected function requestRemoval( array $pages ) { |
|
79 | + protected function requestRemoval ( array $pages ) { |
|
80 | 80 | $this->getLogger()->info( 'Requesting flag removal for: ' . implode( ', ', $pages ) ); |
81 | 81 | |
82 | 82 | $metaWiki = new Wiki( $this->getLogger(), META_URL ); |
@@ -113,15 +113,15 @@ discard block |
||
113 | 113 | * |
114 | 114 | * @param PageRiconferma[] $pages |
115 | 115 | */ |
116 | - protected function updateAnnunci( array $pages ) { |
|
116 | + protected function updateAnnunci ( array $pages ) { |
|
117 | 117 | $this->getLogger()->info( 'Updating annunci' ); |
118 | 118 | $section = 1; |
119 | 119 | |
120 | - $names = []; |
|
120 | + $names = [ ]; |
|
121 | 121 | $text = ''; |
122 | 122 | foreach ( $pages as $page ) { |
123 | 123 | $user = $page->getUser()->getName(); |
124 | - $names[] = $user; |
|
124 | + $names[ ] = $user; |
|
125 | 125 | $text .= $this->msg( 'annunci-text' )->params( [ '$user' => $user ] )->text(); |
126 | 126 | } |
127 | 127 | |
@@ -153,16 +153,16 @@ discard block |
||
153 | 153 | * |
154 | 154 | * @param PageRiconferma[] $pages |
155 | 155 | */ |
156 | - protected function updateUltimeNotizie( array $pages ) { |
|
156 | + protected function updateUltimeNotizie ( array $pages ) { |
|
157 | 157 | $this->getLogger()->info( 'Updating ultime notizie' ); |
158 | 158 | $notiziePage = $this->getPage( $this->getOpt( 'ultimenotizie-page-title' ) ); |
159 | 159 | |
160 | - $names = []; |
|
160 | + $names = [ ]; |
|
161 | 161 | $text = ''; |
162 | 162 | $msg = $this->msg( 'ultimenotizie-text' ); |
163 | 163 | foreach ( $pages as $page ) { |
164 | 164 | $user = $page->getUser()->getName(); |
165 | - $names[] = $user; |
|
165 | + $names[ ] = $user; |
|
166 | 166 | $text .= $msg->params( [ '$user' => $user, '$title' => $page->getTitle() ] )->text(); |
167 | 167 | } |
168 | 168 | |
@@ -191,12 +191,12 @@ discard block |
||
191 | 191 | * @param PageRiconferma[] $pages |
192 | 192 | * @return User[] |
193 | 193 | */ |
194 | - private function getFailedBureaucrats( array $pages ) : array { |
|
195 | - $ret = []; |
|
194 | + private function getFailedBureaucrats ( array $pages ) : array { |
|
195 | + $ret = [ ]; |
|
196 | 196 | foreach ( $pages as $page ) { |
197 | 197 | $user = $page->getUser(); |
198 | 198 | if ( $user->inGroup( 'bureaucrat' ) ) { |
199 | - $ret[] = $user; |
|
199 | + $ret[ ] = $user; |
|
200 | 200 | } |
201 | 201 | } |
202 | 202 | return $ret; |
@@ -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 | |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | * @param LoggerInterface $logger |
56 | 56 | * @param Wiki $wiki |
57 | 57 | */ |
58 | - public function __construct( LoggerInterface $logger, Wiki $wiki ) { |
|
58 | + public function __construct ( LoggerInterface $logger, Wiki $wiki ) { |
|
59 | 59 | $this->logger = $logger; |
60 | 60 | $this->wiki = $wiki; |
61 | 61 | $this->provider = new TaskDataProvider( $this->logger, $this->wiki ); |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | * @param string|null $name Only used in MODE_TASK and MODE_SUBTASK |
69 | 69 | * @return TaskResult |
70 | 70 | */ |
71 | - public function run( string $mode, string $name = null ) : TaskResult { |
|
71 | + public function run ( string $mode, string $name = null ) : TaskResult { |
|
72 | 72 | if ( $mode === self::MODE_COMPLETE ) { |
73 | 73 | return $this->runAllTasks(); |
74 | 74 | } elseif ( $name === null ) { |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | * |
84 | 84 | * @return TaskResult |
85 | 85 | */ |
86 | - protected function runAllTasks() : TaskResult { |
|
86 | + protected function runAllTasks () : TaskResult { |
|
87 | 87 | $orderedList = [ |
88 | 88 | 'update-list', |
89 | 89 | 'start-new', |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | * @param string $name |
106 | 106 | * @return TaskResult |
107 | 107 | */ |
108 | - protected function runTask( string $name ) : TaskResult { |
|
108 | + protected function runTask ( string $name ) : TaskResult { |
|
109 | 109 | if ( !isset( self::TASKS_MAP[ $name ] ) ) { |
110 | 110 | throw new \InvalidArgumentException( "'$name' is not a valid task." ); |
111 | 111 | } |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | * @param string $name |
121 | 121 | * @return TaskResult |
122 | 122 | */ |
123 | - protected function runSubtask( string $name ) : TaskResult { |
|
123 | + protected function runSubtask ( string $name ) : TaskResult { |
|
124 | 124 | if ( !isset( self::SUBTASKS_MAP[ $name ] ) ) { |
125 | 125 | throw new \InvalidArgumentException( "'$name' is not a valid subtask." ); |
126 | 126 | } |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | * @param string $class |
136 | 136 | * @return Task |
137 | 137 | */ |
138 | - private function getTaskInstance( string $class ) : Task { |
|
138 | + private function getTaskInstance ( string $class ) : Task { |
|
139 | 139 | return new $class( $this->logger, $this->wiki, $this->provider ); |
140 | 140 | } |
141 | 141 | |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | * @param string $class |
146 | 146 | * @return Subtask |
147 | 147 | */ |
148 | - private function getSubtaskInstance( string $class ) : Subtask { |
|
148 | + private function getSubtaskInstance ( string $class ) : Subtask { |
|
149 | 149 | return new $class( $this->logger, $this->wiki, $this->provider ); |
150 | 150 | } |
151 | 151 | } |
@@ -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 | |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | /** @var self */ |
14 | 14 | private static $instance; |
15 | 15 | /** @var array */ |
16 | - private $opts = []; |
|
16 | + private $opts = [ ]; |
|
17 | 17 | /** @var array|null Lazy-loaded to avoid unnecessary requests */ |
18 | 18 | private $messages; |
19 | 19 | /** @var Wiki */ |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | * |
25 | 25 | * @param Wiki $wiki |
26 | 26 | */ |
27 | - private function __construct( Wiki $wiki ) { |
|
27 | + private function __construct ( Wiki $wiki ) { |
|
28 | 28 | $this->wiki = $wiki; |
29 | 29 | } |
30 | 30 | |
@@ -35,16 +35,16 @@ discard block |
||
35 | 35 | * @param Wiki $wiki |
36 | 36 | * @throws ConfigException |
37 | 37 | */ |
38 | - public static function init( array $defaults, Wiki $wiki ) { |
|
38 | + public static function init ( array $defaults, Wiki $wiki ) { |
|
39 | 39 | if ( self::$instance ) { |
40 | 40 | throw new ConfigException( 'Config was already initialized' ); |
41 | 41 | } |
42 | 42 | |
43 | 43 | $inst = new self( $wiki ); |
44 | - $inst->set( 'list-title', $defaults['list-title'] ); |
|
45 | - $inst->set( 'msg-title', $defaults['msg-title'] ); |
|
46 | - $inst->set( 'username', $defaults['username'] ); |
|
47 | - $inst->set( 'password', $defaults['password'] ); |
|
44 | + $inst->set( 'list-title', $defaults[ 'list-title' ] ); |
|
45 | + $inst->set( 'msg-title', $defaults[ 'msg-title' ] ); |
|
46 | + $inst->set( 'username', $defaults[ 'username' ] ); |
|
47 | + $inst->set( 'password', $defaults[ 'password' ] ); |
|
48 | 48 | |
49 | 49 | // On-wiki values |
50 | 50 | try { |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | * @return string |
65 | 65 | * @throws ConfigException |
66 | 66 | */ |
67 | - public function getWikiMessage( string $key ) : string { |
|
67 | + public function getWikiMessage ( string $key ) : string { |
|
68 | 68 | if ( $this->messages === null ) { |
69 | 69 | try { |
70 | 70 | $cont = $this->wiki->getPageContent( $this->opts[ 'msg-title' ] ); |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | if ( !isset( $this->messages[ $key ] ) ) { |
77 | 77 | throw new ConfigException( "Message '$key' does not exist." ); |
78 | 78 | } |
79 | - return $this->messages[$key]; |
|
79 | + return $this->messages[ $key ]; |
|
80 | 80 | } |
81 | 81 | |
82 | 82 | /** |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | * @param string $key |
86 | 86 | * @param mixed $value |
87 | 87 | */ |
88 | - protected function set( string $key, $value ) { |
|
88 | + protected function set ( string $key, $value ) { |
|
89 | 89 | $this->opts[ $key ] = $value; |
90 | 90 | } |
91 | 91 | |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | * @return self |
96 | 96 | * @throws ConfigException |
97 | 97 | */ |
98 | - public static function getInstance() : self { |
|
98 | + public static function getInstance () : self { |
|
99 | 99 | if ( !self::$instance ) { |
100 | 100 | throw new ConfigException( 'Config not yet initialized' ); |
101 | 101 | } |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | * @return mixed |
110 | 110 | * @throws ConfigException |
111 | 111 | */ |
112 | - public function get( string $opt ) { |
|
112 | + public function get ( string $opt ) { |
|
113 | 113 | if ( !isset( $this->opts[ $opt ] ) ) { |
114 | 114 | throw new ConfigException( "Config option '$opt' not set." ); |
115 | 115 | } |
@@ -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 | |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | * @param LoggerInterface $logger |
21 | 21 | * @param Wiki $wiki |
22 | 22 | */ |
23 | - public function __construct( LoggerInterface $logger, Wiki $wiki ) { |
|
23 | + public function __construct ( LoggerInterface $logger, Wiki $wiki ) { |
|
24 | 24 | $this->logger = $logger; |
25 | 25 | $this->wiki = $wiki; |
26 | 26 | } |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | * @param string $mode |
32 | 32 | * @param string|null $name |
33 | 33 | */ |
34 | - private function run( string $mode = TaskManager::MODE_COMPLETE, string $name = null ) { |
|
34 | + private function run ( string $mode = TaskManager::MODE_COMPLETE, string $name = null ) { |
|
35 | 35 | $activity = $mode === TaskManager::MODE_COMPLETE ? TaskManager::MODE_COMPLETE : "$mode $name"; |
36 | 36 | $this->logger->info( "Running $activity" ); |
37 | 37 | $manager = new TaskManager( $this->logger, $this->wiki ); |
@@ -39,8 +39,7 @@ discard block |
||
39 | 39 | $base = "Execution of $activity"; |
40 | 40 | if ( $res->isOK() ) { |
41 | 41 | $msg = $res->getStatus() === TaskResult::STATUS_NOTHING ? |
42 | - ': nothing to do' : |
|
43 | - ' completed successfully'; |
|
42 | + ': nothing to do' : ' completed successfully'; |
|
44 | 43 | $this->logger->info( $base . $msg ); |
45 | 44 | } else { |
46 | 45 | $this->logger->error( "$base failed.\n$res" ); |
@@ -50,7 +49,7 @@ discard block |
||
50 | 49 | /** |
51 | 50 | * Entry point for the whole process |
52 | 51 | */ |
53 | - public function runAll() { |
|
52 | + public function runAll () { |
|
54 | 53 | $this->run(); |
55 | 54 | } |
56 | 55 | |
@@ -59,7 +58,7 @@ discard block |
||
59 | 58 | * |
60 | 59 | * @param string $task |
61 | 60 | */ |
62 | - public function runTask( string $task ) { |
|
61 | + public function runTask ( string $task ) { |
|
63 | 62 | $this->run( TaskManager::MODE_TASK, $task ); |
64 | 63 | } |
65 | 64 | |
@@ -68,7 +67,7 @@ discard block |
||
68 | 67 | * |
69 | 68 | * @param string $subtask |
70 | 69 | */ |
71 | - public function runSubtask( string $subtask ) { |
|
70 | + public function runSubtask ( string $subtask ) { |
|
72 | 71 | $this->run( TaskManager::MODE_SUBTASK, $subtask ); |
73 | 72 | } |
74 | 73 | } |
@@ -1,4 +1,4 @@ discard block |
||
1 | -<?php declare( strict_types=1 ); |
|
1 | +<?php declare(strict_types=1); |
|
2 | 2 | |
3 | 3 | namespace BotRiconferme\Logger; |
4 | 4 | |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | * @param string $level |
12 | 12 | * @return int |
13 | 13 | */ |
14 | - protected function levelToInt( string $level ) : int { |
|
14 | + protected function levelToInt ( string $level ) : int { |
|
15 | 15 | // Order matters |
16 | 16 | $mapping = [ |
17 | 17 | LogLevel::DEBUG, |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | * @param string $message |
32 | 32 | * @return string |
33 | 33 | */ |
34 | - protected function getFormattedMessage( string $level, string $message ) { |
|
34 | + protected function getFormattedMessage ( string $level, string $message ) { |
|
35 | 35 | return sprintf( "%s [%s] - %s", date( 'd M H:i:s' ), $level, $message ); |
36 | 36 | } |
37 | 37 | } |
@@ -1,4 +1,4 @@ discard block |
||
1 | -<?php declare( strict_types=1 ); |
|
1 | +<?php declare(strict_types=1); |
|
2 | 2 | |
3 | 3 | namespace BotRiconferme\Logger; |
4 | 4 | |
@@ -10,12 +10,12 @@ discard block |
||
10 | 10 | */ |
11 | 11 | class MultiLogger extends AbstractLogger implements IFlushingAwareLogger { |
12 | 12 | /** @var IFlushingAwareLogger[] */ |
13 | - private $loggers = []; |
|
13 | + private $loggers = [ ]; |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * @param IFlushingAwareLogger ...$loggers |
17 | 17 | */ |
18 | - public function __construct( IFlushingAwareLogger ...$loggers ) { |
|
18 | + public function __construct ( IFlushingAwareLogger ...$loggers ) { |
|
19 | 19 | $this->loggers = $loggers; |
20 | 20 | } |
21 | 21 | |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | * @inheritDoc |
24 | 24 | * @suppress PhanUnusedPublicMethodParameter |
25 | 25 | */ |
26 | - public function log( $level, $message, array $context = [] ) { |
|
26 | + public function log ( $level, $message, array $context = [ ] ) { |
|
27 | 27 | foreach ( $this->loggers as $logger ) { |
28 | 28 | $logger->log( $level, $message ); |
29 | 29 | } |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | /** |
33 | 33 | * @inheritDoc |
34 | 34 | */ |
35 | - public function flush() : void { |
|
35 | + public function flush () : void { |
|
36 | 36 | foreach ( $this->loggers as $logger ) { |
37 | 37 | $logger->flush(); |
38 | 38 | } |
@@ -1,4 +1,4 @@ discard block |
||
1 | -<?php declare( strict_types=1 ); |
|
1 | +<?php declare(strict_types=1); |
|
2 | 2 | |
3 | 3 | namespace BotRiconferme\Logger; |
4 | 4 | |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | /** |
18 | 18 | * @param string $minlevel |
19 | 19 | */ |
20 | - public function __construct( $minlevel = LogLevel::INFO ) { |
|
20 | + public function __construct ( $minlevel = LogLevel::INFO ) { |
|
21 | 21 | $this->minLevel = $this->levelToInt( $minlevel ); |
22 | 22 | } |
23 | 23 | |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | * @inheritDoc |
26 | 26 | * @suppress PhanUnusedPublicMethodParameter |
27 | 27 | */ |
28 | - public function log( $level, $message, array $context = [] ) { |
|
28 | + public function log ( $level, $message, array $context = [ ] ) { |
|
29 | 29 | if ( $this->levelToInt( $level ) >= $this->minLevel ) { |
30 | 30 | echo $this->getFormattedMessage( $level, $message ) . "\n"; |
31 | 31 | } |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | /** |
35 | 35 | * @inheritDoc |
36 | 36 | */ |
37 | - public function flush() : void { |
|
37 | + public function flush () : void { |
|
38 | 38 | // Everything else is printed immediately |
39 | 39 | echo "\n" . str_repeat( '-', 80 ) . "\n\n"; |
40 | 40 | } |
@@ -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 | |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | */ |
14 | 14 | abstract class TaskBase extends ContextSource { |
15 | 15 | /** @var string[] */ |
16 | - protected $errors = []; |
|
16 | + protected $errors = [ ]; |
|
17 | 17 | /** @var TaskDataProvider */ |
18 | 18 | protected $dataProvider; |
19 | 19 | |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | * @param Wiki $wiki |
25 | 25 | * @param TaskDataProvider $dataProvider |
26 | 26 | */ |
27 | - final public function __construct( |
|
27 | + final public function __construct ( |
|
28 | 28 | LoggerInterface $logger, |
29 | 29 | Wiki $wiki, |
30 | 30 | TaskDataProvider $dataProvider |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | * |
39 | 39 | * @return TaskResult |
40 | 40 | */ |
41 | - final public function run() : TaskResult { |
|
41 | + final public function run () : TaskResult { |
|
42 | 42 | $class = ( new \ReflectionClass( $this ) )->getShortName(); |
43 | 43 | $opName = $this->getOperationName(); |
44 | 44 | $this->getLogger()->info( "Starting $opName $class" ); |
@@ -69,19 +69,19 @@ discard block |
||
69 | 69 | * |
70 | 70 | * @return int One of the STATUS_* constants |
71 | 71 | */ |
72 | - abstract protected function runInternal() : int; |
|
72 | + abstract protected function runInternal () : int; |
|
73 | 73 | |
74 | 74 | /** |
75 | 75 | * How this operation should be called in logs |
76 | 76 | * |
77 | 77 | * @return string |
78 | 78 | */ |
79 | - abstract public function getOperationName() : string; |
|
79 | + abstract public function getOperationName () : string; |
|
80 | 80 | |
81 | 81 | /** |
82 | 82 | * @return TaskDataProvider |
83 | 83 | */ |
84 | - protected function getDataProvider() : TaskDataProvider { |
|
84 | + protected function getDataProvider () : TaskDataProvider { |
|
85 | 85 | return $this->dataProvider; |
86 | 86 | } |
87 | 87 | } |
@@ -1,4 +1,4 @@ discard block |
||
1 | -<?php declare( strict_types=1 ); |
|
1 | +<?php declare(strict_types=1); |
|
2 | 2 | |
3 | 3 | namespace BotRiconferme\Logger; |
4 | 4 | |
@@ -8,5 +8,5 @@ discard block |
||
8 | 8 | * Logger aware of flushing. Can be declared empty if the buffer is flushed immediately. |
9 | 9 | */ |
10 | 10 | interface IFlushingAwareLogger extends LoggerInterface { |
11 | - public function flush() : void; |
|
11 | + public function flush () : void; |
|
12 | 12 | } |