|
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\services; |
|
12
|
|
|
|
|
13
|
|
|
use nystudio107\webperf\Webperf; |
|
14
|
|
|
use nystudio107\webperf\helpers\PluginTemplate; |
|
15
|
|
|
use nystudio107\webperf\assetbundles\boomerang\BoomerangAsset; |
|
16
|
|
|
|
|
17
|
|
|
use Craft; |
|
|
|
|
|
|
18
|
|
|
use craft\base\Component; |
|
|
|
|
|
|
19
|
|
|
|
|
20
|
|
|
use yii\base\InvalidConfigException; |
|
|
|
|
|
|
21
|
|
|
|
|
22
|
|
|
/** |
|
|
|
|
|
|
23
|
|
|
* @author nystudio107 |
|
|
|
|
|
|
24
|
|
|
* @package Webperf |
|
|
|
|
|
|
25
|
|
|
* @since 1.0.0 |
|
|
|
|
|
|
26
|
|
|
*/ |
|
|
|
|
|
|
27
|
|
|
class Beacons extends Component |
|
28
|
|
|
{ |
|
29
|
|
|
// Constants |
|
30
|
|
|
// ========================================================================= |
|
31
|
|
|
|
|
32
|
|
|
const AMP_IFRAME_SCRIPT_URL = "https://cdn.ampproject.org/v0/amp-iframe-0.1.js"; |
|
33
|
|
|
|
|
34
|
|
|
// Public Methods |
|
35
|
|
|
// ========================================================================= |
|
36
|
|
|
|
|
37
|
|
|
/* |
|
38
|
|
|
* @return void |
|
39
|
|
|
*/ |
|
40
|
|
|
public function includeHtmlBeacon() |
|
|
|
|
|
|
41
|
|
|
{ |
|
42
|
|
|
$view = Craft::$app->getView(); |
|
43
|
|
|
// Asset bundle |
|
44
|
|
|
try { |
|
45
|
|
|
$view->registerAssetBundle(BoomerangAsset::class); |
|
46
|
|
|
} catch (InvalidConfigException $e) { |
|
47
|
|
|
Craft::error($e->getMessage(), __METHOD__); |
|
48
|
|
|
} |
|
49
|
|
|
$boomerangUrl = Craft::$app->assetManager->getPublishedUrl( |
|
50
|
|
|
'@nystudio107/webperf/assetbundles/boomerang/dist/js/boomerang-1.0.0.min.js', |
|
51
|
|
|
true |
|
52
|
|
|
); |
|
53
|
|
|
$script = PluginTemplate::renderPluginTemplate( |
|
54
|
|
|
'_frontend/scripts/load-boomerang-iframe.twig', |
|
55
|
|
|
[ |
|
56
|
|
|
'boomerangScriptUrl' => $boomerangUrl, |
|
57
|
|
|
] |
|
58
|
|
|
); |
|
59
|
|
|
$view->registerJs( |
|
60
|
|
|
$script, |
|
61
|
|
|
$view::POS_HEAD |
|
62
|
|
|
); |
|
63
|
|
|
} |
|
64
|
|
|
|
|
65
|
|
|
/* |
|
66
|
|
|
* @return void |
|
67
|
|
|
*/ |
|
68
|
|
|
public function includeAmpHtmlScript() |
|
|
|
|
|
|
69
|
|
|
{ |
|
70
|
|
|
$view = Craft::$app->getView(); |
|
71
|
|
|
$view->registerJsFile( |
|
72
|
|
|
self::AMP_IFRAME_SCRIPT_URL, |
|
73
|
|
|
[ |
|
74
|
|
|
'async' => 'async', |
|
75
|
|
|
'custom-element' => 'amp-iframe', |
|
76
|
|
|
], |
|
77
|
|
|
'webperf-amp-iframe-script' |
|
78
|
|
|
); |
|
79
|
|
|
} |
|
80
|
|
|
|
|
81
|
|
|
/* |
|
82
|
|
|
* @return void |
|
83
|
|
|
*/ |
|
84
|
|
|
public function includeAmpHtmlBeacon() |
|
|
|
|
|
|
85
|
|
|
{ |
|
86
|
|
|
$view = Craft::$app->getView(); |
|
87
|
|
|
// Asset bundle |
|
88
|
|
|
try { |
|
89
|
|
|
$view->registerAssetBundle(BoomerangAsset::class); |
|
90
|
|
|
} catch (InvalidConfigException $e) { |
|
91
|
|
|
Craft::error($e->getMessage(), __METHOD__); |
|
92
|
|
|
} |
|
93
|
|
|
$boomerangUrl = Craft::$app->assetManager->getPublishedUrl( |
|
94
|
|
|
'@nystudio107/webperf/assetbundles/boomerang/dist/js/boomerang-1.0.0.min.js', |
|
95
|
|
|
true |
|
96
|
|
|
); |
|
97
|
|
|
$html = PluginTemplate::renderPluginTemplate( |
|
98
|
|
|
'_frontend/scripts/load-boomerang-amp-iframe.twig', |
|
99
|
|
|
[ |
|
100
|
|
|
'boomerangScriptUrl' => $boomerangUrl, |
|
101
|
|
|
] |
|
102
|
|
|
); |
|
103
|
|
|
echo $html; |
|
104
|
|
|
} |
|
105
|
|
|
} |
|
106
|
|
|
|