-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpsi-test-selfservice.php
276 lines (195 loc) · 8.59 KB
/
psi-test-selfservice.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
<?php
// PSI Recommendations generator
define('MAX_FILE_SIZE', 2000000); // Simple HTML parser has a low limit of 600000
if($_GET['url']) :
$url = rtrim($_GET['url'], '/').'/';
$url_nocache = $_GET['url'] .'?nowprocket';
endif;
include('classes/loader.php');
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
<link rel="shortcut icon" type="image/png" href="https://wphangar.com/lab/assets/images/favicon.png" />
<style>
.box {
margin-bottom: 40px;
}
.report {
border: 2px solid #eaeaea;
padding: 10px;
background: #FFF;
border-radius: 10px;
}
</style>
<title>Hangar for WP Rocket</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light p-4">
<a class="navbar-brand" href="index.php?url=<?=$url?>"><i class="fas fa-rocket"></i> the hangar</a>
</nav>
<div class="container-fluid">
<div class="grids">
<!-- FIRST STEP -->
<div class="box">
<div class="row px-4 py-0">
<div class="col-6">
<h4 id="step-1">1 - Enter the website url and RUN REPORT</h4>
<form class="form-inline my-4 my-lg-0 w-100 ml-auto" method="get">
<input name="url" class="form-control w-75" type="search" placeholder="URL to test" aria-label="Search" value="<?php echo $url?>">
<button class="btn btn-dark" type="submit">RUN REPORT</button>
</form>
</div>
</div>
</div>
<div class="clearfix"></div>
<?php if ($url) : ?>
<div class="box">
<div class="col-6">
<h4 id="step-3">2 - WP Rocket feature scanner</h4>
<div class="report">
<p>We have tested your website with our diagnosis tool. These are the most relevant WP Rocket features that have a direct impact over your Pagespeed score:</p>
<?php
//ROCKET PSI SCANNER
// GET SITE HTML
$html = new html();
$site_html = $html->get_html($url);
$scanner = new scanner_psi();
$widget_body = $scanner->html_scan($site_html);
echo $widget_body;
?>
</div>
<div class="col-6">
<h4>3 - Opportunities and recommendations</h4>
<small>From this list, select the <strong>Opportunities</strong> the Pagespeed report gave you for the <em>cached</em> version of the website.</small>
<br><br>
<form method="post">
<?php
$psi_opportunities = array();
$psi_opportunities[] = 'Minify JavaScript';
$psi_opportunities[] = 'Minify CSS';
$psi_opportunities[] = 'Properly size images';
$psi_opportunities[] = 'Preload key requests';
$psi_opportunities[] = 'Remove unused JavaScript';
$psi_opportunities[] = 'Remove unused CSS';
$psi_opportunities[] = 'Serve images in next-gen formats';
$psi_opportunities[] = 'Avoid serving legacy JavaScript to modern browsers';
$psi_diagnostics = array();
$psi_diagnostics[] = 'Does not use passive listeners to improve scrolling performance';
$psi_diagnostics[] = 'Ensure text remains visible during webfont load';
$psi_diagnostics[] = 'Reduce the impact of third-party code';
$psi_diagnostics[] = 'Reduce JavaScript execution time ';
$psi_diagnostics[] = 'Reduce JavaScript execution time ';
$psi_diagnostics[] = 'Reduce JavaScript execution time ';
$psi_diagnostics[] = 'Reduce JavaScript execution time ';
?>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="remove-unused-javaScript" id="remove-unused-javaScript">
<label class="form-check-label" for="remove-unused-javaScript"> Remove unused JavaScript
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="remove-unused-css" id="remove-unused-css">
<label class="form-check-label" for="remove-unused-css"> Remove unused CSS
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="minify-javaScript" id="minify-javaScript">
<label class="form-check-label" for="minify-javaScript">Minify JavaScript
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="minify-javaScript" id="minify-javaScript">
<label class="form-check-label" for="minify-javaScript">... </label>
</div>
<br>
<button type="submit" class="btn btn-primary">Get performance recommendations ›</button>
</form>
</div>
</div>
</div>
<?php endif; ?>
<?php if($url) : ?>
<!-- 3rd STEP -->
<div class="clearfix"></div>
<div class="box">
<div class="row px-4 py-0">
<div class="col-6">
<h4 id="step-2">3 - Pagespeed. Side by Side test</h4>
<small>This is the current WP Rocket's benefit on your website. You can see the report for the cached version of your website on the left, and the non-cached version on the right. If you scroll down at the cached version, you can find the top <strong>Opportunities</strong>, these are Pagespeed recommendations which you can use on <a href="#step-4">Step #4</a> to get a personalized performance recommendation.</small>
</div>
</div>
<div class="row p-4 py-0">
<div class="col-6">
<h5>With WP Rocket: <a href="https://developers.google.com/speed/pagespeed/insights/?hl=en&url=<?php echo $url ?>" target="_blank">Open report in a new tab</a></h5>
<!..iframe id="iframe1" scrolling="yes" class="browser" width="100%" frameborder="0" height="1100" src="https://developers.google.com/speed/pagespeed/insights/?hl=en&url=<?php echo $url?>"></iframe..>
</div>
<div class="col-6">
<h5>Not Cached: <a href="https://developers.google.com/speed/pagespeed/insights/?hl=en&url=<?php echo $url ?>?nowprocket" target="_blank">Open report in a new tab</a></h5>
<!--iframe id="iframe2" class="browser" width="100%" frameborder="0" height="1100" src="https://developers.google.com/speed/pagespeed/insights/?hl=en&url=<?php echo $url?>?nowprocket"></iframe-->
</div>
</div>
</div>
<?php endif; ?>
<?php if($urlXX) : ?>
<!-- 3rd STEP -->
<div class="clearfix"></div>
<div class="box">
<div class="row px-4 py-0">
<div class="col-6">
<h4 id="step-3">3 - Pagespeed recommendations</h4>
<small>From this list, check the <strong>Opportunities</strong> your Pagespeed report gave you for the cached version of your website.<br>When you are ready click the "<strong>Get performance recommendations</strong>" button</small>
<br><br>
<form method="post">
<?php
$psi_opportunities = array();
$psi_opportunities[] = 'Minify JavaScript';
$psi_opportunities[] = 'Minify CSS';
$psi_opportunities[] = 'Properly size images';
$psi_opportunities[] = 'Preload key requests';
$psi_opportunities[] = 'Remove unused JavaScript';
$psi_opportunities[] = 'Remove unused CSS';
$psi_opportunities[] = 'Serve images in next-gen formats';
$psi_opportunities[] = 'Avoid serving legacy JavaScript to modern browsers';
$psi_diagnostics = array();
$psi_diagnostics[] = 'Does not use passive listeners to improve scrolling performance';
$psi_diagnostics[] = 'Ensure text remains visible during webfont load';
$psi_diagnostics[] = 'Reduce the impact of third-party code';
$psi_diagnostics[] = 'Reduce JavaScript execution time ';
$psi_diagnostics[] = 'Reduce JavaScript execution time ';
$psi_diagnostics[] = 'Reduce JavaScript execution time ';
$psi_diagnostics[] = 'Reduce JavaScript execution time ';
?>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="remove-unused-javaScript" id="remove-unused-javaScript">
<label class="form-check-label" for="remove-unused-javaScript"> Remove unused JavaScript
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="remove-unused-css" id="remove-unused-css">
<label class="form-check-label" for="remove-unused-css"> Remove unused CSS
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="minify-javaScript" id="minify-javaScript">
<label class="form-check-label" for="minify-javaScript">Minify JavaScript
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" value="minify-javaScript" id="minify-javaScript">
<label class="form-check-label" for="minify-javaScript">... </label>
</div>
<br>
<button type="submit" class="btn btn-primary">Get performance recommendations ›</button>
</form>
</div>
</div>
</div>
<?php endif; ?>
<?php
include('inc/footer.php');