@@ -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) |
@@ -7,7 +7,6 @@ |
||
7 | 7 | use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; |
8 | 8 | use Symfony\Bundle\FrameworkBundle\Controller\Controller; |
9 | 9 | use Symfony\Component\HttpFoundation\Request; |
10 | -use Symfony\Component\VarDumper\VarDumper; |
|
11 | 10 | use Xtools\Page; |
12 | 11 | use Xtools\PagesRepository; |
13 | 12 | use Xtools\Project; |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | 'username' => $username, |
56 | 56 | ]); |
57 | 57 | } elseif ($projectName != "") { |
58 | - return $this->redirectToRoute("TopEditsResults", [ 'project'=>$projectName ]); |
|
58 | + return $this->redirectToRoute("TopEditsResults", ['project'=>$projectName]); |
|
59 | 59 | } |
60 | 60 | |
61 | 61 | // Set default project so we can populate the namespace selector. |
@@ -131,11 +131,11 @@ discard block |
||
131 | 131 | } |
132 | 132 | |
133 | 133 | // Get page info about these 100 pages, so we can use their display title. |
134 | - $titles = array_map(function ($e) use ($namespaces) { |
|
134 | + $titles = array_map(function($e) use ($namespaces) { |
|
135 | 135 | // If non-mainspace, prepend namespace to the titles. |
136 | 136 | $ns = $e['page_namespace']; |
137 | - $nsTitle = $ns > 0 ? $namespaces[$e['page_namespace']] . ':' : ''; |
|
138 | - return $nsTitle . $e['page_title']; |
|
137 | + $nsTitle = $ns > 0 ? $namespaces[$e['page_namespace']].':' : ''; |
|
138 | + return $nsTitle.$e['page_title']; |
|
139 | 139 | }, $editData); |
140 | 140 | /** @var ApiHelper $apiHelper */ |
141 | 141 | $apiHelper = $this->get('app.api_helper'); |
@@ -146,8 +146,8 @@ discard block |
||
146 | 146 | foreach ($editData as $editDatum) { |
147 | 147 | // If non-mainspace, prepend namespace to the titles. |
148 | 148 | $ns = $editDatum['page_namespace']; |
149 | - $nsTitle = $ns > 0 ? $namespaces[$editDatum['page_namespace']] . ':' : ''; |
|
150 | - $pageTitle = $nsTitle . $editDatum['page_title']; |
|
149 | + $nsTitle = $ns > 0 ? $namespaces[$editDatum['page_namespace']].':' : ''; |
|
150 | + $pageTitle = $nsTitle.$editDatum['page_title']; |
|
151 | 151 | $editDatum['displaytitle'] = $displayTitles[$pageTitle]; |
152 | 152 | // $editDatum['page_title'] is retained without the namespace |
153 | 153 | // so we can link to TopEdits for that page |
@@ -3,12 +3,7 @@ |
||
3 | 3 | namespace AppBundle\Helper; |
4 | 4 | |
5 | 5 | use DateTime; |
6 | -use Doctrine\DBAL\Connection; |
|
7 | -use Psr\Cache\CacheItemPoolInterface; |
|
8 | -use Symfony\Component\Config\Definition\Exception\Exception; |
|
9 | -use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; |
|
10 | 6 | use Symfony\Component\DependencyInjection\ContainerInterface; |
11 | -use Symfony\Component\VarDumper\VarDumper; |
|
12 | 7 | use Xtools\ProjectRepository; |
13 | 8 | |
14 | 9 | class AutomatedEditsHelper extends HelperBase |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | $revTable = $lh->getTable('revision', $project->getDatabaseName()); |
124 | 124 | $pageTable = $lh->getTable('page', $project->getDatabaseName()); |
125 | 125 | |
126 | - $AEBTypes = array_map(function ($AEBType) { |
|
126 | + $AEBTypes = array_map(function($AEBType) { |
|
127 | 127 | return $AEBType['regex']; |
128 | 128 | }, $this->container->getParameter('automated_tools')); |
129 | 129 | |
@@ -148,12 +148,12 @@ discard block |
||
148 | 148 | } |
149 | 149 | |
150 | 150 | // Get diff sizes, based on length of each parent revision |
151 | - $parentRevIds = array_map(function ($edit) { |
|
151 | + $parentRevIds = array_map(function($edit) { |
|
152 | 152 | return $edit['rev_parent_id']; |
153 | 153 | }, $editData); |
154 | 154 | $query = "SELECT rev_len, rev_id |
155 | 155 | FROM revision |
156 | - WHERE rev_id IN (" . implode(',', $parentRevIds) . ")"; |
|
156 | + WHERE rev_id IN (" . implode(',', $parentRevIds).")"; |
|
157 | 157 | $diffSizeData = $conn->executeQuery($query)->fetchAll(); |
158 | 158 | |
159 | 159 | // reformat with rev_id as the key, rev_len as the value |
@@ -163,24 +163,24 @@ discard block |
||
163 | 163 | } |
164 | 164 | |
165 | 165 | // Build our array of nonautomated edits |
166 | - $editData = array_map(function ($edit) use ($namespaces, $diffSizes) { |
|
166 | + $editData = array_map(function($edit) use ($namespaces, $diffSizes) { |
|
167 | 167 | $pageTitle = $edit['page_title']; |
168 | 168 | |
169 | 169 | if ($edit['page_namespace'] !== '0') { |
170 | - $pageTitle = $namespaces[$edit['page_namespace']] . ":$pageTitle"; |
|
170 | + $pageTitle = $namespaces[$edit['page_namespace']].":$pageTitle"; |
|
171 | 171 | } |
172 | 172 | |
173 | 173 | $diffSize = $edit['rev_len']; |
174 | 174 | if ($edit['rev_parent_id'] > 0) { |
175 | - $diffSize = $edit['rev_len'] - $diffSizes[$edit['rev_parent_id']]; |
|
175 | + $diffSize = $edit['rev_len']-$diffSizes[$edit['rev_parent_id']]; |
|
176 | 176 | } |
177 | 177 | |
178 | 178 | return [ |
179 | 179 | 'page_title' => $pageTitle, |
180 | - 'namespace' => (int) $edit['page_namespace'], |
|
181 | - 'rev_id' => (int) $edit['rev_id'], |
|
180 | + 'namespace' => (int)$edit['page_namespace'], |
|
181 | + 'rev_id' => (int)$edit['rev_id'], |
|
182 | 182 | 'timestamp' => DateTime::createFromFormat('YmdHis', $edit['rev_timestamp']), |
183 | - 'minor_edit' => (bool) $edit['rev_minor_edit'], |
|
183 | + 'minor_edit' => (bool)$edit['rev_minor_edit'], |
|
184 | 184 | 'summary' => $edit['rev_comment'], |
185 | 185 | 'size' => $diffSize |
186 | 186 | ]; |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | |
61 | 61 | $this->stopwatch->start($cacheKey, 'XTools'); |
62 | 62 | $api = $this->getMediawikiApi($project); |
63 | - $params = [ "list"=>"users", "ususers"=>$username, "usprop"=>"groups" ]; |
|
63 | + $params = ["list"=>"users", "ususers"=>$username, "usprop"=>"groups"]; |
|
64 | 64 | $query = new SimpleRequest('query', $params); |
65 | 65 | $result = []; |
66 | 66 | $res = $api->getRequest($query); |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | |
97 | 97 | // Create the API query. |
98 | 98 | $api = $this->getMediawikiApi($project); |
99 | - $params = [ "meta"=>"globaluserinfo", "guiuser"=>$username, "guiprop"=>"groups" ]; |
|
99 | + $params = ["meta"=>"globaluserinfo", "guiuser"=>$username, "guiprop"=>"groups"]; |
|
100 | 100 | $query = new SimpleRequest('query', $params); |
101 | 101 | |
102 | 102 | // Get the result. |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | */ |
42 | 42 | protected function getRevisionCounts() |
43 | 43 | { |
44 | - if (! is_array($this->revisionCounts)) { |
|
44 | + if (!is_array($this->revisionCounts)) { |
|
45 | 45 | $this->revisionCounts = $this->getRepository() |
46 | 46 | ->getRevisionCounts($this->project, $this->user); |
47 | 47 | } |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | */ |
55 | 55 | protected function getRevisionDates() |
56 | 56 | { |
57 | - if (! is_array($this->revisionDates)) { |
|
57 | + if (!is_array($this->revisionDates)) { |
|
58 | 58 | $this->revisionDates = $this->getRepository() |
59 | 59 | ->getRevisionDates($this->project, $this->user); |
60 | 60 | } |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | */ |
68 | 68 | protected function getPageCounts() |
69 | 69 | { |
70 | - if (! is_array($this->pageCounts)) { |
|
70 | + if (!is_array($this->pageCounts)) { |
|
71 | 71 | $this->pageCounts = $this->getRepository() |
72 | 72 | ->getPageCounts($this->project, $this->user); |
73 | 73 | } |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | */ |
81 | 81 | protected function getLogCounts() |
82 | 82 | { |
83 | - if (! is_array($this->logCounts)) { |
|
83 | + if (!is_array($this->logCounts)) { |
|
84 | 84 | $this->logCounts = $this->getRepository() |
85 | 85 | ->getLogCounts($this->project, $this->user); |
86 | 86 | } |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | */ |
110 | 110 | public function countAllRevisions() |
111 | 111 | { |
112 | - return $this->countLiveRevisions() + $this->countDeletedRevisions(); |
|
112 | + return $this->countLiveRevisions()+$this->countDeletedRevisions(); |
|
113 | 113 | } |
114 | 114 | |
115 | 115 | /** |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | */ |
129 | 129 | public function countRevisionsWithoutComments() |
130 | 130 | { |
131 | - return $this->countAllRevisions() - $this->countRevisionsWithComments(); |
|
131 | + return $this->countAllRevisions()-$this->countRevisionsWithComments(); |
|
132 | 132 | } |
133 | 133 | |
134 | 134 | /** |
@@ -195,7 +195,7 @@ discard block |
||
195 | 195 | */ |
196 | 196 | public function countAllPagesEdited() |
197 | 197 | { |
198 | - return $this->countLivePagesEdited() + $this->countDeletedPagesEdited(); |
|
198 | + return $this->countLivePagesEdited()+$this->countDeletedPagesEdited(); |
|
199 | 199 | } |
200 | 200 | |
201 | 201 | /** |
@@ -213,7 +213,7 @@ discard block |
||
213 | 213 | */ |
214 | 214 | public function countPagesCreated() |
215 | 215 | { |
216 | - return $this->countCreatedPagesLive() + $this->countPagesCreatedDeleted(); |
|
216 | + return $this->countCreatedPagesLive()+$this->countPagesCreatedDeleted(); |
|
217 | 217 | } |
218 | 218 | |
219 | 219 | /** |
@@ -359,9 +359,9 @@ discard block |
||
359 | 359 | public function approvals() |
360 | 360 | { |
361 | 361 | $logCounts = $this->getLogCounts(); |
362 | - $total = $logCounts['review-approve'] + |
|
363 | - (!empty($logCounts['review-approve-a']) ? $logCounts['review-approve-a'] : 0) + |
|
364 | - (!empty($logCounts['review-approve-i']) ? $logCounts['review-approve-i'] : 0) + |
|
362 | + $total = $logCounts['review-approve']+ |
|
363 | + (!empty($logCounts['review-approve-a']) ? $logCounts['review-approve-a'] : 0)+ |
|
364 | + (!empty($logCounts['review-approve-i']) ? $logCounts['review-approve-i'] : 0)+ |
|
365 | 365 | (!empty($logCounts['review-approve-ia']) ? $logCounts['review-approve-ia'] : 0); |
366 | 366 | return $total; |
367 | 367 | } |
@@ -387,8 +387,8 @@ discard block |
||
387 | 387 | // Get counts. |
388 | 388 | $editCounts = $this->getRepository()->getRevisionCountsAllProjects($user, $project); |
389 | 389 | // Sort. |
390 | - uasort($editCounts, function ($a, $b) { |
|
391 | - return $b['total'] - $a['total']; |
|
390 | + uasort($editCounts, function($a, $b) { |
|
391 | + return $b['total']-$a['total']; |
|
392 | 392 | }); |
393 | 393 | // Truncate, and return. |
394 | 394 | return array_slice($editCounts, 0, $numProjects); |
@@ -457,14 +457,14 @@ discard block |
||
457 | 457 | if (!isset($out['totals'][$ns])) { |
458 | 458 | $out['totals'][$ns] = []; |
459 | 459 | } |
460 | - $out['totals'][$ns][$total['year'] . $total['month']] = $total['count']; |
|
460 | + $out['totals'][$ns][$total['year'].$total['month']] = $total['count']; |
|
461 | 461 | } |
462 | 462 | // Fill in the blanks (where no edits were made in a given month for a namespace). |
463 | 463 | for ($y = $out['min_year']; $y <= $out['max_year']; $y++) { |
464 | 464 | for ($m = 1; $m <= 12; $m++) { |
465 | 465 | foreach ($out['totals'] as $nsId => &$total) { |
466 | - if (!isset($total[$y . $m])) { |
|
467 | - $total[$y . $m] = 0; |
|
466 | + if (!isset($total[$y.$m])) { |
|
467 | + $total[$y.$m] = 0; |
|
468 | 468 | } |
469 | 469 | } |
470 | 470 | } |
@@ -5,7 +5,6 @@ |
||
5 | 5 | use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; |
6 | 6 | use Symfony\Bundle\FrameworkBundle\Controller\Controller; |
7 | 7 | use Symfony\Component\HttpFoundation\Request; |
8 | -use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; |
|
9 | 8 | use DateTime; |
10 | 9 | use Xtools\ProjectRepository; |
11 | 10 |
@@ -28,9 +28,9 @@ discard block |
||
28 | 28 | $username = $request->query->get('username', $request->query->get('user')); |
29 | 29 | |
30 | 30 | if ($projectQuery != "" && $username != "") { |
31 | - return $this->redirectToRoute("AdminScoreResult", [ 'project'=>$projectQuery, 'username' => $username ]); |
|
31 | + return $this->redirectToRoute("AdminScoreResult", ['project'=>$projectQuery, 'username' => $username]); |
|
32 | 32 | } elseif ($projectQuery != "") { |
33 | - return $this->redirectToRoute("AdminScoreProject", [ 'project'=>$projectQuery ]); |
|
33 | + return $this->redirectToRoute("AdminScoreProject", ['project'=>$projectQuery]); |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | // Otherwise fall through. |
@@ -73,20 +73,20 @@ discard block |
||
73 | 73 | $archiveTable = $lh->getTable("archive", $dbName); |
74 | 74 | |
75 | 75 | // MULTIPLIERS (to review) |
76 | - $ACCT_AGE_MULT = 1.25; # 0 if = 365 jours |
|
77 | - $EDIT_COUNT_MULT = 1.25; # 0 if = 10 000 |
|
78 | - $USER_PAGE_MULT = 0.1; # 0 if = |
|
76 | + $ACCT_AGE_MULT = 1.25; # 0 if = 365 jours |
|
77 | + $EDIT_COUNT_MULT = 1.25; # 0 if = 10 000 |
|
78 | + $USER_PAGE_MULT = 0.1; # 0 if = |
|
79 | 79 | $PATROLS_MULT = 1; # 0 if = |
80 | - $BLOCKS_MULT = 1.4; # 0 if = 10 |
|
80 | + $BLOCKS_MULT = 1.4; # 0 if = 10 |
|
81 | 81 | $AFD_MULT = 1.15; |
82 | - $RECENT_ACTIVITY_MULT = 0.9; # 0 if = |
|
82 | + $RECENT_ACTIVITY_MULT = 0.9; # 0 if = |
|
83 | 83 | $AIV_MULT = 1.15; |
84 | - $EDIT_SUMMARIES_MULT = 0.8; # 0 if = |
|
85 | - $NAMESPACES_MULT = 1.0; # 0 if = |
|
84 | + $EDIT_SUMMARIES_MULT = 0.8; # 0 if = |
|
85 | + $NAMESPACES_MULT = 1.0; # 0 if = |
|
86 | 86 | $PAGES_CREATED_LIVE_MULT = 1.4; # 0 if = |
87 | 87 | $PAGES_CREATED_ARCHIVE_MULT = 1.4; # 0 if = |
88 | - $RPP_MULT = 1.15; # 0 if = |
|
89 | - $USERRIGHTS_MULT = 0.75; # 0 if = |
|
88 | + $RPP_MULT = 1.15; # 0 if = |
|
89 | + $USERRIGHTS_MULT = 0.75; # 0 if = |
|
90 | 90 | |
91 | 91 | // Grab the connection to the replica database (which is separate from the above) |
92 | 92 | $conn = $this->get('doctrine')->getManager("replicas")->getConnection(); |
@@ -162,15 +162,15 @@ discard block |
||
162 | 162 | $now = new DateTime(); |
163 | 163 | $date = new DateTime($value); |
164 | 164 | $diff = $date->diff($now); |
165 | - $formula = 365*$diff->format("%y")+30*$diff->format("%m")+$diff->format("%d"); |
|
165 | + $formula = 365 * $diff->format("%y")+30 * $diff->format("%m")+$diff->format("%d"); |
|
166 | 166 | $value = $formula-365; |
167 | 167 | } |
168 | 168 | |
169 | 169 | if ($key == "id") { |
170 | 170 | $id = $value; |
171 | 171 | } else { |
172 | - $multiplierKey = strtoupper($row["source"] . "_MULT"); |
|
173 | - $multiplier = ( isset($$multiplierKey) ? $$multiplierKey : 1 ); |
|
172 | + $multiplierKey = strtoupper($row["source"]."_MULT"); |
|
173 | + $multiplier = (isset($$multiplierKey) ? $$multiplierKey : 1); |
|
174 | 174 | $score = max(min($value * $multiplier, 100), -100); |
175 | 175 | $master[$key]["mult"] = $multiplier; |
176 | 176 | $master[$key]["value"] = $value; |
@@ -180,8 +180,8 @@ discard block |
||
180 | 180 | } |
181 | 181 | |
182 | 182 | if ($id == 0) { |
183 | - $this->addFlash("notice", [ "no-result", $username ]); |
|
184 | - return $this->redirectToRoute("AdminScore", [ "project"=>$project ]); |
|
183 | + $this->addFlash("notice", ["no-result", $username]); |
|
184 | + return $this->redirectToRoute("AdminScore", ["project"=>$project]); |
|
185 | 185 | } |
186 | 186 | |
187 | 187 | return $this->render('adminscore/result.html.twig', [ |
@@ -5,7 +5,6 @@ |
||
5 | 5 | use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; |
6 | 6 | use Symfony\Bundle\FrameworkBundle\Controller\Controller; |
7 | 7 | use Symfony\Component\HttpFoundation\Request; |
8 | -use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; |
|
9 | 8 | use Xtools\ProjectRepository; |
10 | 9 | |
11 | 10 | class AutomatedEditsController extends Controller |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | $archiveTable = $lh->getTable('archive', $dbName); |
155 | 155 | |
156 | 156 | $condBegin = $start ? " AND rev_timestamp > :start " : null; |
157 | - $condEnd = $end ? " AND rev_timestamp < :end ": null; |
|
157 | + $condEnd = $end ? " AND rev_timestamp < :end " : null; |
|
158 | 158 | |
159 | 159 | $regexes = []; |
160 | 160 | |
@@ -248,8 +248,8 @@ discard block |
||
248 | 248 | } |
249 | 249 | |
250 | 250 | // Sort the array and do some simple math. |
251 | - uasort($results, function ($a, $b) { |
|
252 | - return $b['count'] - $a['count']; |
|
251 | + uasort($results, function($a, $b) { |
|
252 | + return $b['count']-$a['count']; |
|
253 | 253 | }); |
254 | 254 | |
255 | 255 | if ($total != 0) { |
@@ -6,7 +6,6 @@ |
||
6 | 6 | use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; |
7 | 7 | use Symfony\Bundle\FrameworkBundle\Controller\Controller; |
8 | 8 | use Symfony\Component\HttpFoundation\Request; |
9 | -use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; |
|
10 | 9 | use Xtools\ProjectRepository; |
11 | 10 | |
12 | 11 | class PagesController extends Controller |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | 'username' => $username, |
58 | 58 | ]); |
59 | 59 | } elseif ($projectQuery != "") { |
60 | - return $this->redirectToRoute("PagesProject", [ 'project'=>$projectQuery ]); |
|
60 | + return $this->redirectToRoute("PagesProject", ['project'=>$projectQuery]); |
|
61 | 61 | } |
62 | 62 | |
63 | 63 | // set default wiki so we can populate the namespace selector |
@@ -183,7 +183,7 @@ discard block |
||
183 | 183 | JOIN $revisionTable ON page_id = rev_page |
184 | 184 | $paJoin |
185 | 185 | WHERE $whereRev AND rev_parent_id = '0' $namespaceConditionRev $redirectCondition |
186 | - " . ($hasPageAssessments ? "GROUP BY rev_page" : "") . " |
|
186 | + ".($hasPageAssessments ? "GROUP BY rev_page" : "")." |
|
187 | 187 | ) |
188 | 188 | |
189 | 189 | UNION |
@@ -267,8 +267,8 @@ discard block |
||
267 | 267 | } |
268 | 268 | |
269 | 269 | if ($total < 1) { |
270 | - $this->addFlash("notice", [ "no-result", $username ]); |
|
271 | - return $this->redirectToRoute("PagesProject", [ "project"=>$project ]); |
|
270 | + $this->addFlash("notice", ["no-result", $username]); |
|
271 | + return $this->redirectToRoute("PagesProject", ["project"=>$project]); |
|
272 | 272 | } |
273 | 273 | |
274 | 274 | ksort($pagesByNamespaceByDate); |
@@ -4,9 +4,7 @@ |
||
4 | 4 | |
5 | 5 | use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; |
6 | 6 | use Symfony\Bundle\FrameworkBundle\Controller\Controller; |
7 | -use Symfony\Component\Config\Definition\Exception\Exception; |
|
8 | 7 | use Symfony\Component\HttpFoundation\Request; |
9 | -use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; |
|
10 | 8 | use Xtools\ProjectRepository; |
11 | 9 | |
12 | 10 | class SimpleEditCounterController extends Controller |
@@ -32,10 +32,10 @@ discard block |
||
32 | 32 | $username = $request->query->get('username', $request->query->get('user')); |
33 | 33 | |
34 | 34 | if ($projectQuery != "" && $username != "") { |
35 | - $routeParams = [ 'project'=>$projectQuery, 'username' => $username ]; |
|
35 | + $routeParams = ['project'=>$projectQuery, 'username' => $username]; |
|
36 | 36 | return $this->redirectToRoute("SimpleEditCounterResult", $routeParams); |
37 | 37 | } elseif ($projectQuery != "") { |
38 | - return $this->redirectToRoute("SimpleEditCounterProject", [ 'project'=>$projectQuery ]); |
|
38 | + return $this->redirectToRoute("SimpleEditCounterProject", ['project'=>$projectQuery]); |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | // Otherwise fall through. |
@@ -92,8 +92,8 @@ discard block |
||
92 | 92 | $resultQuery->execute(); |
93 | 93 | |
94 | 94 | if ($resultQuery->errorCode() > 0) { |
95 | - $this->addFlash("notice", [ "no-result", $username ]); |
|
96 | - return $this->redirectToRoute("SimpleEditCounterProject", [ "project"=>$project ]); |
|
95 | + $this->addFlash("notice", ["no-result", $username]); |
|
96 | + return $this->redirectToRoute("SimpleEditCounterProject", ["project"=>$project]); |
|
97 | 97 | } |
98 | 98 | |
99 | 99 | // Fetch the result data |
@@ -117,16 +117,16 @@ discard block |
||
117 | 117 | $rev = $row["value"]; |
118 | 118 | } |
119 | 119 | if ($row["source"] == "groups") { |
120 | - $groups .= $row["value"]. ", "; |
|
120 | + $groups .= $row["value"].", "; |
|
121 | 121 | } |
122 | 122 | } |
123 | 123 | |
124 | 124 | // Unknown user - If the user is created the $results variable will have 3 entries. |
125 | 125 | // This is a workaround to detect non-existent IPs. |
126 | 126 | if (count($results) < 3 && $arch == 0 && $rev == 0) { |
127 | - $this->addFlash('notice', [ "no-result", $username ]); |
|
127 | + $this->addFlash('notice', ["no-result", $username]); |
|
128 | 128 | |
129 | - return $this->redirectToRoute("SimpleEditCounterProject", [ "project"=>$project ]); |
|
129 | + return $this->redirectToRoute("SimpleEditCounterProject", ["project"=>$project]); |
|
130 | 130 | } |
131 | 131 | |
132 | 132 | // Remove the last comma and space |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | 'project_url' => $url, |
157 | 157 | 'id' => $id, |
158 | 158 | 'arch' => $arch, |
159 | - 'rev' => $rev + $arch, |
|
159 | + 'rev' => $rev+$arch, |
|
160 | 160 | 'live' => $rev, |
161 | 161 | 'groups' => $groups, |
162 | 162 | 'globalGroups' => $globalGroups, |
@@ -2,10 +2,8 @@ |
||
2 | 2 | |
3 | 3 | namespace AppBundle\Helper; |
4 | 4 | |
5 | -use Symfony\Component\Config\Definition\Exception\Exception; |
|
6 | 5 | use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; |
7 | 6 | use Symfony\Component\DependencyInjection\ContainerInterface; |
8 | -use Symfony\Component\VarDumper\VarDumper; |
|
9 | 7 | |
10 | 8 | class LabsHelper |
11 | 9 | { |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | // Create the query we're going to run against the meta database |
79 | 79 | $wikiQuery = $this->client->createQueryBuilder(); |
80 | 80 | $wikiQuery |
81 | - ->select([ 'dbname', 'name', 'url', 'lang' ]) |
|
81 | + ->select(['dbname', 'name', 'url', 'lang']) |
|
82 | 82 | ->from('wiki') |
83 | 83 | ->where($wikiQuery->expr()->eq('dbname', ':project')) |
84 | 84 | // The meta database will have the project's URL stored as https://en.wikipedia.org |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | public function allProjects() |
130 | 130 | { |
131 | 131 | $wikiQuery = $this->client->createQueryBuilder(); |
132 | - $wikiQuery->select([ 'dbName', 'name', 'url' ])->from('wiki'); |
|
132 | + $wikiQuery->select(['dbName', 'name', 'url'])->from('wiki'); |
|
133 | 133 | $stmt = $wikiQuery->execute(); |
134 | 134 | $out = $stmt->fetchAll(); |
135 | 135 | return $out; |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | // as required by Labs. We combine $table with |
153 | 153 | // $table_extension in order to generate the new table name |
154 | 154 | if ($this->isLabs() && $table_extension !== null) { |
155 | - $table = $table . "_" . $table_extension; |
|
155 | + $table = $table."_".$table_extension; |
|
156 | 156 | } |
157 | 157 | |
158 | 158 | // Use the table specified in the table mapping configuration, if present. |