@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | public function loginAction() |
91 | 91 | { |
92 | 92 | try { |
93 | - list( $next, $token ) = $this->getOauthClient()->initiate(); |
|
93 | + list($next, $token) = $this->getOauthClient()->initiate(); |
|
94 | 94 | } catch (Exception $oauthException) { |
95 | 95 | throw $oauthException; |
96 | 96 | // @TODO Make this work. |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | . '/index.php?title=Special:OAuth'; |
156 | 156 | $conf = new ClientConfig($endpoint); |
157 | 157 | $consumerKey = $this->getParameter('oauth_key'); |
158 | - $consumerSecret = $this->getParameter('oauth_secret'); |
|
158 | + $consumerSecret = $this->getParameter('oauth_secret'); |
|
159 | 159 | $conf->setConsumer(new Consumer($consumerKey, $consumerSecret)); |
160 | 160 | $this->oauthClient = new Client($conf); |
161 | 161 | // Callback URL is hardcoded in the consumer registration. |
@@ -139,7 +139,7 @@ |
||
139 | 139 | } |
140 | 140 | |
141 | 141 | $conn = $this->getDoctrine()->getManager('default')->getConnection(); |
142 | - $date = date('Y-m-d'); |
|
142 | + $date = date('Y-m-d'); |
|
143 | 143 | |
144 | 144 | // Increment count in timeline |
145 | 145 | $existsSql = "SELECT 1 FROM usage_timeline |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | $end = $request->query->get('end'); |
32 | 32 | |
33 | 33 | if ($start != '' && $end != '') { |
34 | - return $this->redirectToRoute('MetaResult', [ 'start' => $start, 'end' => $end ]); |
|
34 | + return $this->redirectToRoute('MetaResult', ['start' => $start, 'end' => $end]); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | return $this->render('meta/index.html.twig', [ |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | $timeline = []; |
74 | 74 | $startObj = new DateTime($start); |
75 | 75 | $endObj = new DateTime($end); |
76 | - $numDays = (int) $endObj->diff($startObj)->format("%a"); |
|
76 | + $numDays = (int)$endObj->diff($startObj)->format("%a"); |
|
77 | 77 | $grandSum = 0; |
78 | 78 | |
79 | 79 | // Generate array of date labels |
@@ -85,17 +85,17 @@ discard block |
||
85 | 85 | |
86 | 86 | foreach ($data as $entry) { |
87 | 87 | if (!isset($totals[$entry['tool']])) { |
88 | - $totals[$entry['tool']] = (int) $entry['count']; |
|
88 | + $totals[$entry['tool']] = (int)$entry['count']; |
|
89 | 89 | |
90 | 90 | // Create arrays for each tool, filled with zeros for each date in the timeline |
91 | 91 | $timeline[$entry['tool']] = array_fill(0, $numDays, 0); |
92 | 92 | } else { |
93 | - $totals[$entry['tool']] += (int) $entry['count']; |
|
93 | + $totals[$entry['tool']] += (int)$entry['count']; |
|
94 | 94 | } |
95 | 95 | |
96 | 96 | $date = new DateTime($entry['date']); |
97 | - $dateIndex = (int) $date->diff($startObj)->format("%a"); |
|
98 | - $timeline[$entry['tool']][$dateIndex] = (int) $entry['count']; |
|
97 | + $dateIndex = (int)$date->diff($startObj)->format("%a"); |
|
98 | + $timeline[$entry['tool']][$dateIndex] = (int)$entry['count']; |
|
99 | 99 | |
100 | 100 | $grandSum += $entry['count']; |
101 | 101 | } |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | 'username' => $username, |
79 | 79 | ]); |
80 | 80 | } elseif ($projectQuery != "") { |
81 | - return $this->redirectToRoute("PagesProject", [ 'project'=>$projectQuery ]); |
|
81 | + return $this->redirectToRoute("PagesProject", ['project'=>$projectQuery]); |
|
82 | 82 | } |
83 | 83 | |
84 | 84 | // set default wiki so we can populate the namespace selector |
@@ -196,7 +196,7 @@ discard block |
||
196 | 196 | JOIN $revisionTable ON page_id = rev_page |
197 | 197 | $paJoin |
198 | 198 | WHERE $whereRev AND rev_parent_id = '0' $namespaceConditionRev $redirectCondition |
199 | - " . ($hasPageAssessments ? 'GROUP BY rev_page' : '') . " |
|
199 | + ".($hasPageAssessments ? 'GROUP BY rev_page' : '')." |
|
200 | 200 | ) |
201 | 201 | |
202 | 202 | UNION |
@@ -280,8 +280,8 @@ discard block |
||
280 | 280 | } |
281 | 281 | |
282 | 282 | if ($total < 1) { |
283 | - $this->addFlash('notice', [ 'no-result', $username ]); |
|
284 | - return $this->redirectToRoute('PagesProject', [ 'project' => $project ]); |
|
283 | + $this->addFlash('notice', ['no-result', $username]); |
|
284 | + return $this->redirectToRoute('PagesProject', ['project' => $project]); |
|
285 | 285 | } |
286 | 286 | |
287 | 287 | ksort($pagesByNamespaceByDate); |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | */ |
31 | 31 | public function intuitionMessage($message = "", $vars = []) |
32 | 32 | { |
33 | - return $this->getIntuition()->msg($message, [ "domain" => "xtools", "variables" => $vars ]); |
|
33 | + return $this->getIntuition()->msg($message, ["domain" => "xtools", "variables" => $vars]); |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | /*********************************** FUNCTIONS ***********************************/ |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | */ |
42 | 42 | public function getFunctions() |
43 | 43 | { |
44 | - $options = [ 'is_safe' => [ 'html']]; |
|
44 | + $options = ['is_safe' => ['html']]; |
|
45 | 45 | return []; |
46 | 46 | } |
47 | 47 | |
@@ -54,8 +54,8 @@ discard block |
||
54 | 54 | public function getFilters() |
55 | 55 | { |
56 | 56 | return [ |
57 | - new \Twig_SimpleFilter('diff_format', [ $this, 'diffFormat' ], [ 'is_safe' => [ 'html' ] ]), |
|
58 | - new \Twig_SimpleFilter('wikify_comment', [ $this, 'wikifyComment' ], [ 'is_safe' => [ 'html' ] ]), |
|
57 | + new \Twig_SimpleFilter('diff_format', [$this, 'diffFormat'], ['is_safe' => ['html']]), |
|
58 | + new \Twig_SimpleFilter('wikify_comment', [$this, 'wikifyComment'], ['is_safe' => ['html']]), |
|
59 | 59 | ]; |
60 | 60 | } |
61 | 61 | |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | if ($isSection) { |
95 | 95 | $sectionTitle = $sectionMatch[1][0]; |
96 | 96 | $sectionTitleLink = str_replace(' ', '_', $sectionTitle); |
97 | - $sectionWikitext = "<a target='_blank' href='$projectUrl/wiki/$title#$sectionTitleLink'>→</a>" . |
|
97 | + $sectionWikitext = "<a target='_blank' href='$projectUrl/wiki/$title#$sectionTitleLink'>→</a>". |
|
98 | 98 | "<em class='text-muted'>$sectionTitle:</em> "; |
99 | 99 | $wikitext = str_replace($sectionMatch[0][0], $sectionWikitext, $wikitext); |
100 | 100 | } |
@@ -235,7 +235,7 @@ |
||
235 | 235 | $classAttrs = $config['class']['Unknown']; |
236 | 236 | $assessment['class']['value'] = '???'; |
237 | 237 | $assessment['class']['category'] = $classAttrs['category']; |
238 | - $assessment['class']['badge'] = "https://upload.wikimedia.org/wikipedia/commons/". $classAttrs['badge']; |
|
238 | + $assessment['class']['badge'] = "https://upload.wikimedia.org/wikipedia/commons/".$classAttrs['badge']; |
|
239 | 239 | } else { |
240 | 240 | $classAttrs = $config['class'][$classValue]; |
241 | 241 | $assessment['class'] = [ |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | public function groups($project, $username) |
66 | 66 | { |
67 | 67 | $this->setUp($project); |
68 | - $params = [ "list"=>"users", "ususers"=>$username, "usprop"=>"groups" ]; |
|
68 | + $params = ["list"=>"users", "ususers"=>$username, "usprop"=>"groups"]; |
|
69 | 69 | $query = new SimpleRequest('query', $params); |
70 | 70 | $result = []; |
71 | 71 | |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | public function globalGroups($project, $username) |
92 | 92 | { |
93 | 93 | $this->setUp($project); |
94 | - $params = [ "meta"=>"globaluserinfo", "guiuser"=>$username, "guiprop"=>"groups" ]; |
|
94 | + $params = ["meta"=>"globaluserinfo", "guiuser"=>$username, "guiprop"=>"groups"]; |
|
95 | 95 | $query = new SimpleRequest('query', $params); |
96 | 96 | $result = []; |
97 | 97 | |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | $groups[] = "B"; |
142 | 142 | } |
143 | 143 | if (in_array("steward", $admin["groups"])) { |
144 | - $groups[] = "S" ; |
|
144 | + $groups[] = "S"; |
|
145 | 145 | } |
146 | 146 | if (in_array("checkuser", $admin["groups"])) { |
147 | 147 | $groups[] = "CU"; |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | if (in_array("bot", $admin["groups"])) { |
153 | 153 | $groups[] = "Bot"; |
154 | 154 | } |
155 | - $result[ $admin["name"] ] = [ |
|
155 | + $result[$admin["name"]] = [ |
|
156 | 156 | "groups" => implode('/', $groups) |
157 | 157 | ]; |
158 | 158 | } |
@@ -227,7 +227,7 @@ discard block |
||
227 | 227 | $normalized = []; |
228 | 228 | if (isset($result['query']['normalized'])) { |
229 | 229 | array_map( |
230 | - function ($e) use (&$normalized) { |
|
230 | + function($e) use (&$normalized) { |
|
231 | 231 | $normalized[$e['to']] = $e['from']; |
232 | 232 | }, |
233 | 233 | $result['query']['normalized'] |
@@ -312,7 +312,7 @@ discard block |
||
312 | 312 | $query = FluentRequest::factory()->setAction('query')->setParams($requestData); |
313 | 313 | $innerPromise = $this->api->getRequestAsync($query); |
314 | 314 | |
315 | - $innerPromise->then(function ($result) use (&$data) { |
|
315 | + $innerPromise->then(function($result) use (&$data) { |
|
316 | 316 | // some failures come back as 200s, so we still resolve and let the outer function handle it |
317 | 317 | if (isset($result['error']) || !isset($result['query'])) { |
318 | 318 | return $data['promise']->resolve($data); |
@@ -47,9 +47,9 @@ discard block |
||
47 | 47 | $username = $request->query->get('username', $request->query->get('user')); |
48 | 48 | |
49 | 49 | if ($projectQuery != '' && $username != '') { |
50 | - return $this->redirectToRoute('AdminScoreResult', [ 'project' => $projectQuery, 'username' => $username ]); |
|
50 | + return $this->redirectToRoute('AdminScoreResult', ['project' => $projectQuery, 'username' => $username]); |
|
51 | 51 | } elseif ($projectQuery != '') { |
52 | - return $this->redirectToRoute('AdminScoreProject', [ 'project' => $projectQuery ]); |
|
52 | + return $this->redirectToRoute('AdminScoreProject', ['project' => $projectQuery]); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | // Set default project so we can populate the namespace selector. |
@@ -95,20 +95,20 @@ discard block |
||
95 | 95 | $archiveTable = $projectRepo->getTableName($dbName, 'archive'); |
96 | 96 | |
97 | 97 | // MULTIPLIERS (to review) |
98 | - $ACCT_AGE_MULT = 1.25; # 0 if = 365 jours |
|
99 | - $EDIT_COUNT_MULT = 1.25; # 0 if = 10 000 |
|
100 | - $USER_PAGE_MULT = 0.1; # 0 if = |
|
98 | + $ACCT_AGE_MULT = 1.25; # 0 if = 365 jours |
|
99 | + $EDIT_COUNT_MULT = 1.25; # 0 if = 10 000 |
|
100 | + $USER_PAGE_MULT = 0.1; # 0 if = |
|
101 | 101 | $PATROLS_MULT = 1; # 0 if = |
102 | - $BLOCKS_MULT = 1.4; # 0 if = 10 |
|
102 | + $BLOCKS_MULT = 1.4; # 0 if = 10 |
|
103 | 103 | $AFD_MULT = 1.15; |
104 | - $RECENT_ACTIVITY_MULT = 0.9; # 0 if = |
|
104 | + $RECENT_ACTIVITY_MULT = 0.9; # 0 if = |
|
105 | 105 | $AIV_MULT = 1.15; |
106 | - $EDIT_SUMMARIES_MULT = 0.8; # 0 if = |
|
107 | - $NAMESPACES_MULT = 1.0; # 0 if = |
|
106 | + $EDIT_SUMMARIES_MULT = 0.8; # 0 if = |
|
107 | + $NAMESPACES_MULT = 1.0; # 0 if = |
|
108 | 108 | $PAGES_CREATED_LIVE_MULT = 1.4; # 0 if = |
109 | 109 | $PAGES_CREATED_ARCHIVE_MULT = 1.4; # 0 if = |
110 | - $RPP_MULT = 1.15; # 0 if = |
|
111 | - $USERRIGHTS_MULT = 0.75; # 0 if = |
|
110 | + $RPP_MULT = 1.15; # 0 if = |
|
111 | + $USERRIGHTS_MULT = 0.75; # 0 if = |
|
112 | 112 | |
113 | 113 | // Grab the connection to the replica database (which is separate from the above) |
114 | 114 | $conn = $this->get('doctrine')->getManager("replicas")->getConnection(); |
@@ -186,15 +186,15 @@ discard block |
||
186 | 186 | $now = new DateTime(); |
187 | 187 | $date = new DateTime($value); |
188 | 188 | $diff = $date->diff($now); |
189 | - $formula = 365*$diff->format("%y")+30*$diff->format("%m")+$diff->format("%d"); |
|
189 | + $formula = 365 * $diff->format("%y")+30 * $diff->format("%m")+$diff->format("%d"); |
|
190 | 190 | $value = $formula-365; |
191 | 191 | } |
192 | 192 | |
193 | 193 | if ($key == "id") { |
194 | 194 | $id = $value; |
195 | 195 | } else { |
196 | - $multiplierKey = strtoupper($row["source"] . "_MULT"); |
|
197 | - $multiplier = ( isset($$multiplierKey) ? $$multiplierKey : 1 ); |
|
196 | + $multiplierKey = strtoupper($row["source"]."_MULT"); |
|
197 | + $multiplier = (isset($$multiplierKey) ? $$multiplierKey : 1); |
|
198 | 198 | $score = max(min($value * $multiplier, 100), -100); |
199 | 199 | $master[$key]["mult"] = $multiplier; |
200 | 200 | $master[$key]["value"] = $value; |
@@ -204,8 +204,8 @@ discard block |
||
204 | 204 | } |
205 | 205 | |
206 | 206 | if ($id == 0) { |
207 | - $this->addFlash("notice", [ "no-result", $username ]); |
|
208 | - return $this->redirectToRoute("AdminScore", [ "project"=>$project ]); |
|
207 | + $this->addFlash("notice", ["no-result", $username]); |
|
208 | + return $this->redirectToRoute("AdminScore", ["project"=>$project]); |
|
209 | 209 | } |
210 | 210 | |
211 | 211 | return $this->render('adminscore/result.html.twig', [ |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | $archiveTable = $projectData->getRepository()->getTableName($dbName, 'archive'); |
169 | 169 | |
170 | 170 | $condBegin = $start ? " AND rev_timestamp > :start " : null; |
171 | - $condEnd = $end ? " AND rev_timestamp < :end ": null; |
|
171 | + $condEnd = $end ? " AND rev_timestamp < :end " : null; |
|
172 | 172 | |
173 | 173 | $regexes = []; |
174 | 174 | |
@@ -262,8 +262,8 @@ discard block |
||
262 | 262 | } |
263 | 263 | |
264 | 264 | // Sort the array and do some simple math. |
265 | - uasort($results, function ($a, $b) { |
|
266 | - return $b['count'] - $a['count']; |
|
265 | + uasort($results, function($a, $b) { |
|
266 | + return $b['count']-$a['count']; |
|
267 | 267 | }); |
268 | 268 | |
269 | 269 | if ($total != 0) { |