AssetStrategy   A
last analyzed

Complexity

Total Complexity 4

Size/Duplication

Total Lines 51
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 12
c 1
b 0
f 0
dl 0
loc 51
rs 10
wmc 4

2 Methods

Rating   Name   Duplication   Size   Complexity  
A loadAssets() 0 8 3
A __construct() 0 4 1
1
<?php
2
declare(strict_types=1);
3
4
/**
5
 * BEdita, API-first content management framework
6
 * Copyright 2020 ChannelWeb Srl, Chialab Srl
7
 *
8
 * This file is part of BEdita: you can redistribute it and/or modify
9
 * it under the terms of the GNU Lesser General Public License as published
10
 * by the Free Software Foundation, either version 3 of the License, or
11
 * (at your option) any later version.
12
 *
13
 * See LICENSE.LGPL or <http://gnu.org/licenses/lgpl-3.0.html> for more details.
14
 */
15
namespace BEdita\WebTools\Utility\Asset;
16
17
use Cake\Core\InstanceConfigTrait;
18
19
/**
20
 * Abstract base class for asset strategies.
21
 * Every asset strategy should extend this class or implements `AssetStrategyInterface`
22
 */
23
abstract class AssetStrategy implements AssetStrategyInterface
24
{
25
    use InstanceConfigTrait;
26
27
    /**
28
     * Default configuration.
29
     *
30
     * - `manifestPath` is the file path used as manifest for assets
31
     *
32
     * @var array
33
     */
34
    protected array $_defaultConfig = [
35
        'manifestPath' => '',
36
    ];
37
38
    /**
39
     * The assets map loaded.
40
     *
41
     * @var array
42
     */
43
    protected array $assets = [];
44
45
    /**
46
     * Initialize an asset strategy instance. Called after the constructor.
47
     *
48
     * - write conf
49
     * - load assets
50
     *
51
     * @param array $config The configuration for the asset strategy
52
     */
53
    public function __construct(array $config = [])
54
    {
55
        $this->setConfig($config);
56
        $this->loadAssets();
57
    }
58
59
    /**
60
     * Load assets map.
61
     * If no map path is passed then it uses the configured one.
62
     *
63
     * @param string|null $manifestPath The optional file path to use
64
     * @return void
65
     */
66
    public function loadAssets(?string $manifestPath = null): void
67
    {
68
        $this->assets = [];
69
        if (empty($manifestPath)) {
70
            $manifestPath = $this->getConfig('manifestPath');
71
        }
72
        if (file_exists($manifestPath)) {
73
            $this->assets = (array)json_decode(file_get_contents($manifestPath), true);
74
        }
75
    }
76
}
77