Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 8
0.00% covered (danger)
0.00%
0 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
DirectWebSource
0.00% covered (danger)
0.00%
0 / 8
0.00% covered (danger)
0.00%
0 / 2
12
0.00% covered (danger)
0.00%
0 / 1
 spawnWebsource
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 1
2
 getAccessUrl
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 1
6
1<?php
2
3/**
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; under version 2
8 * of the License (non-upgradable).
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18 *
19 * Copyright (c) 2013 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT);
20 *
21 */
22
23namespace oat\tao\model\websource;
24
25/**
26 * Grants Access to compiled data via a direct URL link
27 *
28 * @access public
29 * @author Joel Bout, <joel@taotesting.com>
30 * @package tao
31
32 * @license GPLv2  http://www.opensource.org/licenses/gpl-2.0.php
33 */
34class DirectWebSource extends BaseWebsource
35{
36    public const OPTION_URL = 'accessUrl';
37
38    public static function spawnWebsource($fileSystemId, $accessUrl)
39    {
40        $provider = self::spawn($fileSystemId, [
41            self::OPTION_URL => $accessUrl
42        ]);
43        return $provider;
44    }
45
46    public function getAccessUrl($relativePath)
47    {
48        $path = [];
49        foreach (explode(DIRECTORY_SEPARATOR, ltrim($relativePath, DIRECTORY_SEPARATOR)) as $part) {
50            $path[] = rawurlencode($part);
51        }
52        return $this->getOption(self::OPTION_URL) . implode('/', $path);
53    }
54}