2015-04-21 17:11:43 +02:00
|
|
|
<?php namespace Todaymade\Daux;
|
2014-07-12 12:31:57 +02:00
|
|
|
|
2015-04-22 12:23:57 +02:00
|
|
|
use Todaymade\Daux\Server\Helper as ServerHelper;
|
|
|
|
use Todaymade\Daux\Generator\Helper as GeneratorHelper;
|
|
|
|
|
2014-07-12 12:31:57 +02:00
|
|
|
class Daux
|
|
|
|
{
|
|
|
|
const STATIC_MODE = 'DAUX_STATIC';
|
|
|
|
const LIVE_MODE = 'DAUX_LIVE';
|
|
|
|
|
|
|
|
public static $VALID_MARKDOWN_EXTENSIONS;
|
2015-04-22 12:23:57 +02:00
|
|
|
public $local_base;
|
|
|
|
public $base_url = '';
|
|
|
|
public $host;
|
2014-07-12 12:31:57 +02:00
|
|
|
private $docs_path;
|
2015-04-22 12:23:57 +02:00
|
|
|
public $tree;
|
|
|
|
public $options;
|
2014-07-12 12:31:57 +02:00
|
|
|
private $mode;
|
|
|
|
|
2015-04-22 12:23:57 +02:00
|
|
|
public function __construct($mode) {
|
|
|
|
$this->mode = $mode;
|
2014-07-12 12:31:57 +02:00
|
|
|
|
2015-04-22 12:23:57 +02:00
|
|
|
$this->local_base = dirname(dirname(__FILE__));
|
|
|
|
$this->base_url = '';
|
2014-07-12 12:31:57 +02:00
|
|
|
|
2015-04-22 12:23:57 +02:00
|
|
|
if ($this->mode == Daux::LIVE_MODE) {
|
|
|
|
$this->host = $_SERVER['HTTP_HOST'];
|
|
|
|
$this->base_url = $_SERVER['HTTP_HOST'] . dirname($_SERVER['PHP_SELF']);
|
|
|
|
$t = strrpos($this->base_url, '/index.php');
|
|
|
|
if ($t != FALSE) $this->base_url = substr($this->base_url, 0, $t);
|
|
|
|
if (substr($this->base_url, -1) !== '/') $this->base_url .= '/';
|
2014-07-12 12:31:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-22 12:23:57 +02:00
|
|
|
public function initialize($global_config_file = null, $config_file = 'config.json') {
|
2014-07-12 12:31:57 +02:00
|
|
|
$this->load_global_config($global_config_file);
|
2015-04-22 12:23:57 +02:00
|
|
|
$this->load_docs_config($config_file);
|
|
|
|
$this->generate_directory_tree();
|
2014-07-12 12:31:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private function load_global_config($global_config_file) {
|
2014-08-11 22:36:04 +02:00
|
|
|
if (is_null($global_config_file)) $global_config_file = $this->local_base . DIRECTORY_SEPARATOR . 'global.json';
|
2014-07-12 12:31:57 +02:00
|
|
|
if (!file_exists($global_config_file)) {
|
2015-04-22 12:23:57 +02:00
|
|
|
throw new Exception('The Global Config file is missing. Requested File : ' . $global_config_file);
|
2014-07-12 12:31:57 +02:00
|
|
|
}
|
2014-11-20 10:19:21 +01:00
|
|
|
|
2014-07-12 12:31:57 +02:00
|
|
|
$global_config = json_decode(file_get_contents($global_config_file), true);
|
|
|
|
if (!isset($global_config)) {
|
2015-04-22 12:23:57 +02:00
|
|
|
throw new Exception('The Global Config file is corrupt. Check that the JSON encoding is correct');
|
2014-07-12 12:31:57 +02:00
|
|
|
}
|
2014-11-20 10:19:21 +01:00
|
|
|
|
2014-07-12 12:31:57 +02:00
|
|
|
if (!isset($global_config['docs_directory'])) {
|
2015-04-22 12:23:57 +02:00
|
|
|
throw new Exception('The Global Config file does not have the docs directory set.');
|
2014-07-12 12:31:57 +02:00
|
|
|
}
|
2014-11-20 10:19:21 +01:00
|
|
|
|
|
|
|
$this->docs_path = $global_config['docs_directory'];
|
|
|
|
if (!is_dir($this->docs_path) && !is_dir($this->docs_path = $this->local_base . DIRECTORY_SEPARATOR . $this->docs_path)) {
|
2015-04-22 12:23:57 +02:00
|
|
|
throw new Exception('The Docs directory does not exist. Check the path again : ' . $this->docs_path);
|
2014-07-12 12:31:57 +02:00
|
|
|
}
|
2014-11-20 10:19:21 +01:00
|
|
|
|
2014-07-12 12:31:57 +02:00
|
|
|
if (!isset($global_config['valid_markdown_extensions'])) static::$VALID_MARKDOWN_EXTENSIONS = array('md', 'markdown');
|
|
|
|
else static::$VALID_MARKDOWN_EXTENSIONS = $global_config['valid_markdown_extensions'];
|
|
|
|
}
|
|
|
|
|
|
|
|
private function load_docs_config($config_file) {
|
|
|
|
$config_file = $this->docs_path . DIRECTORY_SEPARATOR . $config_file;
|
|
|
|
if (!file_exists($config_file)) {
|
2015-04-22 12:23:57 +02:00
|
|
|
throw new Exception('The local config file is missing. Check path : ' . $config_file);
|
2014-07-12 12:31:57 +02:00
|
|
|
}
|
|
|
|
$this->options = json_decode(file_get_contents($this->local_base . DIRECTORY_SEPARATOR . 'default.json'), true);
|
|
|
|
if (is_file($config_file)) {
|
|
|
|
$config = json_decode(file_get_contents($config_file), true);
|
|
|
|
if (!isset($config)) {
|
2015-04-22 12:23:57 +02:00
|
|
|
throw new Exception('There was an error parsing the Config file. Please review');
|
2014-07-12 12:31:57 +02:00
|
|
|
}
|
|
|
|
$this->options = array_merge($this->options, $config);
|
|
|
|
}
|
|
|
|
if (isset($this->options['timezone'])) date_default_timezone_set($this->options['timezone']);
|
|
|
|
else if (!ini_get('date.timezone')) date_default_timezone_set('GMT');
|
|
|
|
}
|
|
|
|
|
|
|
|
private function generate_directory_tree() {
|
|
|
|
$this->tree = DauxHelper::build_directory_tree($this->docs_path, $this->options['ignore'], $this->mode);
|
|
|
|
if (!empty($this->options['languages'])) {
|
|
|
|
foreach ($this->options['languages'] as $key => $node) {
|
|
|
|
$this->tree->value[$key]->title = $node;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-22 12:23:57 +02:00
|
|
|
public function get_base_params() {
|
|
|
|
return array(
|
|
|
|
'local_base' => $this->local_base,
|
|
|
|
|
|
|
|
'tagline' => $this->options['tagline'],
|
|
|
|
'title' => $this->options['title'],
|
|
|
|
'author' => $this->options['author'],
|
|
|
|
'image' => $this->options['image'],
|
|
|
|
'repo' => $this->options['repo'],
|
|
|
|
'links' => $this->options['links'],
|
|
|
|
'twitter' => $this->options['twitter'],
|
|
|
|
'google_analytics' => ($g = $this->options['google_analytics']) ? DauxHelper::google_analytics($g, $this->host) : '',
|
|
|
|
'piwik_analytics' => ($p = $this->options['piwik_analytics']) ? DauxHelper::piwik_analytics($p, $this->options['piwik_analytics_id']) : '',
|
|
|
|
|
|
|
|
'docs_path' => $this->docs_path,
|
|
|
|
'tree' => $this->tree,
|
|
|
|
'index' => ($this->tree->index_page !== false) ? $this->tree->index_page : $this->tree->first_page,
|
|
|
|
'template' => $this->options['template'],
|
|
|
|
);
|
2014-07-12 12:31:57 +02:00
|
|
|
}
|
|
|
|
|
2015-04-22 12:23:57 +02:00
|
|
|
//TODO :: move to generator
|
|
|
|
public function get_page_params($mode = '') {
|
2014-07-12 12:31:57 +02:00
|
|
|
|
|
|
|
if ($mode === '') $mode = $this->mode;
|
2015-04-22 12:23:57 +02:00
|
|
|
|
|
|
|
$params = $this->get_base_params();
|
2014-08-11 07:58:05 +02:00
|
|
|
$params['mode'] = $mode;
|
2015-04-22 12:23:57 +02:00
|
|
|
|
|
|
|
$params['index_key'] = 'index.html';
|
|
|
|
$params['base_url'] = '';
|
|
|
|
$params['base_page'] = $params['base_url'];
|
|
|
|
|
|
|
|
if ($params['breadcrumbs'] = $this->options['breadcrumbs'])
|
|
|
|
$params['breadcrumb_separator'] = $this->options['breadcrumb_separator'];
|
|
|
|
$params['multilanguage'] = !empty($this->options['languages']);
|
|
|
|
$params['languages'] = $this->options['languages'];
|
|
|
|
if (empty($this->options['languages'])) {
|
|
|
|
$params['entry_page'] = $this->tree->first_page;
|
|
|
|
} else {
|
|
|
|
foreach ($this->options['languages'] as $key => $name) {
|
|
|
|
$params['entry_page'][$key] = $this->tree->value[$key]->first_page;
|
|
|
|
}
|
2014-07-12 12:31:57 +02:00
|
|
|
}
|
2015-04-22 12:23:57 +02:00
|
|
|
|
|
|
|
$params['toggle_code'] = $this->options['toggle_code'];
|
|
|
|
$params['float'] = $this->options['float'];
|
|
|
|
$params['date_modified'] = $this->options['date_modified'];
|
|
|
|
$params['file_editor'] = false;
|
|
|
|
|
|
|
|
$params['theme'] = GeneratorHelper::configure_theme(
|
|
|
|
$this->local_base . DIRECTORY_SEPARATOR . 'templates' . DIRECTORY_SEPARATOR . $this->options['template'] . DIRECTORY_SEPARATOR . 'themes' . DIRECTORY_SEPARATOR . $this->options['theme'],
|
|
|
|
$params['base_url'],
|
|
|
|
$this->local_base,
|
|
|
|
$params['base_url'] . "templates/" . $params['template'] . "/themes/" . $this->options['theme'] . '/'
|
|
|
|
);
|
|
|
|
|
2014-07-12 12:31:57 +02:00
|
|
|
return $params;
|
|
|
|
}
|
|
|
|
|
2015-04-22 12:23:57 +02:00
|
|
|
//TODO :: move to server
|
|
|
|
public function get_live_page_params() {
|
|
|
|
$params = $this->get_base_params();
|
|
|
|
|
|
|
|
$params['mode'] = Daux::LIVE_MODE;
|
|
|
|
|
|
|
|
$params['index_key'] = 'index';
|
|
|
|
$protocol = '//';
|
|
|
|
$params['base_url'] = $protocol . $this->base_url;
|
|
|
|
$params['base_page'] = $params['base_url'];
|
|
|
|
$params['host'] = $this->host;
|
|
|
|
$params['clean_urls'] = $this->options['clean_urls'];
|
|
|
|
|
|
|
|
if ($params['image'] !== '') $params['image'] = str_replace('<base_url>', $params['base_url'], $params['image']);
|
|
|
|
|
|
|
|
if ($params['breadcrumbs'] = $this->options['breadcrumbs'])
|
|
|
|
$params['breadcrumb_separator'] = $this->options['breadcrumb_separator'];
|
|
|
|
$params['multilanguage'] = !empty($this->options['languages']);
|
|
|
|
$params['languages'] = $this->options['languages'];
|
|
|
|
if (empty($this->options['languages'])) {
|
|
|
|
$params['entry_page'] = $this->tree->first_page;
|
|
|
|
} else {
|
|
|
|
foreach ($this->options['languages'] as $key => $name) {
|
|
|
|
$params['entry_page'][$key] = $this->tree->value[$key]->first_page;
|
|
|
|
}
|
|
|
|
}
|
2014-07-12 12:31:57 +02:00
|
|
|
|
2015-04-22 12:23:57 +02:00
|
|
|
$params['toggle_code'] = $this->options['toggle_code'];
|
|
|
|
$params['float'] = $this->options['float'];
|
|
|
|
$params['date_modified'] = $this->options['date_modified'];
|
|
|
|
$params['file_editor'] = $this->options['file_editor'];
|
2014-07-12 12:31:57 +02:00
|
|
|
|
2015-04-22 12:23:57 +02:00
|
|
|
$params['theme'] = ServerHelper::configure_theme(
|
|
|
|
$this->local_base . DIRECTORY_SEPARATOR . 'templates' . DIRECTORY_SEPARATOR . $this->options['template'] . DIRECTORY_SEPARATOR . 'themes' . DIRECTORY_SEPARATOR . $this->options['theme'],
|
|
|
|
$params['base_url'],
|
|
|
|
$this->local_base,
|
|
|
|
$params['base_url'] . "templates/" . $params['template'] . "/themes/" . $this->options['theme'] . '/'
|
|
|
|
);
|
|
|
|
|
|
|
|
return $params;
|
|
|
|
}
|
|
|
|
}
|