summaryrefslogtreecommitdiff
path: root/app/php/web/ClientScriptManager.php
blob: 1ebd8c3ce84092451ca932dfcfaaf102a265ee9f (plain)
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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
<?php

Prado::using('Application.layouts.Layout');

class ClientScriptManager extends TClientScriptManager {

    private $_page;
    public function __construct(TPage $page) {
        $this->_page = $page;
        parent::__construct($page);
    }

    private function _getBasePath() {
        return Prado::getPathOfNamespace('Web');
    }

    private function _getBasePaths($urls) {
        $basePath = $this->_getBasePath();
        return array_combine(
            $urls,
            array_map(
                function($path) use($basePath) {
                    return $basePath . DIRECTORY_SEPARATOR . $path;
                },
                $urls
            )
        );
    }

    private function _getCachePath($subdir = 'assets') {
        $cachePath = $this->Application->RuntimePath
            . DIRECTORY_SEPARATOR
            . $subdir;
        if (!is_dir($cachePath)) {
            if (file_exists($cachePath)) {
                throw new TIOException(
                    sprintf(
                        'Client script manager cache path "%s" exists and is not a directory',
                        $cachePath
                    )
                );
            } else {
                mkdir($cachePath);
            }
        }
        return $cachePath;
    }

    private function _getCacheFilePath($path, $type) {
        return $this->_getCachePath($type)
            . DIRECTORY_SEPARATOR
            . $path;
    }

    private function _getFileCollectionCacheKey($files) {
        sort($files);
        if ($this->_page->Theme) {
            $files[] = $this->_page->Theme->Name;
        }
        return md5(implode(PHP_EOL, $files));
    }

    private function _getFileCollectionMTime($files) {
        return max(array_map('filemtime', $files));
    }

    private function _getRenderedAssetsStoreKey($type) {
        $template = $this->_page->Master;
        if (!$template instanceof Layout) {
            throw new TNotSupportedException(
                'Compiled assets may only be used within Layout master class controls'
            );
        }
        return sprintf('Rendered%s.%s', $type, $template->generateViewID());
    }

    private function _getRenderedScriptsStoreKey() {
        return $this->_getRenderedAssetsStoreKey('Scripts');
    }

    private function _getRenderedSheetsStoreKey() {
        return $this->_getRenderedAssetsStoreKey('Sheets');
    }

    private function _getCache() {
        $cache = $this->Application->Cache;
        if (!$cache) {
            throw new TNotSupportedException(
                'Compiled assets require cache to be configured'
            );
        }
        return $cache;
    }

    private function _isCacheValid($cacheFile, $paths) {
        return file_exists($cacheFile)
            && (filemtime($cacheFile) >= $this->_getFileCollectionMTime($paths));
    }

    private function _isFileLocal($file) {
        $basePath = $this->_getBasePath();
        return file_exists($basePath . DIRECTORY_SEPARATOR . $file);
    }

    private function _determineLocalFiles($files) {
        return array_filter(
            $files, [$this, '_isFileLocal']
        );
    }

    // Scripts

    private $_renderedScriptsInitialized = FALSE;

    private function _getRenderedScripts() {
        $sessionKey = $this->_getRenderedScriptsStoreKey();
        if ($this->_page->IsCallBack || $this->_renderedScriptsInitialized) {
            return $this->_getCache()->get($sessionKey) ?: [];
        } else {
            $this->_getCache()->delete($sessionKey);
            $this->_renderedScriptsInitialized = TRUE;
            return [];
        }
    }

    private function _appendRenderedScripts(array $newScripts, $compiledFileKey) {
        $scripts = $this->_getRenderedScripts();
        if (!isset($scripts[$compiledFileKey])) {
            $scripts[$compiledFileKey] = [];
        }
        $scripts[$compiledFileKey] = array_unique(
            array_merge(
                $scripts[$compiledFileKey],
                $newScripts
            )
        );
        $this->_getCache()->set(
            $this->_getRenderedScriptsStoreKey(),
            $scripts
        );
    }

