0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
lib
/
core
/
Search
/
Federated
/
[
Home
]
File: TikiIndex.php
<?php // (c) Copyright 2002-2015 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: TikiIndex.php 53803 2015-02-06 00:42:50Z jyhem $ namespace Search\Federated; class TikiIndex implements IndexInterface { private $prefix; private $groups; function __construct($urlPrefix, array $groups = []) { $this->prefix = $urlPrefix; $this->groups = $groups; } function getTransformations() { return [ new UrlPrefixTransform($this->prefix), ]; } function applyContentConditions(\Search_Query $query, $content) { $query->filterContent('y', 'searchable'); $query->filterContent($content, ['title', 'contents']); $this->applyRaw($query); } function applySimilarConditions(\Search_Query $query, $type, $object) { $query->filterSimilar($type, $object); $this->applyRaw($query); } private function applyRaw($query) { $unified = \TikiLib::lib('unifiedsearch'); $unified->initQueryBase($query, false); $applyAs = $this->groups; if (empty($applyAs)) { $unified->initQueryPermissions($query); } else { $query->filterPermissions($applyAs); } } }