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-11-06 12:33:06 +00:00
|
|
|
var $_structure;
|
2009-11-06 03:29:29 +00:00
|
|
|
var $_category_search;
|
2009-11-01 18:15:59 +00:00
|
|
|
|
2009-11-11 02:34:57 +00:00
|
|
|
function &read_from_options() {
|
2009-11-01 19:04:15 +00:00
|
|
|
$this->create_structure($this->get_flattened_storyline());
|
2009-11-11 02:34:57 +00:00
|
|
|
return $this;
|
2009-11-01 18:15:59 +00:00
|
|
|
}
|
2009-11-06 02:45:27 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the flattened storyline from options.
|
|
|
|
*/
|
2009-11-01 18:15:59 +00:00
|
|
|
function get_flattened_storyline() {
|
2009-11-01 19:04:15 +00:00
|
|
|
$comicpress = &ComicPress::get_instance();
|
2009-11-21 14:56:31 +00:00
|
|
|
if (isset($comicpress->comicpress_options['storyline_order'])) {
|
|
|
|
return $comicpress->comicpress_options['storyline_order'];
|
|
|
|
}
|
|
|
|
return false;
|
2009-11-01 18:15:59 +00:00
|
|
|
}
|
|
|
|
|
2009-11-06 02:45:27 +00:00
|
|
|
/**
|
|
|
|
* Set the global storyline as a flattened storyline.
|
|
|
|
*/
|
2009-11-01 18:15:59 +00:00
|
|
|
function set_flattened_storyline($storyline) {
|
2009-11-01 19:04:15 +00:00
|
|
|
$comicpress = &ComicPress::get_instance();
|
2009-11-01 18:15:59 +00:00
|
|
|
$comicpress->comicpress_options['storyline_order'] = $storyline;
|
|
|
|
$comicpress->save();
|
|
|
|
}
|
|
|
|
|
2009-11-06 02:45:27 +00:00
|
|
|
/**
|
|
|
|
* Set the order from a flattened storyline.
|
|
|
|
*/
|
2009-11-01 18:15:59 +00:00
|
|
|
function set_order_via_flattened_storyline($order) {
|
|
|
|
$nodes = explode(',', $order);
|
|
|
|
$original_nodes = explode(',', $this->get_flattened_storyline());
|
2009-11-11 02:34:57 +00:00
|
|
|
|
2009-11-01 18:15:59 +00:00
|
|
|
$missing_good_nodes = array_diff($original_nodes, $nodes);
|
|
|
|
$any_bad_nodes = array_diff($nodes, $original_nodes);
|
2009-11-11 02:34:57 +00:00
|
|
|
|
2009-11-01 18:15:59 +00:00
|
|
|
if (empty($missing_good_nodes) && empty($any_bad_nodes)) {
|
|
|
|
$this->set_flattened_storyline($order);
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-12 02:07:35 +00:00
|
|
|
function _create_structure_key($input) {
|
|
|
|
$key = 'storyline-structure-';
|
|
|
|
if (is_string($input)) { return $key . $input; }
|
|
|
|
if (is_array($input)) {
|
|
|
|
$fixed_parts = array();
|
|
|
|
foreach ($input as $i) { if (is_string($i)) { $fixed_parts[] = $i; } }
|
|
|
|
if (!empty($fixed_parts)) { return $key . implode(',', $fixed_parts); }
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
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) {
|
2009-11-12 02:07:35 +00:00
|
|
|
$key = $this->_create_structure_key($structure);
|
|
|
|
|
|
|
|
if ($key !== false) {
|
|
|
|
if (is_string($structure)) {
|
|
|
|
$structure = explode(',', $structure);
|
|
|
|
} else {
|
|
|
|
if (is_array($structure)) {
|
|
|
|
$fixed_structure = array();
|
|
|
|
foreach ($structure as $s) {
|
|
|
|
if (!is_array($s)) { $fixed_structure[] = $s; }
|
|
|
|
}
|
|
|
|
$structure = $fixed_structure;
|
|
|
|
}
|
|
|
|
}
|
2009-11-06 12:33:06 +00:00
|
|
|
|
|
|
|
if (($result = wp_cache_get($key, 'comicpress')) !== false) {
|
|
|
|
$this->_structure = $result;
|
|
|
|
} else {
|
|
|
|
$new_structure = array();
|
|
|
|
$parent = null;
|
|
|
|
$all_leaves = array();
|
|
|
|
|
|
|
|
$adjacents_by_parent = array();
|
|
|
|
|
|
|
|
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);
|
|
|
|
$all_leaves[] = $leaf;
|
2009-10-18 21:05:10 +00:00
|
|
|
|
2009-11-06 12:33:06 +00:00
|
|
|
$data['level'] = count($parts) - 1;
|
2009-10-22 02:41:35 +00:00
|
|
|
|
2009-11-06 12:33:06 +00:00
|
|
|
if (count($parts) > 2) {
|
|
|
|
$parent = $parts[count($parts) - 2];
|
2009-10-18 21:05:10 +00:00
|
|
|
|
2009-11-06 12:33:06 +00:00
|
|
|
if (!isset($adjacents_by_parent[$parent])) {
|
|
|
|
$adjacents_by_parent[$parent] = array();
|
|
|
|
}
|
|
|
|
$adjacents_by_parent[$parent][] = $leaf;
|
2009-11-06 03:29:29 +00:00
|
|
|
|
2009-11-06 12:33:06 +00:00
|
|
|
$data['parent'] = $parent;
|
|
|
|
}
|
2009-10-18 21:05:10 +00:00
|
|
|
|
2009-11-06 12:33:06 +00:00
|
|
|
$new_structure[$leaf] = $data;
|
2009-10-18 21:05:10 +00:00
|
|
|
}
|
2009-10-21 00:40:16 +00:00
|
|
|
} else {
|
2009-11-06 12:33:06 +00:00
|
|
|
$is_valid = false; break;
|
2009-10-18 21:05:10 +00:00
|
|
|
}
|
|
|
|
}
|
2009-11-06 12:33:06 +00:00
|
|
|
if ($is_valid) {
|
|
|
|
for ($i = 0; $i < count($all_leaves); ++$i) {
|
|
|
|
foreach (array('previous' => -1, 'next' => 1) as $type => $dir) {
|
|
|
|
if (isset($all_leaves[$i + $dir])) {
|
|
|
|
$new_structure[$all_leaves[$i]][$type] = $all_leaves[$i + $dir];
|
|
|
|
}
|
|
|
|
}
|
2009-10-18 21:59:40 +00:00
|
|
|
}
|
2009-11-06 12:33:06 +00:00
|
|
|
|
|
|
|
$this->_structure = $new_structure;
|
2009-10-18 21:59:40 +00:00
|
|
|
}
|
|
|
|
}
|
2009-11-06 12:33:06 +00:00
|
|
|
wp_cache_set($key, $this->_structure, 'comicpress');
|
2009-10-18 21:05:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
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)) {
|
2009-11-19 01:03:14 +00:00
|
|
|
$id = $this->_ensure_numeric_category($id);
|
2009-10-18 21:59:40 +00:00
|
|
|
if (isset($this->_structure[$id])) {
|
|
|
|
if (isset($this->_structure[$id][$field])) {
|
|
|
|
return $this->_structure[$id][$field];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2009-11-11 02:34:57 +00:00
|
|
|
|
2009-11-12 02:07:35 +00:00
|
|
|
// @codeCoverageIgnoreStart
|
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); }
|
2009-11-12 02:07:35 +00:00
|
|
|
// @codeCoverageIgnoreEnd
|
|
|
|
|
2009-11-19 01:03:14 +00:00
|
|
|
function valid($id) {
|
|
|
|
$id = $this->_ensure_numeric_category($id);
|
|
|
|
if (isset($this->_structure[$id])) {
|
2009-10-31 20:04:29 +00:00
|
|
|
return array_keys($this->_structure[$id]);
|
2009-10-18 21:59:40 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-11-11 02:34:57 +00:00
|
|
|
function all_adjacent($id, $direction) {
|
|
|
|
if (isset($this->_structure[$id])) {
|
|
|
|
$all_adjacent = array();
|
|
|
|
do {
|
|
|
|
$has_adjacent = false;
|
2009-11-11 03:15:06 +00:00
|
|
|
|
|
|
|
if (isset($this->_structure[$id][$direction])) {
|
|
|
|
$new_id = $this->_structure[$id][$direction];
|
|
|
|
|
|
|
|
if (!in_array($new_id, $all_adjacent)) {
|
|
|
|
if ($has_adjacent = isset($this->_structure[$id][$direction])) {
|
|
|
|
$all_adjacent[] = $new_id;
|
|
|
|
$id = $new_id;
|
|
|
|
}
|
2009-11-11 02:34:57 +00:00
|
|
|
}
|
|
|
|
}
|
2009-11-12 02:07:35 +00:00
|
|
|
// @codeCoverageIgnoreStart
|
2009-11-11 02:34:57 +00:00
|
|
|
} while ($has_adjacent);
|
2009-11-12 02:07:35 +00:00
|
|
|
// @codeCoverageIgnoreEnd
|
2009-11-11 02:34:57 +00:00
|
|
|
return $all_adjacent;
|
|
|
|
}
|
|
|
|
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-11-11 02:34:57 +00:00
|
|
|
|
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
|
|
|
|
2009-11-06 02:45:27 +00:00
|
|
|
/**
|
|
|
|
* Get a simple storyline.
|
|
|
|
*/
|
2009-10-31 20:04:29 +00:00
|
|
|
function get_simple_storyline() {
|
|
|
|
$simple_storyline = array('0' => array());
|
|
|
|
foreach ($this->_structure as $category_id => $adjacents) {
|
|
|
|
$parent = 0;
|
|
|
|
if (isset($adjacents['parent'])) { $parent = $adjacents['parent']; }
|
|
|
|
if (!isset($simple_storyline[$parent])) {
|
|
|
|
$simple_storyline[$parent] = array();
|
|
|
|
}
|
|
|
|
$simple_storyline[$parent][$category_id] = true;
|
|
|
|
}
|
2009-11-11 02:34:57 +00:00
|
|
|
|
2009-11-01 18:15:59 +00:00
|
|
|
return $this->_merge_simple_storyline($simple_storyline);
|
|
|
|
}
|
|
|
|
|
2009-11-06 02:45:27 +00:00
|
|
|
/**
|
|
|
|
* Get a simple structure.
|
|
|
|
*/
|
2009-11-06 02:15:12 +00:00
|
|
|
function get_category_simple_structure($parent = null) {
|
2009-11-01 18:15:59 +00:00
|
|
|
$structure = array();
|
|
|
|
foreach (get_all_category_ids() as $category_id) {
|
|
|
|
$category = get_category($category_id);
|
|
|
|
if (!isset($structure[$category->parent])) {
|
|
|
|
$structure[$category->parent] = array();
|
|
|
|
}
|
|
|
|
$structure[$category->parent][$category_id] = true;
|
|
|
|
}
|
|
|
|
$structure = $this->_merge_simple_storyline($structure);
|
2009-11-06 02:15:12 +00:00
|
|
|
if (!empty($parent)) {
|
|
|
|
if (isset($structure[0])) {
|
|
|
|
foreach ($structure[0] as $key => $children) {
|
|
|
|
if ($key != $parent) { unset($structure[0][$key]); }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-11-01 18:15:59 +00:00
|
|
|
return $structure;
|
|
|
|
}
|
2009-11-06 02:45:27 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a flattened category node list.
|
|
|
|
*/
|
2009-11-12 02:07:35 +00:00
|
|
|
// @codeCoverageIgnoreStart
|
2009-11-06 02:15:12 +00:00
|
|
|
function get_category_flattened($parent = null) {
|
2009-11-01 19:04:15 +00:00
|
|
|
return $this->flatten_simple_storyline($this->get_category_simple_structure($parent));
|
|
|
|
}
|
2009-11-12 02:07:35 +00:00
|
|
|
// @codeCoverageIgnoreEnd
|
2009-11-01 18:15:59 +00:00
|
|
|
|
2009-11-06 02:45:27 +00:00
|
|
|
/**
|
|
|
|
* Merge a flat simple storyline into a tree.
|
|
|
|
*/
|
2009-11-01 18:15:59 +00:00
|
|
|
function _merge_simple_storyline($simple_storyline) {
|
2009-10-31 20:04:29 +00:00
|
|
|
while (count($simple_storyline) > 0) {
|
|
|
|
$merge_found = false;
|
|
|
|
foreach ($simple_storyline as $parent => $children) {
|
|
|
|
$has_no_descendents = true;
|
|
|
|
foreach (array_keys($children) as $child) {
|
|
|
|
if (is_numeric($child)) {
|
|
|
|
if (isset($simple_storyline[$child])) {
|
|
|
|
$has_no_descendents = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($has_no_descendents) {
|
|
|
|
$merge_found = $parent; break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($merge_found !== false) {
|
|
|
|
foreach ($simple_storyline as $parent => $children) {
|
|
|
|
if (isset($children[$merge_found])) {
|
|
|
|
$simple_storyline[$parent][$merge_found] = $simple_storyline[$merge_found];
|
|
|
|
unset($simple_storyline[$merge_found]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!$merge_found) { break; }
|
|
|
|
}
|
|
|
|
return $simple_storyline;
|
|
|
|
}
|
2009-11-01 18:15:59 +00:00
|
|
|
|
2009-11-01 19:04:15 +00:00
|
|
|
/**
|
|
|
|
* Integrates a bunch of other things.
|
|
|
|
*/
|
|
|
|
function normalize($flattened_storyline = null, $set = true) {
|
|
|
|
if (is_null($flattened_storyline)) {
|
|
|
|
$flattened_storyline = $this->get_flattened_storyline();
|
|
|
|
}
|
2009-11-06 02:15:12 +00:00
|
|
|
$all_categories_flattened = $this->get_category_flattened();
|
2009-11-11 02:34:57 +00:00
|
|
|
|
2009-11-01 19:04:15 +00:00
|
|
|
$result = $this->normalize_flattened_storyline($flattened_storyline, $all_categories_flattened);
|
|
|
|
if ($set) {
|
|
|
|
$this->set_flattened_storyline($result);
|
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
2009-11-06 02:45:27 +00:00
|
|
|
/**
|
|
|
|
* Sort nodes by node count.
|
|
|
|
*/
|
2009-11-01 19:04:15 +00:00
|
|
|
function _length_sort($parts) {
|
|
|
|
$new = array();
|
|
|
|
foreach ($parts as $part) {
|
|
|
|
$p = explode('/', $part);
|
|
|
|
if (!isset($new[count($p)])) {
|
|
|
|
$new[count($p)] = array();
|
|
|
|
}
|
|
|
|
$new[count($p)][] = $part;
|
|
|
|
}
|
|
|
|
ksort($new);
|
|
|
|
$output = array();
|
|
|
|
foreach (array_values($new) as $values) {
|
|
|
|
$output = array_merge($output, $values);
|
|
|
|
}
|
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
|
2009-11-06 02:45:27 +00:00
|
|
|
/**
|
|
|
|
* Normalize a flattened storyline, inserting and removing categories from the list is necessary.
|
|
|
|
*/
|
2009-11-01 18:15:59 +00:00
|
|
|
function normalize_flattened_storyline($storyline, $comic_categories) {
|
|
|
|
$storyline_nodes = explode(",", $storyline);
|
|
|
|
$category_nodes = explode(",", $comic_categories);
|
2009-11-06 02:15:12 +00:00
|
|
|
|
2009-11-01 18:15:59 +00:00
|
|
|
$missing_from_storyline = array_diff($category_nodes, $storyline_nodes);
|
|
|
|
$extra_in_storyline = array_diff($storyline_nodes, $category_nodes);
|
2009-11-11 02:34:57 +00:00
|
|
|
|
2009-11-01 18:15:59 +00:00
|
|
|
if (!empty($missing_from_storyline)) {
|
2009-11-01 19:04:15 +00:00
|
|
|
$missing_from_storyline = $this->_length_sort($missing_from_storyline);
|
2009-11-01 18:15:59 +00:00
|
|
|
foreach ($missing_from_storyline as $node) {
|
|
|
|
$parent_pattern = implode('/', array_slice(explode('/', $node), 0, -1));
|
|
|
|
$last = null;
|
|
|
|
for ($i = 0, $il = count($storyline_nodes); $i < $il; ++$i) {
|
|
|
|
if (strpos($storyline_nodes[$i], $parent_pattern) === 0) {
|
|
|
|
$last = $i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!is_null($last)) {
|
|
|
|
array_splice($storyline_nodes, $last + 1, 0, array($node));
|
2009-11-01 19:04:15 +00:00
|
|
|
} else {
|
|
|
|
$storyline_nodes[] = $node;
|
2009-11-01 18:15:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-11-11 02:34:57 +00:00
|
|
|
|
2009-11-01 18:15:59 +00:00
|
|
|
if (!empty($extra_in_storyline)) {
|
|
|
|
$new = array();
|
|
|
|
foreach ($storyline_nodes as $node) {
|
|
|
|
if (!in_array($node, $extra_in_storyline)) {
|
|
|
|
$new[] = $node;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$storyline_nodes = $new;
|
|
|
|
}
|
2009-11-11 02:34:57 +00:00
|
|
|
|
2009-11-01 18:15:59 +00:00
|
|
|
return implode(',', $storyline_nodes);
|
|
|
|
}
|
2009-11-06 02:45:27 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Flatten a simple storyline.
|
|
|
|
*/
|
2009-11-01 18:15:59 +00:00
|
|
|
function flatten_simple_storyline($storyline) {
|
|
|
|
return implode(',', $this->_follow_simple_storyline($storyline));
|
|
|
|
}
|
2009-11-06 02:45:27 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Follow the nodes of a simple storyline, creating a node list.
|
|
|
|
*/
|
2009-11-01 18:15:59 +00:00
|
|
|
function _follow_simple_storyline($storyline, $parent = null) {
|
|
|
|
$output = array();
|
|
|
|
foreach ($storyline as $key => $children) {
|
|
|
|
if (is_null($parent)) {
|
|
|
|
$new_parent = $key;
|
|
|
|
} else {
|
|
|
|
$new_parent = $parent . '/' . $key;
|
|
|
|
$output[] = $new_parent;
|
|
|
|
}
|
|
|
|
if (is_array($children)) {
|
|
|
|
$output = array_merge($output, $this->_follow_simple_storyline($children, $new_parent));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $output;
|
|
|
|
}
|
2009-11-06 03:29:29 +00:00
|
|
|
|
|
|
|
function &include_all() {
|
|
|
|
$this->_category_search = array_keys($this->_structure);
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
function &exclude_all() {
|
|
|
|
$this->_category_search = array();
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2009-11-18 23:39:37 +00:00
|
|
|
function _ensure_numeric_category($parent) {
|
2009-11-11 02:34:57 +00:00
|
|
|
if (!is_numeric($parent)) {
|
|
|
|
foreach (get_all_category_ids() as $id) {
|
|
|
|
$category = get_category($id);
|
|
|
|
if ($category->slug == $parent) {
|
|
|
|
$parent = $id; break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-11-18 23:39:37 +00:00
|
|
|
return $parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
function _find_children($parent) {
|
|
|
|
$parent = $this->_ensure_numeric_category($parent);
|
2009-11-11 02:34:57 +00:00
|
|
|
if (is_numeric($parent)) {
|
|
|
|
$children = array($parent);
|
|
|
|
do {
|
|
|
|
$found_children = false;
|
2009-11-20 02:42:29 +00:00
|
|
|
if (is_array($this->_structure)) {
|
|
|
|
foreach ($this->_structure as $category_id => $info) {
|
|
|
|
if (!in_array($category_id, $children)) {
|
|
|
|
if (isset($info['parent'])) {
|
|
|
|
if (in_array($info['parent'], $children)) {
|
|
|
|
$children[] = $category_id;
|
|
|
|
$found_children = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-11-11 02:34:57 +00:00
|
|
|
}
|
2009-11-12 02:07:35 +00:00
|
|
|
// @codeCoverageIgnoreStart
|
2009-11-11 02:34:57 +00:00
|
|
|
} while ($found_children);
|
2009-11-12 02:07:35 +00:00
|
|
|
// @codeCoverageIgnoreEnd
|
2009-11-11 02:34:57 +00:00
|
|
|
|
|
|
|
return $children;
|
|
|
|
}
|
|
|
|
return false;
|
2009-11-06 03:29:29 +00:00
|
|
|
}
|
|
|
|
|
2009-11-11 02:34:57 +00:00
|
|
|
function &_include() {
|
|
|
|
$args = func_get_args();
|
|
|
|
$method = array_shift($args);
|
|
|
|
$this->_category_search = array_unique(array_merge($this->_category_search, call_user_func_array(array($this, $method), $args)));
|
2009-11-06 03:29:29 +00:00
|
|
|
sort($this->_category_search);
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2009-11-11 02:34:57 +00:00
|
|
|
function &_exclude() {
|
|
|
|
$args = func_get_args();
|
|
|
|
$method = array_shift($args);
|
|
|
|
$this->_category_search = array_diff($this->_category_search, call_user_func_array(array($this, $method), $args));
|
2009-11-06 03:29:29 +00:00
|
|
|
sort($this->_category_search);
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
function _find_level_or_above($level = null) {
|
|
|
|
$found = array();
|
|
|
|
foreach ($this->_structure as $category_id => $info) {
|
|
|
|
if ($info['level'] <= $level) { $found[] = $category_id; }
|
|
|
|
}
|
|
|
|
return $found;
|
|
|
|
}
|
|
|
|
|
2009-11-11 02:34:57 +00:00
|
|
|
function _find_only($id = null) {
|
|
|
|
if (isset($this->_structure[$id])) {
|
|
|
|
return array($id);
|
|
|
|
}
|
|
|
|
return array();
|
2009-11-06 03:29:29 +00:00
|
|
|
}
|
|
|
|
|
2009-11-11 02:34:57 +00:00
|
|
|
function _find_level($level = null) {
|
|
|
|
$found = array();
|
|
|
|
foreach ($this->_structure as $category_id => $info) {
|
|
|
|
if ($info['level'] == $level) { $found[] = $category_id; }
|
|
|
|
}
|
|
|
|
return $found;
|
|
|
|
}
|
|
|
|
|
|
|
|
function _ensure_post_id($thing) {
|
|
|
|
$id = null;
|
|
|
|
if (is_object($thing)) {
|
|
|
|
if (isset($thing->ID)) { $id = $thing->ID; }
|
|
|
|
} else {
|
|
|
|
if (is_numeric($thing)) { $id = $thing; }
|
|
|
|
}
|
|
|
|
return $id;
|
|
|
|
}
|
|
|
|
|
|
|
|
function _find_post_category($post = null) {
|
|
|
|
$found = array();
|
|
|
|
|
|
|
|
$id = $this->_ensure_post_id($post);
|
|
|
|
|
|
|
|
if (!is_null($id)) {
|
|
|
|
if (count($categories = wp_get_post_categories($id)) == 1) {
|
|
|
|
$found = $categories;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $found;
|
|
|
|
}
|
|
|
|
|
|
|
|
function _find_adjacent($category = null, $next = false) {
|
|
|
|
$found = array();
|
|
|
|
|
|
|
|
if (!is_null($category)) {
|
|
|
|
if (isset($this->_structure[$category])) {
|
|
|
|
$field = $next ? 'next' : 'previous';
|
|
|
|
if (isset($this->_structure[$category][$field])) {
|
|
|
|
$found = array($this->_structure[$category][$field]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $found;
|
|
|
|
}
|
|
|
|
|
|
|
|
function _find_post_root($post = null) {
|
|
|
|
$found = array();
|
|
|
|
|
|
|
|
$id = $this->_ensure_post_id($post);
|
|
|
|
|
|
|
|
if (!is_null($id)) {
|
|
|
|
if (count($categories = wp_get_post_categories($id)) == 1) {
|
|
|
|
$comic_post = new ComicPressComicPost(get_post($id));
|
|
|
|
$parents = $comic_post->find_parents();
|
|
|
|
if (!empty($parents)) {
|
|
|
|
$parents = array_keys($parents); $found = $this->_find_children(end($parents));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $found;
|
2009-11-06 03:29:29 +00:00
|
|
|
}
|
2009-11-06 03:32:32 +00:00
|
|
|
|
|
|
|
function end_search() {
|
|
|
|
$result = $this->_category_search;
|
|
|
|
$this->_category_search = array();
|
|
|
|
return $result;
|
|
|
|
}
|
2009-11-11 02:34:57 +00:00
|
|
|
|
|
|
|
function build_from_restrictions($restrictions = null) {
|
|
|
|
global $post;
|
|
|
|
|
2009-11-13 00:12:30 +00:00
|
|
|
$this->read_from_options();
|
|
|
|
$this->exclude_all();
|
2009-11-11 02:34:57 +00:00
|
|
|
|
|
|
|
$include_all = true;
|
|
|
|
if (is_array($restrictions)) {
|
|
|
|
if (!empty($restrictions)) {
|
|
|
|
$include_all = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$include_all) {
|
2009-11-18 23:39:37 +00:00
|
|
|
foreach ($restrictions as $_type => $_list) {
|
|
|
|
if (!is_string($_type) && is_array($_list)) {
|
|
|
|
$all_checks = array($_list);
|
2009-11-11 02:34:57 +00:00
|
|
|
} else {
|
2009-11-18 23:39:37 +00:00
|
|
|
$all_checks = array(
|
|
|
|
array($_type, $_list)
|
|
|
|
);
|
2009-11-11 02:34:57 +00:00
|
|
|
}
|
|
|
|
|
2009-11-18 23:39:37 +00:00
|
|
|
foreach ($all_checks as $info) {
|
|
|
|
list($type, $list) = $info;
|
|
|
|
|
|
|
|
if (substr($type, 0, 1) == "!") {
|
|
|
|
$method_root = 'exclude';
|
|
|
|
$method_type = substr($type, 1);
|
|
|
|
} else {
|
|
|
|
$method_root = 'include';
|
|
|
|
$method_type = $type;
|
2009-11-11 02:34:57 +00:00
|
|
|
}
|
2009-11-18 23:39:37 +00:00
|
|
|
|
|
|
|
if (!is_array($list)) { $list = array($list); }
|
|
|
|
|
|
|
|
foreach ($list as $restriction) {
|
|
|
|
$method = '';
|
|
|
|
$args = array($restriction);
|
|
|
|
switch ($method_type) {
|
|
|
|
case 'child_of': $method = 'children'; break;
|
|
|
|
case 'root_of': $method = 'post_root'; break;
|
|
|
|
case 'from_post': $method = 'post_category'; break;
|
|
|
|
case 'previous':
|
|
|
|
$method = 'adjacent';
|
|
|
|
$args[] = false;
|
|
|
|
break;
|
|
|
|
case 'next':
|
|
|
|
$method = 'adjacent';
|
|
|
|
$args[] = true;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$method = $method_type; break;
|
|
|
|
}
|
|
|
|
if (!empty($method)) {
|
|
|
|
array_unshift($args, "_find_${method}");
|
|
|
|
call_user_func_array(array($this, "_${method_root}"), $args);
|
|
|
|
}
|
2009-11-11 02:34:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$this->include_all();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->end_search();
|
|
|
|
}
|
2009-10-18 21:05:10 +00:00
|
|
|
}
|
|
|
|
|
2009-11-13 00:12:30 +00:00
|
|
|
?>
|