    private function _getCompressedScript($path) {
        return trim(TJavaScript::JSMin(
            file_get_contents($path)
        ));
    }

    private function _compileScriptFiles($files) {
        foreach ($files as $file) {
            $this->markScriptFileAsRendered($file);
        }
        $paths = $this->_getBasePaths($files);
        $cacheFile = $this->_getCacheFilePath(
            $this->_getFileCollectionCacheKey($paths) . '.js',
            'scripts'
        );
        $this->_appendRenderedScripts($files, $cacheFile);
        if (!$this->_isCacheValid($cacheFile, $paths)) {
            $scriptContent = implode(
                PHP_EOL,
                array_map(
                    [$this, '_getCompressedScript'],
                    $paths
                )
            );
            file_put_contents($cacheFile, $scriptContent);
        }
        return $this->Application->AssetManager->publishFilePath($cacheFile);
    }

    private function _renderLocalScriptFiles($writer, $localFiles) {
        if ($localFiles) {
            $assetPath = $this->_compileScriptFiles($localFiles);
            $writer->write(TJavascript::renderScriptFile($assetPath));
        }
    }

    private function _renderExternalScriptFiles($writer, $externalFiles) {
        if ($externalFiles) {
            foreach ($externalFiles as $file) {
                $this->markScriptFileAsRendered($file);
                $this->_appendRenderedScripts([$file], $file);
            }
            parent::renderScriptFiles($writer, $externalFiles);
        }
    }

    public function renderScriptFiles($writer, Array $files) {
        if ($this->getApplication()->getMode() !== TApplicationMode::Debug) {
            if ($files) {
                $localFiles = $this->_determineLocalFiles($files);
                $this->_renderLocalScriptFiles($writer, $localFiles);
                $externalFiles = array_diff($files, $localFiles);
                $this->_renderExternalScriptFiles($writer, $externalFiles);
            }
        } else {
            parent::renderScriptFiles($writer, $files);
        }
    }

    private function _getRenderedScriptUrl($registeredScript) {
        $renderedScripts = $this->_getRenderedScripts();
        foreach ($renderedScripts as $compiledFile => $scripts) {
            if (in_array($registeredScript, $scripts)) {
                if (file_exists($compiledFile)) {
                    return $this->Application->AssetManager->getPublishedUrl(
                        $compiledFile
                    );
                } else {
                    return $registeredScript;
                }
            }
        }
        return FALSE;
    }

    public function getScriptUrls() {
        if ($this->getApplication()->getMode() !== TApplicationMode::Debug) {
            $registeredScripts = array_unique(
                array_merge(
                    $this->_scripts, $this->_headScripts
                )
            );
            $scriptUrls = [];
            $newScripts = [];
            foreach ($registeredScripts as $registeredScript) {
                $renderedScriptUrl = $this->_getRenderedScriptUrl(
                    $registeredScript
                );
                if ($renderedScriptUrl) {
                    $scriptUrls[] = $renderedScriptUrl;
                } else {
                    $newScripts[] = $registeredScript;
                }
            }
            $newLocalScripts = $this->_determineLocalFiles($newScripts);
            $newRemoteScripts = array_diff($newScripts, $newLocalScripts);
            if ($newLocalScripts) {
                $scriptUrls[] = $this->_compileScriptFiles($newLocalScripts);
            }
            $scriptUrls = array_values(
                array_unique(array_merge($scriptUrls, $newRemoteScripts))
            );
            return $scriptUrls;
        }
        return parent::getScriptUrls();
    }

    private $_scripts = [];
    private $_headScripts = [];

    public function registerScriptFile($key, $file) {
        $this->_scripts[$key] = $file;
        return parent::registerScriptFile($key, $file);
    }

    public function registerHeadScriptFile($key, $file) {
        $this->_headScripts[$key] = $file;
        return parent::registerHeadScriptFile($key, $file);
    }

    // Stylesheets

    private $_renderedSheetsInitialized = FALSE;

