2009-10-18 21:05:10 +00:00
|
|
|
<?php
|
|
|
|
|
2009-10-20 02:41:37 +00:00
|
|
|
require_once('ComicPressDBInterface.inc');
|
|
|
|
|
2009-10-18 21:05:10 +00:00
|
|
|
class ComicPressStoryline {
|
2009-10-21 00:40:16 +00:00
|
|
|
var $_structure, $root_category;
|
2009-10-18 21:05:10 +00:00
|
|
|
|
2009-10-18 21:59:40 +00:00
|
|
|
/**
|
|
|
|
* Create a searchable structure from a node list.
|
|
|
|
* @param array $structure The structure to process.
|
|
|
|
* @return boolean True if the structure was valid.
|
|
|
|
*/
|
2009-10-18 21:05:10 +00:00
|
|
|
function create_structure($structure) {
|
|
|
|
$new_structure = array();
|
|
|
|
$parent = null;
|
2009-10-18 21:59:40 +00:00
|
|
|
$all_leaves = array();
|
2009-10-21 00:40:16 +00:00
|
|
|
$this->root_category = false;
|
2009-10-18 21:05:10 +00:00
|
|
|
|
|
|
|
$adjacents_by_parent = array();
|
|
|
|
|
2009-10-22 10:56:53 +00:00
|
|
|
if (is_string($structure)) {
|
|
|
|
$structure = explode(',', $structure);
|
|
|
|
}
|
2009-10-22 02:41:35 +00:00
|
|
|
|
2009-10-18 21:05:10 +00:00
|
|
|
if (is_array($structure)) {
|
|
|
|
$is_valid = true;
|
|
|
|
foreach ($structure as $branch) {
|
|
|
|
if (is_string($branch)) {
|
|
|
|
$parts = explode('/', $branch);
|
|
|
|
$valid = false;
|
|
|
|
if (count($parts) > 1) {
|
|
|
|
if ($parts[0] == '0') { $valid = true; }
|
|
|
|
}
|
|
|
|
if (!$valid) {
|
|
|
|
$is_valid = false; break;
|
|
|
|
} else {
|
|
|
|
$data = array();
|
|
|
|
$leaf = end($parts);
|
2009-10-18 21:59:40 +00:00
|
|
|
$all_leaves[] = $leaf;
|
2009-10-18 21:05:10 +00:00
|
|
|
|
|
|
|
if (count($parts) > 2) {
|
|
|
|
$parent = $parts[count($parts) - 2];
|
|
|
|
|
|
|
|
if (!isset($adjacents_by_parent[$parent])) {
|
|
|
|
$adjacents_by_parent[$parent] = array();
|
|
|
|
}
|
|
|
|
$adjacents_by_parent[$parent][] = $leaf;
|
|
|
|
|
|
|
|
$data['parent'] = $parent;
|
2009-10-21 00:40:16 +00:00
|
|
|
} else {
|
|
|
|
$this->root_category = $leaf;
|
2009-10-18 21:05:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$new_structure[$leaf] = $data;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$is_valid = false; break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($is_valid) {
|
2009-10-18 21:59:40 +00:00
|
|
|
for ($i = 0; $i < count($all_leaves); ++$i) {
|
2009-10-21 00:40:16 +00:00
|
|
|
foreach (array('previous' => -1, 'next' => 1) as $type => $dir) {
|
2009-10-18 21:59:40 +00:00
|
|
|
if (isset($all_leaves[$i + $dir])) {
|
|
|
|
$new_structure[$all_leaves[$i]][$type] = $all_leaves[$i + $dir];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-10-22 10:56:53 +00:00
|
|
|
|
2009-10-18 21:05:10 +00:00
|
|
|
$this->_structure = $new_structure;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return is_array($this->_structure);
|
|
|
|
}
|
2009-10-20 02:41:37 +00:00
|
|
|
|
2009-10-18 21:59:40 +00:00
|
|
|
function _get_field($field, $id) {
|
|
|
|
if (isset($this->_structure)) {
|
|
|
|
if (isset($this->_structure[$id])) {
|
|
|
|
if (isset($this->_structure[$id][$field])) {
|
|
|
|
return $this->_structure[$id][$field];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-10-22 10:56:53 +00:00
|
|
|
function current($id) { return $id; }
|
2009-10-18 21:59:40 +00:00
|
|
|
function parent($id) { return $this->_get_field('parent', $id); }
|
|
|
|
function previous($id) { return $this->_get_field('previous', $id); }
|
|
|
|
function next($id) { return $this->_get_field('next', $id); }
|
|
|
|
function valid($id) {
|
|
|
|
if (isset($this->_structure[$id])) {
|
2009-10-22 10:56:53 +00:00
|
|
|
return array_merge(array_keys($this->_structure[$id]), array('current'));
|
2009-10-18 21:59:40 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-10-20 02:41:37 +00:00
|
|
|
/**
|
|
|
|
* Get the valid navigation directions for a particular post.
|
|
|
|
*/
|
2009-10-20 00:56:32 +00:00
|
|
|
function get_valid_nav($post_id) {
|
2009-10-20 02:41:37 +00:00
|
|
|
if (($category = $this->get_valid_post_category($post_id)) !== false) {
|
|
|
|
return $this->valid($category);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2009-10-18 21:59:40 +00:00
|
|
|
|
2009-10-20 02:41:37 +00:00
|
|
|
/**
|
|
|
|
* Get the valid comic category for this post.
|
|
|
|
*/
|
|
|
|
function get_valid_post_category($post_id) {
|
|
|
|
$result = false;
|
|
|
|
|
2009-10-18 21:59:40 +00:00
|
|
|
foreach (wp_get_post_categories($post_id) as $category) {
|
2009-10-20 02:41:37 +00:00
|
|
|
if ($this->valid($category)) {
|
|
|
|
if ($result) { return false; }
|
2009-10-18 21:59:40 +00:00
|
|
|
|
2009-10-20 02:41:37 +00:00
|
|
|
$result = $category;
|
2009-10-18 21:59:40 +00:00
|
|
|
}
|
|
|
|
}
|
2009-10-20 02:41:37 +00:00
|
|
|
return $result;
|
|
|
|
}
|
2009-10-22 02:41:35 +00:00
|
|
|
|
|
|
|
function get_comic_categories() {
|
|
|
|
return array_keys($this->_structure);
|
|
|
|
}
|
2009-10-18 21:05:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|