2011-05-02 06:33:05 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A Search Variant handles decorators and other situations where the items to reindex or search through are modified
|
|
|
|
* from the default state - for instance, dealing with Versioned or Subsite
|
|
|
|
*/
|
2015-11-21 07:19:20 +01:00
|
|
|
abstract class SearchVariant
|
|
|
|
{
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/*** OVERRIDES start here */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Variants can provide any functions they want, but they _must_ override these functions
|
|
|
|
* with specific ones
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return false if there is something missing from the environment (probably a
|
|
|
|
* not installed module) that means this variant can't apply to any class
|
|
|
|
*/
|
|
|
|
abstract public function appliesToEnvironment();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return true if this variant applies to the passed class & subclass
|
|
|
|
*/
|
|
|
|
abstract public function appliesTo($class, $includeSubclasses);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the current state
|
|
|
|
*/
|
|
|
|
abstract public function currentState();
|
|
|
|
/**
|
|
|
|
* Return all states to step through to reindex all items
|
|
|
|
*/
|
|
|
|
abstract public function reindexStates();
|
|
|
|
/**
|
|
|
|
* Activate the passed state
|
|
|
|
*/
|
|
|
|
abstract public function activateState($state);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Apply this variant to a search query
|
|
|
|
*
|
|
|
|
* @param SearchQuery $query
|
|
|
|
* @param SearchIndex $index
|
|
|
|
*/
|
|
|
|
abstract public function alterQuery($query, $index);
|
|
|
|
|
|
|
|
/*** OVERRIDES end here*/
|
|
|
|
|
|
|
|
/** Holds a cache of all variants */
|
|
|
|
protected static $variants = null;
|
|
|
|
/** Holds a cache of the variants keyed by "class!" "1"? (1 = include subclasses) */
|
|
|
|
protected static $class_variants = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an array of variants.
|
|
|
|
*
|
|
|
|
* With no arguments, returns all variants
|
|
|
|
*
|
|
|
|
* With a classname as the first argument, returns the variants that apply to that class
|
|
|
|
* (optionally including subclasses)
|
|
|
|
*
|
|
|
|
* @static
|
|
|
|
* @param string $class - The class name to get variants for
|
|
|
|
* @param bool $includeSubclasses - True if variants should be included if they apply to at least one subclass of $class
|
|
|
|
* @return array - An array of (string)$variantClassName => (Object)$variantInstance pairs
|
|
|
|
*/
|
|
|
|
public static function variants($class = null, $includeSubclasses = true)
|
|
|
|
{
|
|
|
|
if (!$class) {
|
|
|
|
if (self::$variants === null) {
|
|
|
|
$classes = ClassInfo::subclassesFor('SearchVariant');
|
|
|
|
|
|
|
|
$concrete = array();
|
|
|
|
foreach ($classes as $variantclass) {
|
|
|
|
$ref = new ReflectionClass($variantclass);
|
|
|
|
if ($ref->isInstantiable()) {
|
|
|
|
$variant = singleton($variantclass);
|
|
|
|
if ($variant->appliesToEnvironment()) {
|
|
|
|
$concrete[$variantclass] = $variant;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
self::$variants = $concrete;
|
|
|
|
}
|
|
|
|
|
|
|
|
return self::$variants;
|
|
|
|
} else {
|
|
|
|
$key = $class . '!' . $includeSubclasses;
|
|
|
|
|
|
|
|
if (!isset(self::$class_variants[$key])) {
|
|
|
|
self::$class_variants[$key] = array();
|
|
|
|
|
|
|
|
foreach (self::variants() as $variantclass => $instance) {
|
|
|
|
if ($instance->appliesTo($class, $includeSubclasses)) {
|
|
|
|
self::$class_variants[$key][$variantclass] = $instance;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return self::$class_variants[$key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Holds a cache of SearchVariant_Caller instances, one for each class/includeSubclasses setting */
|
|
|
|
protected static $call_instances = array();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Lets you call any function on all variants that support it, in the same manner as "Object#extend" calls
|
|
|
|
* a method from extensions.
|
|
|
|
*
|
|
|
|
* Usage: SearchVariant::with(...)->call($method, $arg1, ...);
|
|
|
|
*
|
|
|
|
* @static
|
|
|
|
*
|
|
|
|
* @param string $class - (Optional) a classname. If passed, only variants that apply to that class will be checked / called
|
|
|
|
*
|
|
|
|
* @param bool $includeSubclasses - (Optional) If false, only variants that apply strictly to the passed class or its super-classes
|
|
|
|
* will be checked. If true (the default), variants that apply to any sub-class of the passed class with also be checked
|
|
|
|
*
|
2016-04-15 07:59:10 +02:00
|
|
|
* @return SearchVariant_Caller An object with one method, call()
|
2015-11-21 07:19:20 +01:00
|
|
|
*/
|
|
|
|
public static function with($class = null, $includeSubclasses = true)
|
|
|
|
{
|
|
|
|
// Make the cache key
|
|
|
|
$key = $class ? $class . '!' . $includeSubclasses : '!';
|
|
|
|
// If no SearchVariant_Caller instance yet, create it
|
|
|
|
if (!isset(self::$call_instances[$key])) {
|
|
|
|
self::$call_instances[$key] = new SearchVariant_Caller(self::variants($class, $includeSubclasses));
|
|
|
|
}
|
|
|
|
// Then return it
|
|
|
|
return self::$call_instances[$key];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A shortcut to with when calling without passing in a class,
|
|
|
|
*
|
|
|
|
* SearchVariant::call(...) ==== SearchVariant::with()->call(...);
|
|
|
|
*/
|
|
|
|
public static function call($method, &$a1=null, &$a2=null, &$a3=null, &$a4=null, &$a5=null, &$a6=null, &$a7=null)
|
|
|
|
{
|
|
|
|
return self::with()->call($method, $a1, $a2, $a3, $a4, $a5, $a6, $a7);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the current state of every variant
|
|
|
|
* @static
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public static function current_state($class = null, $includeSubclasses = true)
|
|
|
|
{
|
|
|
|
$state = array();
|
|
|
|
foreach (self::variants($class, $includeSubclasses) as $variant => $instance) {
|
|
|
|
$state[$variant] = $instance->currentState();
|
|
|
|
}
|
|
|
|
return $state;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Activate all the states in the passed argument
|
|
|
|
* @static
|
|
|
|
* @param (array) $state. A set of (string)$variantClass => (any)$state pairs , e.g. as returned by
|
|
|
|
* SearchVariant::current_state()
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public static function activate_state($state)
|
|
|
|
{
|
|
|
|
foreach (self::variants() as $variant => $instance) {
|
|
|
|
if (isset($state[$variant])) {
|
|
|
|
$instance->activateState($state[$variant]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return an iterator that, when used in a for loop, activates one combination of reindex states per loop, and restores
|
|
|
|
* back to the original state at the end
|
|
|
|
* @static
|
|
|
|
* @param string $class - The class name to get variants for
|
|
|
|
* @param bool $includeSubclasses - True if variants should be included if they apply to at least one subclass of $class
|
|
|
|
* @return SearchVariant_ReindexStateIteratorRet - The iterator to foreach loop over
|
|
|
|
*/
|
|
|
|
public static function reindex_states($class = null, $includeSubclasses = true)
|
|
|
|
{
|
|
|
|
$allstates = array();
|
|
|
|
|
|
|
|
foreach (self::variants($class, $includeSubclasses) as $variant => $instance) {
|
|
|
|
if ($states = $instance->reindexStates()) {
|
|
|
|
$allstates[$variant] = $states;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $allstates ? new CombinationsArrayIterator($allstates) : array(array());
|
|
|
|
}
|
2016-04-15 07:59:10 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add new filter field to index safely.
|
|
|
|
*
|
|
|
|
* This method will respect existing filters with the same field name that
|
|
|
|
* correspond to multiple classes
|
|
|
|
*
|
|
|
|
* @param SearchIndex $index
|
|
|
|
* @param string $name Field name
|
|
|
|
* @param array $field Field spec
|
|
|
|
*/
|
|
|
|
protected function addFilterField($index, $name, $field) {
|
|
|
|
// If field already exists, make sure to merge origin / base fields
|
|
|
|
if(isset($index->filterFields[$name])) {
|
|
|
|
$field['base'] = $this->mergeClasses(
|
|
|
|
$index->filterFields[$name]['base'],
|
|
|
|
$field['base']
|
|
|
|
);
|
|
|
|
$field['origin'] = $this->mergeClasses(
|
|
|
|
$index->filterFields[$name]['origin'],
|
|
|
|
$field['origin']
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
$index->filterFields[$name] = $field;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Merge sets of (or individual) class names together for a search index field.
|
|
|
|
*
|
|
|
|
* If there is only one unique class name, then just return it as a string instead of array.
|
|
|
|
*
|
|
|
|
* @param array|string $left Left class(es)
|
|
|
|
* @param array|string $right Right class(es)
|
|
|
|
* @return array|string List of classes, or single class
|
|
|
|
*/
|
|
|
|
protected function mergeClasses($left, $right) {
|
|
|
|
// Merge together and remove dupes
|
|
|
|
if(!is_array($left)) {
|
|
|
|
$left = array($left);
|
|
|
|
}
|
|
|
|
if(!is_array($right)) {
|
|
|
|
$right = array($right);
|
|
|
|
}
|
|
|
|
$merged = array_values(array_unique(array_merge($left, $right)));
|
|
|
|
|
|
|
|
// If there is only one item, return it as a single string
|
|
|
|
if(count($merged) === 1) {
|
|
|
|
return reset($merged);
|
|
|
|
}
|
|
|
|
return $merged;
|
|
|
|
}
|
2011-05-02 06:33:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal utility class used to hold the state of the SearchVariant::with call
|
|
|
|
*/
|
2015-11-21 07:19:20 +01:00
|
|
|
class SearchVariant_Caller
|
|
|
|
{
|
|
|
|
protected $variants = null;
|
|
|
|
|
|
|
|
public function __construct($variants)
|
|
|
|
{
|
|
|
|
$this->variants = $variants;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function call($method, &$a1=null, &$a2=null, &$a3=null, &$a4=null, &$a5=null, &$a6=null, &$a7=null)
|
|
|
|
{
|
|
|
|
$values = array();
|
|
|
|
|
|
|
|
foreach ($this->variants as $variant) {
|
|
|
|
if (method_exists($variant, $method)) {
|
|
|
|
$value = $variant->$method($a1, $a2, $a3, $a4, $a5, $a6, $a7);
|
|
|
|
if ($value !== null) {
|
|
|
|
$values[] = $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $values;
|
|
|
|
}
|
2011-05-02 06:33:05 +02:00
|
|
|
}
|