1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* Webperf plugin for Craft CMS 3.x |
4
|
|
|
* |
5
|
|
|
* Monitor the performance of your webpages through real-world user timing data |
6
|
|
|
* |
7
|
|
|
* @link https://nystudio107.com |
|
|
|
|
8
|
|
|
* @copyright Copyright (c) 2018 nystudio107 |
|
|
|
|
9
|
|
|
*/ |
|
|
|
|
10
|
|
|
|
11
|
|
|
namespace nystudio107\webperf\controllers; |
12
|
|
|
|
13
|
|
|
use nystudio107\webperf\helpers\Permission as PermissionHelper; |
14
|
|
|
|
15
|
|
|
use craft\db\Query; |
|
|
|
|
16
|
|
|
use craft\web\Controller; |
|
|
|
|
17
|
|
|
|
18
|
|
|
use League\Csv\Writer; |
|
|
|
|
19
|
|
|
|
20
|
|
|
/** |
|
|
|
|
21
|
|
|
* @author nystudio107 |
|
|
|
|
22
|
|
|
* @package Webperf |
|
|
|
|
23
|
|
|
* @since 1.0.0 |
|
|
|
|
24
|
|
|
*/ |
|
|
|
|
25
|
|
|
class FileController extends Controller |
26
|
|
|
{ |
27
|
|
|
// Constants |
28
|
|
|
// ========================================================================= |
29
|
|
|
|
30
|
|
|
const EXPORT_DATA_SAMPLES_COLUMNS = [ |
31
|
|
|
'siteId', |
32
|
|
|
'title', |
33
|
|
|
'url', |
34
|
|
|
'queryString', |
35
|
|
|
'dns', |
36
|
|
|
'connect', |
37
|
|
|
'firstByte', |
38
|
|
|
'firstPaint', |
39
|
|
|
'firstContentfulPaint', |
40
|
|
|
'domInteractive', |
41
|
|
|
'pageLoad', |
42
|
|
|
'countryCode', |
43
|
|
|
'device', |
44
|
|
|
'browser', |
45
|
|
|
'os', |
46
|
|
|
'mobile', |
47
|
|
|
'craftTotalMs', |
48
|
|
|
'craftDbMs', |
49
|
|
|
'craftDbCnt', |
50
|
|
|
'craftTwigMs', |
51
|
|
|
'craftTwigCnt', |
52
|
|
|
'craftOtherMs', |
53
|
|
|
'craftOtherCnt', |
54
|
|
|
'craftTotalMemory', |
55
|
|
|
]; |
56
|
|
|
// Protected Properties |
57
|
|
|
// ========================================================================= |
58
|
|
|
|
59
|
|
|
protected $allowAnonymous = []; |
60
|
|
|
|
61
|
|
|
// Public Methods |
62
|
|
|
// ========================================================================= |
63
|
|
|
|
64
|
|
|
/** |
65
|
|
|
* Export the statistics table as a CSV file |
66
|
|
|
* |
67
|
|
|
* @throws \yii\web\ForbiddenHttpException |
68
|
|
|
*/ |
|
|
|
|
69
|
|
|
public function actionExportDataSamples() |
70
|
|
|
{ |
71
|
|
|
PermissionHelper::controllerPermissionCheck('webperf:pages'); |
72
|
|
|
$this->exportCsvFile('webperf-data-samples', '{{%webperf_data_samples}}', self::EXPORT_DATA_SAMPLES_COLUMNS); |
73
|
|
|
} |
74
|
|
|
|
75
|
|
|
// Public Methods |
76
|
|
|
// ========================================================================= |
77
|
|
|
|
78
|
|
|
/** |
|
|
|
|
79
|
|
|
* @param string $filename |
|
|
|
|
80
|
|
|
* @param string $table |
|
|
|
|
81
|
|
|
* @param array $columns |
|
|
|
|
82
|
|
|
* @param int|null $siteId |
|
|
|
|
83
|
|
|
*/ |
|
|
|
|
84
|
|
|
protected function exportCsvFile(string $filename, string $table, array $columns, int $siteId = null) |
85
|
|
|
{ |
86
|
|
|
// If your CSV document was created or is read on a Macintosh computer, |
87
|
|
|
// add the following lines before using the library to help PHP detect line ending in Mac OS X |
88
|
|
|
if (!ini_get('auto_detect_line_endings')) { |
89
|
|
|
ini_set('auto_detect_line_endings', '1'); |
90
|
|
|
} |
91
|
|
|
// Query the db table |
92
|
|
|
$query = (new Query()) |
93
|
|
|
->from([$table]) |
94
|
|
|
->select($columns) |
|
|
|
|
95
|
|
|
; |
96
|
|
|
if ($siteId !== null) { |
97
|
|
|
$query |
98
|
|
|
->where(['siteId' => $siteId]) |
|
|
|
|
99
|
|
|
; |
100
|
|
|
} |
101
|
|
|
$data = $query |
102
|
|
|
->all(); |
103
|
|
|
// Create our CSV file writer |
104
|
|
|
$csv = Writer::createFromFileObject(new \SplTempFileObject()); |
105
|
|
|
$csv->insertOne($columns); |
106
|
|
|
$csv->insertAll($data); |
107
|
|
|
$csv->output($filename.'.csv'); |
108
|
|
|
exit(0); |
|
|
|
|
109
|
|
|
} |
110
|
|
|
} |
111
|
|
|
|