Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
88.89% covered (warning)
88.89%
16 / 18
80.00% covered (warning)
80.00%
4 / 5
CRAP
0.00% covered (danger)
0.00%
0 / 1
SharedStimulusCSSExporter
88.89% covered (warning)
88.89%
16 / 18
80.00% covered (warning)
80.00%
4 / 5
9.11
0.00% covered (danger)
0.00%
0 / 1
 pack
84.62% covered (warning)
84.62%
11 / 13
0.00% covered (danger)
0.00%
0 / 1
5.09
 getFileSystem
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
1
 getFileSystemService
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getFlySystemManagement
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getSharedStimulusResourceSpecification
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2
3/**
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; under version 2
7 * of the License (non-upgradable).
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 *
18 * Copyright (c) 2021 (original work) Open Assessment Technologies SA;
19 */
20
21declare(strict_types=1);
22
23namespace oat\taoMediaManager\model\export\service;
24
25use core_kernel_classes_Resource;
26use oat\oatbox\filesystem\FilesystemInterface;
27use oat\oatbox\filesystem\FileSystemService;
28use oat\oatbox\service\ConfigurableService;
29use oat\taoMediaManager\model\fileManagement\FlySystemManagement;
30use oat\taoMediaManager\model\sharedStimulus\service\StoreService;
31use oat\taoMediaManager\model\sharedStimulus\specification\SharedStimulusResourceSpecification;
32use ZipArchive;
33
34class SharedStimulusCSSExporter extends ConfigurableService
35{
36    public const CSS_ZIP_DIR_NAME = 'css';
37
38    public function pack(core_kernel_classes_Resource $mediaResource, string $link, ZipArchive $zip): void
39    {
40        if (!$this->getSharedStimulusResourceSpecification()->isSatisfiedBy($mediaResource)) {
41            return;
42        }
43
44        $fs = $this->getFileSystem();
45        $cssPath = dirname($link) . DIRECTORY_SEPARATOR . StoreService::CSS_DIR_NAME;
46
47        if (!$fs->directoryExists($cssPath)) {
48            return;
49        }
50
51        $files = $fs->listContents($cssPath)->toArray();
52        if (!count($files)) {
53            return;
54        }
55
56        $zip->addEmptyDir(self::CSS_ZIP_DIR_NAME);
57
58        foreach ($files as $file) {
59            $content = $fs->read($cssPath . DIRECTORY_SEPARATOR . basename($file['path']));
60            $zip->addFromString(self::CSS_ZIP_DIR_NAME . DIRECTORY_SEPARATOR . basename($file['path']), $content);
61        }
62    }
63
64    private function getFileSystem(): FilesystemInterface
65    {
66        return $this->getFileSystemService()
67            ->getFileSystem($this->getFlySystemManagement()->getOption(FlySystemManagement::OPTION_FS));
68    }
69
70    private function getFileSystemService(): FileSystemService
71    {
72        return $this->getServiceLocator()->get(FileSystemService::SERVICE_ID);
73    }
74
75    private function getFlySystemManagement(): FlySystemManagement
76    {
77        return $this->getServiceLocator()->get(FlySystemManagement::SERVICE_ID);
78    }
79
80    private function getSharedStimulusResourceSpecification(): SharedStimulusResourceSpecification
81    {
82        return $this->getServiceLocator()->get(SharedStimulusResourceSpecification::class);
83    }
84}