@@ -18,7 +18,7 @@ discard block |
||
| 18 | 18 | * Get metadata about a single page from the API. |
| 19 | 19 | * @param Project $project The project to which the page belongs. |
| 20 | 20 | * @param string $pageTitle Page title. |
| 21 | - * @return string[] Array with some of the following keys: pageid, title, missing, displaytitle, |
|
| 21 | + * @return string|null Array with some of the following keys: pageid, title, missing, displaytitle, |
|
| 22 | 22 | * url. |
| 23 | 23 | */ |
| 24 | 24 | public function getPageInfo(Project $project, $pageTitle) |
@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | * Get the statement for a single revision, so that you can iterate row by row. |
| 97 | 97 | * @param Page $page The page. |
| 98 | 98 | * @param User|null $user Specify to get only revisions by the given user. |
| 99 | - * @return Doctrine\DBAL\Driver\PDOStatement |
|
| 99 | + * @return \Doctrine\DBAL\Driver\Statement |
|
| 100 | 100 | */ |
| 101 | 101 | public function getRevisionsStmt(Page $page, User $user = null) |
| 102 | 102 | { |
@@ -272,7 +272,7 @@ discard block |
||
| 272 | 272 | |
| 273 | 273 | $wikidataId = ltrim($page->getWikidataId(), 'Q'); |
| 274 | 274 | |
| 275 | - $sql = "SELECT " . ($count ? 'COUNT(*) AS count' : '*') . " |
|
| 275 | + $sql = "SELECT ".($count ? 'COUNT(*) AS count' : '*')." |
|
| 276 | 276 | FROM wikidatawiki_p.wb_items_per_site |
| 277 | 277 | WHERE ips_item_id = :wikidataId"; |
| 278 | 278 | |
@@ -282,7 +282,7 @@ discard block |
||
| 282 | 282 | |
| 283 | 283 | $result = $resultQuery->fetchAll(); |
| 284 | 284 | |
| 285 | - return $count ? (int) $result[0]['count'] : $result; |
|
| 285 | + return $count ? (int)$result[0]['count'] : $result; |
|
| 286 | 286 | } |
| 287 | 287 | |
| 288 | 288 | /** |
@@ -323,7 +323,7 @@ discard block |
||
| 323 | 323 | |
| 324 | 324 | // Transform to associative array by 'type' |
| 325 | 325 | foreach ($res as $row) { |
| 326 | - $data[$row['type'] . '_count'] = $row['value']; |
|
| 326 | + $data[$row['type'].'_count'] = $row['value']; |
|
| 327 | 327 | } |
| 328 | 328 | |
| 329 | 329 | return $data; |
@@ -389,7 +389,7 @@ |
||
| 389 | 389 | * The edit previously deemed as having the maximum amount of content added. |
| 390 | 390 | * This is used to discount content that was reverted. |
| 391 | 391 | * @var Edit|null |
| 392 | - */ |
|
| 392 | + */ |
|
| 393 | 393 | $prevMaxAddEdit = null; |
| 394 | 394 | |
| 395 | 395 | /** |
@@ -84,9 +84,9 @@ discard block |
||
| 84 | 84 | $article = $request->query->get('article'); |
| 85 | 85 | |
| 86 | 86 | if ($projectQuery != '' && $article != '') { |
| 87 | - return $this->redirectToRoute('ArticleInfoResult', [ 'project'=>$projectQuery, 'article' => $article ]); |
|
| 87 | + return $this->redirectToRoute('ArticleInfoResult', ['project'=>$projectQuery, 'article' => $article]); |
|
| 88 | 88 | } elseif ($article != '') { |
| 89 | - return $this->redirectToRoute('ArticleInfoProject', [ 'project'=>$projectQuery ]); |
|
| 89 | + return $this->redirectToRoute('ArticleInfoProject', ['project'=>$projectQuery]); |
|
| 90 | 90 | } |
| 91 | 91 | |
| 92 | 92 | if ($projectQuery == '') { |
@@ -188,10 +188,10 @@ discard block |
||
| 188 | 188 | $userGroupsTable = $this->projectRepo->getTableName($this->dbName, 'user_groups'); |
| 189 | 189 | $userFromerGroupsTable = $this->projectRepo->getTableName($this->dbName, 'user_former_groups'); |
| 190 | 190 | $query = "SELECT COUNT(rev_user_text) AS count, rev_user_text AS username, ug_group AS current |
| 191 | - FROM " . $this->projectRepo->getTableName($this->dbName, 'revision') . " |
|
| 191 | + FROM " . $this->projectRepo->getTableName($this->dbName, 'revision')." |
|
| 192 | 192 | LEFT JOIN $userGroupsTable ON rev_user = ug_user |
| 193 | 193 | LEFT JOIN $userFromerGroupsTable ON rev_user = ufg_user |
| 194 | - WHERE rev_page = " . $this->pageInfo['page']->getId() . " AND (ug_group = 'bot' OR ufg_group = 'bot') |
|
| 194 | + WHERE rev_page = ".$this->pageInfo['page']->getId()." AND (ug_group = 'bot' OR ufg_group = 'bot') |
|
| 195 | 195 | GROUP BY rev_user_text"; |
| 196 | 196 | $res = $this->conn->query($query)->fetchAll(); |
| 197 | 197 | |
@@ -200,14 +200,14 @@ discard block |
||
| 200 | 200 | $sum = 0; |
| 201 | 201 | foreach ($res as $bot) { |
| 202 | 202 | $bots[$bot['username']] = [ |
| 203 | - 'count' => (int) $bot['count'], |
|
| 203 | + 'count' => (int)$bot['count'], |
|
| 204 | 204 | 'current' => $bot['current'] === 'bot' |
| 205 | 205 | ]; |
| 206 | 206 | $sum += $bot['count']; |
| 207 | 207 | } |
| 208 | 208 | |
| 209 | - uasort($bots, function ($a, $b) { |
|
| 210 | - return $b['count'] - $a['count']; |
|
| 209 | + uasort($bots, function($a, $b) { |
|
| 210 | + return $b['count']-$a['count']; |
|
| 211 | 211 | }); |
| 212 | 212 | |
| 213 | 213 | $this->pageInfo['general']['bot_revision_count'] = $sum; |
@@ -255,10 +255,10 @@ discard block |
||
| 255 | 255 | |
| 256 | 256 | if ($info['all'] > 1) { |
| 257 | 257 | // Number of seconds between first and last edit |
| 258 | - $secs = $info['last']->getTimestamp() - $info['first']->getTimestamp(); |
|
| 258 | + $secs = $info['last']->getTimestamp()-$info['first']->getTimestamp(); |
|
| 259 | 259 | |
| 260 | 260 | // Average time between edits (in days) |
| 261 | - $this->pageInfo['editors'][$editor]['atbe'] = $secs / ( 60 * 60 * 24 ); |
|
| 261 | + $this->pageInfo['editors'][$editor]['atbe'] = $secs / (60 * 60 * 24); |
|
| 262 | 262 | } |
| 263 | 263 | |
| 264 | 264 | if (count($info['sizes'])) { |
@@ -273,7 +273,7 @@ discard block |
||
| 273 | 273 | |
| 274 | 274 | // First sort editors array by the amount of text they added |
| 275 | 275 | $topTenEditorsByAdded = $this->pageInfo['editors']; |
| 276 | - uasort($topTenEditorsByAdded, function ($a, $b) { |
|
| 276 | + uasort($topTenEditorsByAdded, function($a, $b) { |
|
| 277 | 277 | if ($a['added'] === $b['added']) { |
| 278 | 278 | return 0; |
| 279 | 279 | } |
@@ -282,7 +282,7 @@ discard block |
||
| 282 | 282 | |
| 283 | 283 | // Then build a new array of top 10 editors by added text, |
| 284 | 284 | // in the data structure needed for the chart |
| 285 | - $this->pageInfo['topTenEditorsByAdded'] = array_map(function ($editor) { |
|
| 285 | + $this->pageInfo['topTenEditorsByAdded'] = array_map(function($editor) { |
|
| 286 | 286 | $added = $this->pageInfo['editors'][$editor]['added']; |
| 287 | 287 | return [ |
| 288 | 288 | 'label' => $editor, |
@@ -306,7 +306,7 @@ discard block |
||
| 306 | 306 | $title = str_replace(' ', '_', $this->pageInfo['page']->getTitle()); |
| 307 | 307 | $query = "SELECT log_action, log_type, log_timestamp AS timestamp |
| 308 | 308 | FROM $loggingTable |
| 309 | - WHERE log_namespace = '" . $this->pageInfo['page']->getNamespace() . "' |
|
| 309 | + WHERE log_namespace = '".$this->pageInfo['page']->getNamespace()."' |
|
| 310 | 310 | AND log_title = '$title' AND log_timestamp > 1 |
| 311 | 311 | AND log_type IN ('delete', 'move', 'protect', 'stable')"; |
| 312 | 312 | $events = $this->conn->query($query)->fetchAll(); |
@@ -423,7 +423,7 @@ discard block |
||
| 423 | 423 | |
| 424 | 424 | if ($revCount === 0) { |
| 425 | 425 | $firstEdit = $edit; |
| 426 | - $firstEditMonth = mktime(0, 0, 0, (int) $firstEdit->getMonth(), 1, $firstEdit->getYear()); |
|
| 426 | + $firstEditMonth = mktime(0, 0, 0, (int)$firstEdit->getMonth(), 1, $firstEdit->getYear()); |
|
| 427 | 427 | } |
| 428 | 428 | |
| 429 | 429 | $username = $edit->getUser()->getUsername(); |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | |
| 78 | 78 | $this->stopwatch->start($cacheKey, 'XTools'); |
| 79 | 79 | $api = $this->getMediawikiApi($project); |
| 80 | - $params = [ "list"=>"users", "ususers"=>$username, "usprop"=>"groups" ]; |
|
| 80 | + $params = ["list"=>"users", "ususers"=>$username, "usprop"=>"groups"]; |
|
| 81 | 81 | $query = new SimpleRequest('query', $params); |
| 82 | 82 | $result = []; |
| 83 | 83 | $res = $api->getRequest($query); |
@@ -112,7 +112,7 @@ discard block |
||
| 112 | 112 | |
| 113 | 113 | // Create the API query. |
| 114 | 114 | $api = $this->getMediawikiApi($project); |
| 115 | - $params = [ "meta"=>"globaluserinfo", "guiuser"=>$username, "guiprop"=>"groups" ]; |
|
| 115 | + $params = ["meta"=>"globaluserinfo", "guiuser"=>$username, "guiprop"=>"groups"]; |
|
| 116 | 116 | $query = new SimpleRequest('query', $params); |
| 117 | 117 | |
| 118 | 118 | // Get the result. |
@@ -156,8 +156,8 @@ discard block |
||
| 156 | 156 | { |
| 157 | 157 | $username = $user->getUsername(); |
| 158 | 158 | |
| 159 | - $cacheKey = 'pages.' . $project->getDatabaseName() . '.' |
|
| 160 | - . $user->getCacheKey() . '.' . $namespace . '.' . $redirects; |
|
| 159 | + $cacheKey = 'pages.'.$project->getDatabaseName().'.' |
|
| 160 | + . $user->getCacheKey().'.'.$namespace.'.'.$redirects; |
|
| 161 | 161 | if ($this->cache->hasItem($cacheKey)) { |
| 162 | 162 | return $this->cache->getItem($cacheKey)->get(); |
| 163 | 163 | } |
@@ -215,7 +215,7 @@ discard block |
||
| 215 | 215 | JOIN $revisionTable ON page_id = rev_page |
| 216 | 216 | $paJoin |
| 217 | 217 | WHERE $whereRev AND rev_parent_id = '0' $namespaceConditionRev $redirectCondition |
| 218 | - " . ($hasPageAssessments ? 'GROUP BY rev_page' : '') . " |
|
| 218 | + ".($hasPageAssessments ? 'GROUP BY rev_page' : '')." |
|
| 219 | 219 | ) |
| 220 | 220 | |
| 221 | 221 | UNION |