    private function _getRenderedSheets() {
        $sessionKey = $this->_getRenderedSheetsStoreKey();
        if ($this->_page->IsCallBack || $this->_renderedSheetsInitialized) {
            return $this->_getCache()->get($sessionKey) ?: [];
        } else {
            $this->_getCache()->delete($sessionKey);
            $this->_renderedSheetsInitialized = TRUE;
            return [];
        }
    }

    private function _appendRenderedSheets(array $newSheets, $compiledFileKey) {
        $sheets = $this->_getRenderedSheets();
        if (!isset($sheets[$compiledFileKey])) {
            $sheets[$compiledFileKey] = [];
        }
        $sheets[$compiledFileKey] = array_merge(
            $sheets[$compiledFileKey],
            $newSheets
        );
        $this->_getCache()->set(
            $this->_getRenderedSheetsStoreKey(),
            $sheets
        );
    }

    private function _fixStyleSheetPaths($content, $originalUrl) {
        $originalDir = dirname($originalUrl . '.');
        return preg_replace_callback(
            '/url\s*\([\'"]?(.*?)[\'"]?\)/',
            function($matches) use($originalDir) {
                $url = parse_url($matches[1]);
                if (isset($url['scheme']) || isset($url['host'])) {
                    return $matches[0];
                }
                return str_replace(
                    $matches[1],
                    $originalDir . '/' . $matches[1],
                    $matches[0]
                );
            },
            $content
        );
    }

    private function _getCompressedSheet($origPath, $path) {
        Prado::using('Lib.cssmin.CssMin');
        return trim(CssMin::minify(
            $this->_fixStyleSheetPaths(
                file_get_contents($path),
                $origPath
            )
        ));
    }

    private function _compileSheetFiles($files) {
        $paths = $this->_getBasePaths(
            array_map('reset', $files)
        );
        $correctedPaths = [];
        foreach ($paths as $url => $path) {
            $correctedPaths[
                in_array($url, $this->_themeStyles) && $this->_page->Theme
                ? $this->_page->Theme->BaseUrl . DIRECTORY_SEPARATOR
                : $url
            ] = $path;
        }
        $cacheKey = $this->_getFileCollectionCacheKey($paths);
        $cacheFile = $this->_getCacheFilePath($cacheKey . '.css', 'styles');
        $this->_appendRenderedSheets($files, $cacheFile);
        if (!$this->_isCacheValid($cacheFile, $paths)) {
            $styleContent = implode(
                PHP_EOL,
                array_map(
                    [$this, '_getCompressedSheet'],
                    array_keys($correctedPaths),
                    $correctedPaths
                )
            );
            file_put_contents($cacheFile, $styleContent);
        }
        return $this->Application->AssetManager->publishFilePath($cacheFile);
    }

    private function _determineLocalSheetFiles($files) {
        $basePath = $this->_getBasePath();
        return array_filter(
            $files,
            function($file) use($basePath) {
                return file_exists($basePath . DIRECTORY_SEPARATOR . $file[0]);
            }
        );
    }

    private function _renderSheetFileTag(THtmlWriter $writer, $href, $media) {
        $writer->addAttribute('rel', 'stylesheet');
        $writer->addAttribute('type', 'text/css');
        $writer->addAttribute('media', $media);
        $writer->addAttribute('href', $href);
        $writer->renderBeginTag('link');
        $writer->write(PHP_EOL);
    }

    private function _renderLocalSheetFiles(THtmlWriter $writer, $localFiles) {
        if ($localFiles) {
            $fileTypes = [];
            foreach ($localFiles as $file) {
                $type = $file[1] ?: 'all';
                if (!isset($fileTypes[$type])) {
                    $fileTypes[$type] = [];
                }
                $fileTypes[$type][] = $file;
            }
            foreach ($fileTypes as $type => $files) {
                $assetPath = $this->_compileSheetFiles($files);
                $this->_renderSheetFileTag($writer, $assetPath, $type);
            }
        }
    }

    private function _renderExternalSheetFiles(THtmlWriter $writer, $externalFiles) {
        if ($externalFiles) {
            foreach ($externalFiles as $file) {
                $this->_appendRenderedSheets([$file], $file[0]);
                $this->_renderSheetFileTag($writer, $file[0], $file[1] ?: 'all');
            }
        }
    }

