2013-03-17 02:02:51 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
2013-03-17 02:02:51 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2013-03-17 02:02:51 +04:00
|
|
|
namespace OC\Template;
|
|
|
|
|
|
|
|
class JSResourceLocator extends ResourceLocator {
|
2015-03-04 15:24:24 +03:00
|
|
|
/**
|
|
|
|
* @param string $script
|
|
|
|
*/
|
|
|
|
public function doFind($script) {
|
2013-03-17 02:02:51 +04:00
|
|
|
$theme_dir = 'themes/'.$this->theme.'/';
|
|
|
|
if (strpos($script, '3rdparty') === 0
|
2016-02-26 15:56:02 +03:00
|
|
|
&& $this->appendIfExist($this->thirdpartyroot, $script.'.js')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strpos($script, '/l10n/') !== false) {
|
|
|
|
// For language files we try to load them all, so themes can overwrite
|
|
|
|
// single l10n strings without having to translate all of them.
|
|
|
|
$found = 0;
|
|
|
|
$found += $this->appendIfExist($this->serverroot, 'core/'.$script.'.js');
|
|
|
|
$found += $this->appendIfExist($this->serverroot, $theme_dir.'core/'.$script.'.js');
|
|
|
|
$found += $this->appendIfExist($this->serverroot, $script.'.js');
|
|
|
|
$found += $this->appendIfExist($this->serverroot, $theme_dir.$script.'.js');
|
|
|
|
$found += $this->appendIfExist($this->serverroot, $theme_dir.'apps/'.$script.'.js');
|
|
|
|
|
|
|
|
if ($found) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else if ($this->appendIfExist($this->serverroot, $theme_dir.'apps/'.$script.'.js')
|
2013-03-17 02:02:51 +04:00
|
|
|
|| $this->appendIfExist($this->serverroot, $theme_dir.$script.'.js')
|
|
|
|
|| $this->appendIfExist($this->serverroot, $script.'.js')
|
|
|
|
|| $this->appendIfExist($this->serverroot, $theme_dir.'core/'.$script.'.js')
|
|
|
|
|| $this->appendIfExist($this->serverroot, 'core/'.$script.'.js')
|
|
|
|
) {
|
|
|
|
return;
|
|
|
|
}
|
2016-02-26 15:56:02 +03:00
|
|
|
|
2013-03-17 02:02:51 +04:00
|
|
|
$app = substr($script, 0, strpos($script, '/'));
|
|
|
|
$script = substr($script, strpos($script, '/')+1);
|
2013-07-18 01:27:25 +04:00
|
|
|
$app_path = \OC_App::getAppPath($app);
|
|
|
|
$app_url = \OC_App::getAppWebPath($app);
|
2015-03-04 15:24:24 +03:00
|
|
|
|
2014-10-20 15:43:29 +04:00
|
|
|
// missing translations files fill be ignored
|
2015-03-04 15:24:24 +03:00
|
|
|
if (strpos($script, 'l10n/') === 0) {
|
|
|
|
$this->appendIfExist($app_path, $script . '.js', $app_url);
|
2014-10-20 15:43:29 +04:00
|
|
|
return;
|
|
|
|
}
|
2015-03-04 15:24:24 +03:00
|
|
|
$this->append($app_path, $script . '.js', $app_url);
|
2013-03-17 02:02:51 +04:00
|
|
|
}
|
|
|
|
|
2015-03-04 15:24:24 +03:00
|
|
|
/**
|
|
|
|
* @param string $script
|
|
|
|
*/
|
|
|
|
public function doFindTheme($script) {
|
2013-03-17 02:02:51 +04:00
|
|
|
}
|
|
|
|
}
|