daux.io/libs/Tree/Builder.php

185 lines
5.1 KiB
PHP
Raw Normal View History

<?php namespace Todaymade\Daux\Tree;
use Todaymade\Daux\Daux;
2015-07-17 18:28:54 +02:00
use Todaymade\Daux\DauxHelper;
2015-04-23 00:32:30 +02:00
class Builder
{
2015-07-17 23:38:06 +02:00
/**
* Build the initial tree
*
* @param Directory $node
2015-07-17 23:38:06 +02:00
* @param array $ignore
*/
public static function build($node, $ignore)
2015-04-23 00:32:30 +02:00
{
if (!$dh = opendir($node->getPath())) {
return;
}
if ($node instanceof Root) {
// Ignore config.json in the root directory
$ignore['files'][] = 'config.json';
}
while (($file = readdir($dh)) !== false) {
if ($file == '.' || $file == '..') {
continue;
}
2015-07-20 15:59:52 +02:00
$path = $node->getPath() . DIRECTORY_SEPARATOR . $file;
2015-04-23 00:32:30 +02:00
if (is_dir($path) && in_array($file, $ignore['folders'])) {
continue;
}
if (!is_dir($path) && in_array($file, $ignore['files'])) {
continue;
}
if (is_dir($path)) {
2015-07-20 15:59:52 +02:00
$new = new Directory($node, static::removeSortingInformations(static::getFilename($path)), $path);
$new->setName(DauxHelper::pathinfo($path)['filename']);
2015-07-20 15:59:52 +02:00
$new->setTitle(static::removeSortingInformations($new->getName(), ' '));
static::build($new, $ignore);
} else {
static::createContent($node, $path);
}
}
$node->sort();
}
/**
* @param Directory $parent
* @param string $path
* @return Content|Raw
*/
public static function createContent(Directory $parent, $path)
{
$name = DauxHelper::pathinfo($path)['filename'];
2015-07-19 16:36:34 +02:00
$config = $parent->getConfig();
if (!in_array(pathinfo($path, PATHINFO_EXTENSION), $config['valid_content_extensions'])) {
2015-08-02 15:42:23 +02:00
$uri = static::removeSortingInformations(static::getFilename($path));
$entry = new Raw($parent, $uri, $path, filemtime($path));
2015-07-20 15:59:52 +02:00
$entry->setTitle(static::removeSortingInformations($name, ' '));
$entry->setName($name);
return $entry;
}
2015-07-20 15:59:52 +02:00
$uri = static::removeSortingInformations($name);
if ($config['mode'] === Daux::STATIC_MODE) {
$uri .= '.html';
}
$entry = new Content($parent, $uri, $path, filemtime($path));
if ($entry->getUri() == $config['index_key']) {
if ($parent instanceof Root) {
$entry->setTitle($config['title']);
} else {
$entry->setTitle($parent->getTitle());
}
} else {
2015-07-20 15:59:52 +02:00
$entry->setTitle(static::removeSortingInformations($name, ' '));
}
$entry->setName($name);
return $entry;
}
/**
* @param string $file
* @return string
*/
protected static function getFilename($file)
{
$parts = explode(DIRECTORY_SEPARATOR, $file);
return end($parts);
}
/**
* @param string $filename
* @return string
*/
2015-07-20 15:59:52 +02:00
protected static function removeSortingInformations($filename, $separator = '_')
{
$filename = explode('_', $filename);
// Remove the numeric part of the
// filename, only if there is
// something after that
if ($filename[0] == '' || (is_numeric($filename[0]) && array_key_exists(1, $filename))) {
unset($filename[0]);
} else {
$t = $filename[0];
if ($t[0] == '-') {
$filename[0] = substr($t, 1);
}
}
2015-07-20 15:59:52 +02:00
$filename = implode($separator, $filename);
return $filename;
}
2015-07-17 18:28:54 +02:00
2015-07-17 23:38:06 +02:00
/**
* @param Directory $parent
2015-07-17 23:38:06 +02:00
* @param String $title
* @return Directory
*/
public static function getOrCreateDir(Directory $parent, $title)
2015-07-17 23:38:06 +02:00
{
2015-07-17 18:28:54 +02:00
$slug = DauxHelper::slug($title);
if (array_key_exists($slug, $parent->getEntries())) {
return $parent->getEntries()[$slug];
2015-07-17 18:28:54 +02:00
}
$dir = new Directory($parent, $slug);
2015-07-17 18:28:54 +02:00
$dir->setTitle($title);
return $dir;
}
2015-07-17 23:38:06 +02:00
/**
* @param Directory $parent
* @param string $path
2015-07-17 23:38:06 +02:00
* @return Content
*/
public static function getOrCreatePage(Directory $parent, $path)
2015-07-17 23:38:06 +02:00
{
$title = DauxHelper::pathinfo($path)['filename'];
// If the file doesn't have an extension, set .md as a default
if (DauxHelper::pathinfo($path)['extension'] == '') {
$path .= '.md';
}
2015-07-21 09:51:55 +02:00
$uri = $slug = DauxHelper::slug($title);
if ($parent->getConfig()['mode'] === Daux::STATIC_MODE) {
$uri = $slug . ".html";
}
2015-07-17 18:28:54 +02:00
if (array_key_exists($uri, $parent->getEntries())) {
return $parent->getEntries()[$uri];
2015-07-17 18:28:54 +02:00
}
$page = new Content($parent, $uri);
2015-07-17 18:28:54 +02:00
$page->setContent("-"); //set an almost empty content to avoid problems
if ($title == 'index') {
// TODO :: clarify the difference between 'index' and '_index'
$page->setName('_index' . DauxHelper::pathinfo($path)['extension']);
$page->setTitle($parent->getTitle());
2015-07-17 18:28:54 +02:00
} else {
$page->setName($path);
2015-07-17 18:28:54 +02:00
$page->setTitle($title);
}
return $page;
}
}