<?php
/*
 * Copyright 2007-2017 Charles du Jeu - Abstrium SAS <team (at) pyd.io>
 * This file is part of Pydio.
 *
 * Pydio is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Pydio 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
 * along with Pydio.  If not, see <http://www.gnu.org/licenses/>.
 *
 * The latest code can be found at <https://pydio.com>.
 */
namespace Pydio\Core\Http\Dav;

use \Sabre;
use Pydio\Core\Services\ConfService;

defined('AJXP_EXEC') or die( 'Access not allowed');

/**
 * @package Pydio
 * @subpackage SabreDav
 */
class BrowserPlugin extends Sabre\DAV\Browser\Plugin
{

    protected $repositoryLabel;

    /**
     * BrowserPlugin constructor.
     * @param null $currentRepositoryLabel
     */
    public function __construct($currentRepositoryLabel = null)
    {
        parent::__construct(false, true);
        $this->repositoryLabel = $currentRepositoryLabel;
    }

    /**
     * @param string $path
     * @return mixed|string
     */
    public function generateDirectoryIndex($path)
    {
        $html = parent::generateDirectoryIndex($path);
        $html = str_replace("image/vnd.microsoft.icon", "image/png", $html);

        $title = ConfService::getGlobalConf("APPLICATION_TITLE");
        $html = preg_replace("/<title>(.*)<\/title>/i", '<title>'.$title.'</title>', $html);

        $repoString = "</h1>";
        if (!empty($this->repositoryLabel)) {
            $repoString = " - ".$this->repositoryLabel."</h1><h2>Index of ".$this->escapeHTML($path)."/</h2>";
        }
        $html = preg_replace("/<h1>(.*)<\/h1>/i", "<h1>".$title.$repoString, $html);

        $html = str_replace("h1 { font-size: 150% }", "h1 { font-size: 150% } \n h2 { font-size: 115% }", $html);

        return $html;

    }

    /**
     * @param string $name
     * @return string
     * @throws Sabre\DAV\Exception\Forbidden
     */
    public function getLocalAssetPath($name)
    {
        if ($name != "favicon.ico") {
            return parent::getLocalAssetPath($name);
        }
        return AJXP_INSTALL_PATH."/plugins/gui.ajax/res/themes/orbit/images/html-folder.png";
    }

}