    public function renderStyleSheetFiles($writer) {
        if ($this->getApplication()->getMode() !== TApplicationMode::Debug) {
            $files = $this->_styles;
            if ($files) {
                $localFiles = $this->_determineLocalSheetFiles($files);
                $this->_renderLocalSheetFiles($writer, $localFiles);
                $externalFiles = array_diff_key($files, $localFiles);
                $this->_renderExternalSheetFiles($writer, $externalFiles);
            }
        } else {
            parent::renderStyleSheetFiles($writer);
        }
    }

    private function _getRenderedSheetUrl($registeredSheet) {
        $renderedSheets = $this->_getRenderedSheets();
        foreach ($renderedSheets as $compiledFile => $sheets) {
            foreach ($sheets as $sheet) {
                if ($registeredSheet[0] == $sheet[0]) {
                    if (file_exists($compiledFile)) {
                        return $this->Application->AssetManager->getPublishedUrl(
                            $compiledFile
                        );
                    } else {
                        return $registeredSheet[0];
                    }
                }
            }
        }
        return FALSE;
    }

    public function getStyleSheetUrls() {
        if ($this->getApplication()->getMode() !== TApplicationMode::Debug) {
            $registeredSheets = $this->_styles;
            $sheetUrls = [];
            $newSheets = [];
            foreach ($registeredSheets as $registeredSheet) {
                $renderedSheetUrl = $this->_getRenderedSheetUrl(
                    $registeredSheet
                );
                if ($renderedSheetUrl) {
                    $sheetUrls[] = $renderedSheetUrl;
                } else {
                    $newSheets[] = $registeredSheet;
                }
            }
            $newLocalSheets = $this->_determineLocalSheetFiles($newSheets);
            $newLocalUrls = array_map('reset', $newLocalSheets);
            $newRemoteSheets = array_filter(
                $newSheets,
                function($sheet) use($newLocalUrls) {
                    return !in_array($sheet[0], $newLocalUrls);
                }
            );
            $newRemoteUrls = array_map('reset', $newRemoteSheets);
            if ($newLocalSheets) {
                $sheetUrls[] = $this->_compileSheetFiles($newLocalSheets);
            }
            $sheetUrls = array_values(
                array_unique(array_merge($sheetUrls, $newRemoteUrls))
            );
            return $sheetUrls;
        }
        // in Debug mode, theme sheets before fixing paths
        // might also have been published via assets manager,
        // so we have to discard these from parent list
        return array_diff(
            parent::getStyleSheetUrls(),
            $this->_fixedStyleFiles
        );
    }

    private $_styles = [];
    private $_themeStyles = [];

    public function registerStyleSheetFile($key, $file, $media = '') {
        $this->_styles[$key] = [$file, $media];
        return parent::registerStyleSheetFile($key, $file, $media ?: 'all');
    }

    private $_fixedStyleFiles = [];

    public function registerThemeStyleSheetFile($key, $file, $media = '') {
        if ($this->getApplication()->getMode() !== TApplicationMode::Debug) {
            $this->_themeStyles[$key] = $file;
        } else {
            if ($this->_isFileLocal($file) && $this->_page->Theme) {
                $tempFile = $this->_getCacheFilePath(
                    $this->_getFileCollectionCacheKey([
                        $this->_getBasePath()
                        . DIRECTORY_SEPARATOR
                        . $file
                    ])
                    . '.' . basename($file),
                    $this->_page->Theme->Name
                );
                file_put_contents(
                    $tempFile,
                    $this->_fixStyleSheetPaths(
                        file_get_contents(
                            $this->_getBasePath() . DIRECTORY_SEPARATOR . $file
                        ),
                        $this->_page->Theme->BaseUrl . DIRECTORY_SEPARATOR
                    )
                );
                $this->_fixedStyleFiles[] = $file;
                $file = $this->Application->AssetManager->publishFilePath($tempFile);
            }
        }
        return $this->registerStyleSheetFile($key, $file, $media ?: 'all');
    }

}

?>