| Conditions | 21 |
| Paths | 120 |
| Total Lines | 147 |
| Code Lines | 100 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.
For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.
Commonly applied refactorings include:
If many parameters/temporary variables are present:
| 1 | <?php |
||
| 58 | public function actionPagesIndex( |
||
| 59 | string $start = '', |
||
| 60 | string $end = '', |
||
| 61 | string $sort = 'pageLoad|desc', |
||
| 62 | int $page = 1, |
||
| 63 | int $per_page = 20, |
||
| 64 | $filter = '', |
||
| 65 | $siteId = 0 |
||
| 66 | ): Response { |
||
| 67 | PermissionHelper::controllerPermissionCheck('webperf:pages'); |
||
| 68 | $data = []; |
||
| 69 | $sortField = 'pageLoad'; |
||
| 70 | $sortType = 'DESC'; |
||
| 71 | // Add a day since YYYY-MM-DD is really YYYY-MM-DD 00:00:00 |
||
| 72 | $end = date('Y-m-d', strtotime($end.'+1 day')); |
||
| 73 | // Figure out the sorting type |
||
| 74 | if ($sort !== '') { |
||
| 75 | if (strpos($sort, '|') === false) { |
||
| 76 | $sortField = $sort; |
||
| 77 | } else { |
||
| 78 | list($sortField, $sortType) = explode('|', $sort); |
||
| 79 | } |
||
| 80 | } |
||
| 81 | if ($sortField === 'totalPageLoad') { |
||
| 82 | $sortField = 'pageLoad'; |
||
| 83 | } |
||
| 84 | // Query the db table |
||
| 85 | $offset = ($page - 1) * $per_page; |
||
| 86 | $query = (new Query()) |
||
| 87 | ->select([ |
||
| 88 | 'url', |
||
| 89 | 'MIN(title) AS title', |
||
| 90 | 'COUNT(url) AS cnt', |
||
| 91 | 'AVG(pageLoad) AS pageLoad', |
||
| 92 | 'AVG(domInteractive) AS domInteractive', |
||
| 93 | 'AVG(firstContentfulPaint) AS firstContentfulPaint', |
||
| 94 | 'AVG(firstPaint) AS firstPaint', |
||
| 95 | 'AVG(firstByte) AS firstByte', |
||
| 96 | 'AVG(connect) AS connect', |
||
| 97 | 'AVG(dns) AS dns', |
||
| 98 | 'AVG(craftTotalMs) AS craftTotalMs', |
||
| 99 | 'AVG(craftDbCnt) AS craftDbCnt', |
||
| 100 | 'AVG(craftDbMs) AS craftDbMs', |
||
| 101 | 'AVG(craftTwigCnt) AS craftTwigCnt', |
||
| 102 | 'AVG(craftTwigMs) AS craftTwigMs', |
||
| 103 | 'AVG(craftTotalMemory) AS craftTotalMemory', |
||
| 104 | ]) |
||
| 105 | ->from(['{{%webperf_data_samples}}']) |
||
| 106 | ->offset($offset) |
||
| 107 | ->where(['between', 'dateUpdated', $start, $end]) |
||
| 108 | ; |
||
| 109 | if ((int)$siteId !== 0) { |
||
| 110 | $query->andWhere(['siteId' => $siteId]); |
||
| 111 | } |
||
| 112 | if ($filter !== '') { |
||
| 113 | $query |
||
| 114 | ->andWhere(['like', 'url', $filter]) |
||
| 115 | ->orWhere(['like', 'title', $filter]) |
||
| 116 | ; |
||
| 117 | } |
||
| 118 | $query |
||
| 119 | ->orderBy("{$sortField} {$sortType}") |
||
| 120 | ->groupBy('url') |
||
| 121 | ->limit($per_page) |
||
| 122 | ; |
||
| 123 | |||
| 124 | $stats = $query->all(); |
||
| 125 | if ($stats) { |
||
| 126 | // Compute the largest page load time |
||
| 127 | $maxTotalPageLoad = 0; |
||
| 128 | foreach ($stats as &$stat) { |
||
| 129 | // Determine the stat type |
||
| 130 | if (!empty($stat['pageLoad']) && !empty($stat['craftTotalMs'])) { |
||
| 131 | $stat['type'] = 'both'; |
||
| 132 | } |
||
| 133 | if (empty($stat['pageLoad'])) { |
||
| 134 | $stat['type'] = 'craft'; |
||
| 135 | } |
||
| 136 | if (empty($stat['craftTotalMs'])) { |
||
| 137 | $stat['type'] = 'frontend'; |
||
| 138 | } |
||
| 139 | if (empty($stat['pageLoad'])) { |
||
| 140 | $pageLoad = $stat['craftTotalMs']; |
||
| 141 | } else { |
||
| 142 | $pageLoad = $stat['pageLoad']; |
||
| 143 | } |
||
| 144 | if ($pageLoad > $maxTotalPageLoad) { |
||
| 145 | $maxTotalPageLoad = $pageLoad; |
||
| 146 | } |
||
| 147 | } |
||
| 148 | // Massage the stats |
||
| 149 | $index = 1; |
||
| 150 | foreach ($stats as &$stat) { |
||
| 151 | $stat['id'] = $index++; |
||
| 152 | $stat['cnt'] = (int)$stat['cnt']; |
||
| 153 | $stat['maxTotalPageLoad'] = (int)$maxTotalPageLoad; |
||
| 154 | // If there is no frontend beacon timing, use the Craft timing |
||
| 155 | if (empty($stat['pageLoad'])) { |
||
| 156 | $stat['totalPageLoad'] = (int)$stat['craftTotalMs']; |
||
| 157 | } else { |
||
| 158 | $stat['totalPageLoad'] = (int)$stat['pageLoad']; |
||
| 159 | } |
||
| 160 | // Decode any emojis in the title |
||
| 161 | if (!empty($stat['title'])) { |
||
| 162 | $stat['title'] = html_entity_decode($stat['title'], ENT_NOQUOTES, 'UTF-8'); |
||
| 163 | } |
||
| 164 | // Set up the appropriate helper links |
||
| 165 | $stat['deleteLink'] = UrlHelper::actionUrl('webperf/data-samples/delete-samples-by-url', [ |
||
| 166 | 'pageUrl' => $stat['url'], |
||
| 167 | 'siteId' => $siteId |
||
| 168 | ]); |
||
| 169 | $stat['detailPageUrl'] = UrlHelper::cpUrl('webperf/page-detail', [ |
||
| 170 | 'pageUrl' => $stat['url'], |
||
| 171 | 'siteId' => $siteId, |
||
| 172 | ]); |
||
| 173 | // Override based on permissions |
||
| 174 | $user = Craft::$app->getUser()->getIdentity(); |
||
| 175 | if (!$user->can('webperf:delete-data-samples')) { |
||
| 176 | $stat['deleteLink'] = ''; |
||
| 177 | } |
||
| 178 | if (!$user->can('webperf:page-detail')) { |
||
| 179 | $stat['detailPageUrl'] = ''; |
||
| 180 | } |
||
| 181 | } |
||
| 182 | // Format the data for the API |
||
| 183 | $data['data'] = $stats; |
||
| 184 | $query = (new Query()) |
||
| 185 | ->from(['{{%webperf_data_samples}}']) |
||
| 186 | ->groupBy('url'); |
||
| 187 | if ($filter !== '') { |
||
| 188 | $query->where(['like', 'url', $filter]); |
||
| 189 | $query->orWhere(['like', 'title', $filter]); |
||
| 190 | } |
||
| 191 | $count = $query->count(); |
||
| 192 | $data['links']['pagination'] = [ |
||
| 193 | 'total' => $count, |
||
| 194 | 'per_page' => $per_page, |
||
| 195 | 'current_page' => $page, |
||
| 196 | 'last_page' => ceil($count / $per_page), |
||
| 197 | 'next_page_url' => null, |
||
| 198 | 'prev_page_url' => null, |
||
| 199 | 'from' => $offset + 1, |
||
| 200 | 'to' => $offset + ($count > $per_page ? $per_page : $count), |
||
| 201 | ]; |
||
| 202 | } |
||
| 203 | |||
| 204 | return $this->asJson($data); |
||
| 205 | } |
||
| 353 |