FlameCore/Infernum

View on GitHub
libraries/Site.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * Infernum
 * Copyright (C) 2015 IceFlame.net
 *
 * Permission to use, copy, modify, and/or distribute this software for
 * any purpose with or without fee is hereby granted, provided that the
 * above copyright notice and this permission notice appear in all copies.
 *
 * @package  FlameCore\Infernum
 * @version  0.1-dev
 * @link     http://www.flamecore.org
 * @license  http://opensource.org/licenses/ISC ISC License
 */

namespace FlameCore\Infernum;

use FlameCore\Infernum\Configuration\SiteConfiguration;
use FlameCore\Infernum\Configuration\SiteSettings;

/**
 * The Site class
 *
 * @author   Christian Neff <christian.neff@gmail.com>
 */
class Site
{
    /**
     * @var string
     */
    private $name;

    /**
     * @var string
     */
    private $path;

    /**
     * @var array
     */
    private $routes;

    /**
     * @var array
     */
    private $plugins;

    /**
     * @param string $name
     * @param \FlameCore\Infernum\Kernel $kernel
     */
    public function __construct($name, Kernel $kernel)
    {
        $path = $kernel->getPath().'/websites/'.$name;

        if (!is_dir($path)) {
            throw new \LogicException(sprintf('Directory of site "%s" does not exist (%s).', $name, $path));
        }

        $this->name = $name;
        $this->path = $path;

        $config = $this->loadConfiguration();
        $this->routes = $config['routes'];
        $this->plugins = $config['plugins'];
    }

    /**
     * @return string
     */
    public function getName()
    {
        return $this->name;
    }

    /**
     * @return string
     */
    public function getPath()
    {
        return $this->path;
    }

    /**
     * @return array
     */
    public function getRoutes()
    {
        return $this->routes;
    }

    /**
     * @return array
     */
    public function getPlugins()
    {
        return $this->plugins;
    }

    /**
     * @return array
     */
    public function loadSettings()
    {
        try {
            $config = new SiteSettings($this->path.'/settings.yml');
            return $config->load();
        } catch (\Exception $e) {
            throw new \RuntimeException(sprintf('Unable to load settings: %s', $e->getMessage()));
        }
    }

    /**
     * @return array
     */
    private function loadConfiguration()
    {
        try {
            $config = new SiteConfiguration($this->path.'/site.yml');
            return $config->load();
        } catch (\Exception $e) {
            throw new \RuntimeException(sprintf('Unable to load site configuration: %s', $e->getMessage()));
        }
    }
}