@@ -12,7 +12,7 @@ |
||
| 12 | 12 | // Feel free to remove this, extend it, or make something more sophisticated. |
| 13 | 13 | if (isset($_SERVER['HTTP_CLIENT_IP']) |
| 14 | 14 | || isset($_SERVER['HTTP_X_FORWARDED_FOR']) |
| 15 | - || !( in_array(@$_SERVER['REMOTE_ADDR'], [ '127.0.0.1', 'fe80::1', '::1' ]) || php_sapi_name() === 'cli-server' ) |
|
| 15 | + || !(in_array(@$_SERVER['REMOTE_ADDR'], ['127.0.0.1', 'fe80::1', '::1']) || php_sapi_name() === 'cli-server') |
|
| 16 | 16 | ) { |
| 17 | 17 | header('HTTP/1.0 403 Forbidden'); |
| 18 | 18 | exit('You are not allowed to access this file. Check '.basename(__FILE__).' for more information.'); |
@@ -12,8 +12,8 @@ discard block |
||
| 12 | 12 | $title = str_replace(' ', '_', $title); |
| 13 | 13 | $client = new GuzzleHttp\Client(); |
| 14 | 14 | |
| 15 | - $url = 'https://wikimedia.org/api/rest_v1/metrics/pageviews/per-article/' . |
|
| 16 | - "$project/all-access/user/" . rawurlencode($title) . '/daily/' . $start . '/' . $end; |
|
| 15 | + $url = 'https://wikimedia.org/api/rest_v1/metrics/pageviews/per-article/'. |
|
| 16 | + "$project/all-access/user/".rawurlencode($title).'/daily/'.$start.'/'.$end; |
|
| 17 | 17 | |
| 18 | 18 | $res = $client->request('GET', $url); |
| 19 | 19 | return json_decode($res->getBody()->getContents()); |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | $data = $this->getLastDays($project, $title, $days); |
| 33 | 33 | |
| 34 | 34 | // FIXME: needs to handle gotchas |
| 35 | - return array_sum(array_map(function ($item) { |
|
| 35 | + return array_sum(array_map(function($item) { |
|
| 36 | 36 | return $item->views; |
| 37 | 37 | }, $data->items)); |
| 38 | 38 | } |
@@ -45,7 +45,7 @@ |
||
| 45 | 45 | } |
| 46 | 46 | |
| 47 | 47 | // Find the path, and complain if English doesn't exist. |
| 48 | - $path = $this->container->getParameter("kernel.root_dir") . '/../i18n'; |
|
| 48 | + $path = $this->container->getParameter("kernel.root_dir").'/../i18n'; |
|
| 49 | 49 | if (!file_exists("$path/en.json")) { |
| 50 | 50 | throw new Exception("Language directory doesn't exist: $path"); |
| 51 | 51 | } |
@@ -176,7 +176,7 @@ |
||
| 176 | 176 | |
| 177 | 177 | // Iterate over query results, loading each user id into the array |
| 178 | 178 | while ($row = $res->fetch()) { |
| 179 | - $adminIdArr[] = $row["user_id"] ; |
|
| 179 | + $adminIdArr[] = $row["user_id"]; |
|
| 180 | 180 | } |
| 181 | 181 | |
| 182 | 182 | // Set the query results to be useful in a sql statement. |
@@ -111,7 +111,7 @@ discard block |
||
| 111 | 111 | 'quote/all.html.twig', |
| 112 | 112 | [ |
| 113 | 113 | 'base_dir' => realpath( |
| 114 | - $this->getParameter('kernel.root_dir') . '/..' |
|
| 114 | + $this->getParameter('kernel.root_dir').'/..' |
|
| 115 | 115 | ), |
| 116 | 116 | 'xtPage' => 'bash', |
| 117 | 117 | 'quotes' => $quotes, |
@@ -160,7 +160,7 @@ discard block |
||
| 160 | 160 | 'quote/view.html.twig', |
| 161 | 161 | [ |
| 162 | 162 | 'base_dir' => realpath( |
| 163 | - $this->getParameter('kernel.root_dir') . '/..' |
|
| 163 | + $this->getParameter('kernel.root_dir').'/..' |
|
| 164 | 164 | ), |
| 165 | 165 | "xtPage" => "bash", |
| 166 | 166 | "text" => $text, |
@@ -96,7 +96,7 @@ |
||
| 96 | 96 | * List top edits by this user for all pages in a particular namespace. |
| 97 | 97 | * @param User $user The User. |
| 98 | 98 | * @param Project $project The project. |
| 99 | - * @param integer|string $namespaceId The namespace ID or 'all' |
|
| 99 | + * @param integer $namespaceId The namespace ID or 'all' |
|
| 100 | 100 | * @return \Symfony\Component\HttpFoundation\Response |
| 101 | 101 | */ |
| 102 | 102 | protected function namespaceTopEdits(User $user, Project $project, $namespaceId) |
@@ -168,11 +168,11 @@ discard block |
||
| 168 | 168 | } |
| 169 | 169 | |
| 170 | 170 | // Get page info about these 100 pages, so we can use their display title. |
| 171 | - $titles = array_map(function ($e) use ($namespaces) { |
|
| 171 | + $titles = array_map(function($e) use ($namespaces) { |
|
| 172 | 172 | // If non-mainspace, prepend namespace to the titles. |
| 173 | 173 | $ns = $e['page_namespace']; |
| 174 | - $nsTitle = $ns > 0 ? $namespaces[$e['page_namespace']] . ':' : ''; |
|
| 175 | - return $nsTitle . $e['page_title']; |
|
| 174 | + $nsTitle = $ns > 0 ? $namespaces[$e['page_namespace']].':' : ''; |
|
| 175 | + return $nsTitle.$e['page_title']; |
|
| 176 | 176 | }, $editData); |
| 177 | 177 | |
| 178 | 178 | /** @var ApiHelper $apiHelper */ |
@@ -188,8 +188,8 @@ discard block |
||
| 188 | 188 | foreach ($editData as $editDatum) { |
| 189 | 189 | // If non-mainspace, prepend namespace to the titles. |
| 190 | 190 | $ns = $editDatum['page_namespace']; |
| 191 | - $nsTitle = $ns > 0 ? $namespaces[$editDatum['page_namespace']] . ':' : ''; |
|
| 192 | - $pageTitle = $nsTitle . $editDatum['page_title']; |
|
| 191 | + $nsTitle = $ns > 0 ? $namespaces[$editDatum['page_namespace']].':' : ''; |
|
| 192 | + $pageTitle = $nsTitle.$editDatum['page_title']; |
|
| 193 | 193 | $editDatum['displaytitle'] = $displayTitles[$pageTitle]; |
| 194 | 194 | // $editDatum['page_title'] is retained without the namespace |
| 195 | 195 | // so we can link to TopEdits for that page |
@@ -249,7 +249,7 @@ discard block |
||
| 249 | 249 | // Send all to the template. |
| 250 | 250 | return $this->render('topedits/result_article.html.twig', [ |
| 251 | 251 | 'xtPage' => 'topedits', |
| 252 | - 'xtTitle' => $user->getUsername() . ' - ' . $page->getTitle(), |
|
| 252 | + 'xtTitle' => $user->getUsername().' - '.$page->getTitle(), |
|
| 253 | 253 | 'project' => $project, |
| 254 | 254 | 'user' => $user, |
| 255 | 255 | 'page' => $page, |
@@ -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. |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | |
| 60 | 60 | /** |
| 61 | 61 | * Get this page's database ID. |
| 62 | - * @return int |
|
| 62 | + * @return \string|null |
|
| 63 | 63 | */ |
| 64 | 64 | public function getId() |
| 65 | 65 | { |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | |
| 70 | 70 | /** |
| 71 | 71 | * Get this page's length in bytes. |
| 72 | - * @return int |
|
| 72 | + * @return \string|null |
|
| 73 | 73 | */ |
| 74 | 74 | public function getLength() |
| 75 | 75 | { |
@@ -93,7 +93,7 @@ discard block |
||
| 93 | 93 | |
| 94 | 94 | /** |
| 95 | 95 | * Get the full URL of this page. |
| 96 | - * @return string |
|
| 96 | + * @return \string|null |
|
| 97 | 97 | */ |
| 98 | 98 | public function getUrl() |
| 99 | 99 | { |
@@ -103,7 +103,7 @@ discard block |
||
| 103 | 103 | |
| 104 | 104 | /** |
| 105 | 105 | * Get the numerical ID of the namespace of this page. |
| 106 | - * @return int |
|
| 106 | + * @return \string|null |
|
| 107 | 107 | */ |
| 108 | 108 | public function getNamespace() |
| 109 | 109 | { |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | |
| 114 | 114 | /** |
| 115 | 115 | * Get the number of page watchers. |
| 116 | - * @return int |
|
| 116 | + * @return \string|null |
|
| 117 | 117 | */ |
| 118 | 118 | public function getWatchers() |
| 119 | 119 | { |
@@ -327,7 +327,7 @@ discard block |
||
| 327 | 327 | |
| 328 | 328 | $wikidataInfo = $this->getRepository()->getWikidataInfo($this); |
| 329 | 329 | |
| 330 | - $terms = array_map(function ($entry) { |
|
| 330 | + $terms = array_map(function($entry) { |
|
| 331 | 331 | return $entry['term']; |
| 332 | 332 | }, $wikidataInfo); |
| 333 | 333 | |
@@ -338,7 +338,7 @@ discard block |
||
| 338 | 338 | 'prio' => 2, |
| 339 | 339 | 'name' => 'Wikidata', |
| 340 | 340 | 'notice' => "Label for language <em>$lang</em> is missing", // FIXME: i18n |
| 341 | - 'explanation' => "See: <a target='_blank' " . |
|
| 341 | + 'explanation' => "See: <a target='_blank' ". |
|
| 342 | 342 | "href='//www.wikidata.org/wiki/Help:Label'>Help:Label</a>", |
| 343 | 343 | ]; |
| 344 | 344 | } |
@@ -348,7 +348,7 @@ discard block |
||
| 348 | 348 | 'prio' => 3, |
| 349 | 349 | 'name' => 'Wikidata', |
| 350 | 350 | 'notice' => "Description for language <em>$lang</em> is missing", // FIXME: i18n |
| 351 | - 'explanation' => "See: <a target='_blank' " . |
|
| 351 | + 'explanation' => "See: <a target='_blank' ". |
|
| 352 | 352 | "href='//www.wikidata.org/wiki/Help:Description'>Help:Description</a>", |
| 353 | 353 | ]; |
| 354 | 354 | } |
@@ -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 | } |