xref: /plugin/struct/meta/Search.php (revision eb55dc17737309b74d7aaeeec7c13f9a649dea65)
115929be2SAndreas Gohr<?php
215929be2SAndreas Gohr
3ba766201SAndreas Gohrnamespace dokuwiki\plugin\struct\meta;
415929be2SAndreas Gohr
5cadfc3ccSAndreas Gohruse dokuwiki\plugin\struct\types\DateTime;
6f107f479SAndreas Gohruse dokuwiki\plugin\struct\types\Decimal;
7ba766201SAndreas Gohruse dokuwiki\plugin\struct\types\Page;
80561158fSAndreas Gohr
915929be2SAndreas Gohrclass Search {
109d7a36f9SAndreas Gohr    /**
119d7a36f9SAndreas Gohr     * This separator will be used to concat multi values to flatten them in the result set
129d7a36f9SAndreas Gohr     */
139d7a36f9SAndreas Gohr    const CONCAT_SEPARATOR = "\n!_-_-_-_-_!\n";
149d7a36f9SAndreas Gohr
155511bd5bSAndreas Gohr    /**
165511bd5bSAndreas Gohr     * The list of known and allowed comparators
172e7595e7SAndreas Gohr     * (order matters)
185511bd5bSAndreas Gohr     */
1974461852SAndreas Gohr    static public $COMPARATORS = array(
202e7595e7SAndreas Gohr        '<=', '>=', '=*', '=', '<', '>', '!=', '!~', '~',
215511bd5bSAndreas Gohr    );
225511bd5bSAndreas Gohr
239d7a36f9SAndreas Gohr    /** @var  \helper_plugin_sqlite */
249d7a36f9SAndreas Gohr    protected $sqlite;
2515929be2SAndreas Gohr
2615929be2SAndreas Gohr    /** @var Schema[] list of schemas to query */
2715929be2SAndreas Gohr    protected $schemas = array();
2815929be2SAndreas Gohr
2915929be2SAndreas Gohr    /** @var Column[] list of columns to select */
3015929be2SAndreas Gohr    protected $columns = array();
3115929be2SAndreas Gohr
3215929be2SAndreas Gohr    /** @var array the sorting of the result */
3315929be2SAndreas Gohr    protected $sortby = array();
3415929be2SAndreas Gohr
359d7a36f9SAndreas Gohr    /** @var array the filters */
369d7a36f9SAndreas Gohr    protected $filter = array();
3715929be2SAndreas Gohr
3815929be2SAndreas Gohr    /** @var array list of aliases tables can be referenced by */
3915929be2SAndreas Gohr    protected $aliases = array();
4015929be2SAndreas Gohr
417f9cb794SAndreas Gohr    /** @var  int begin results from here */
427f9cb794SAndreas Gohr    protected $range_begin = 0;
437f9cb794SAndreas Gohr
447f9cb794SAndreas Gohr    /** @var  int end results here */
457f9cb794SAndreas Gohr    protected $range_end = 0;
467f9cb794SAndreas Gohr
477f9cb794SAndreas Gohr    /** @var int the number of results */
487f9cb794SAndreas Gohr    protected $count = -1;
49d4b5a17cSAndreas Gohr    /** @var  string[] the PIDs of the result rows */
50d4b5a17cSAndreas Gohr    protected $result_pids = null;
517f9cb794SAndreas Gohr
5215929be2SAndreas Gohr    /**
539d7a36f9SAndreas Gohr     * Search constructor.
549d7a36f9SAndreas Gohr     */
559d7a36f9SAndreas Gohr    public function __construct() {
569d7a36f9SAndreas Gohr        /** @var \helper_plugin_struct_db $plugin */
579d7a36f9SAndreas Gohr        $plugin = plugin_load('helper', 'struct_db');
589d7a36f9SAndreas Gohr        $this->sqlite = $plugin->getDB();
599d7a36f9SAndreas Gohr    }
609d7a36f9SAndreas Gohr
619d7a36f9SAndreas Gohr    /**
6215929be2SAndreas Gohr     * Add a schema to be searched
6315929be2SAndreas Gohr     *
6415929be2SAndreas Gohr     * Call multiple times for multiple schemas.
6515929be2SAndreas Gohr     *
6615929be2SAndreas Gohr     * @param string $table
6715929be2SAndreas Gohr     * @param string $alias
6815929be2SAndreas Gohr     */
6915929be2SAndreas Gohr    public function addSchema($table, $alias = '') {
702be187cdSAndreas Gohr        $schema = new Schema($table);
712be187cdSAndreas Gohr        if(!$schema->getId()) {
722be187cdSAndreas Gohr            throw new StructException('schema missing', $table);
732be187cdSAndreas Gohr        }
742be187cdSAndreas Gohr
752be187cdSAndreas Gohr        if($this->schemas &&
762be187cdSAndreas Gohr            (
772be187cdSAndreas Gohr                $schema->isLookup() ||
782be187cdSAndreas Gohr                reset($this->schemas)->isLookup()
792be187cdSAndreas Gohr            )
802be187cdSAndreas Gohr        ) {
812be187cdSAndreas Gohr            throw new StructException('nolookupmix');
822be187cdSAndreas Gohr        }
832be187cdSAndreas Gohr
84712c650dSAndreas Gohr        $this->schemas[$schema->getTable()] = $schema;
85712c650dSAndreas Gohr        if($alias) $this->aliases[$alias] = $schema->getTable();
8615929be2SAndreas Gohr    }
8715929be2SAndreas Gohr
8815929be2SAndreas Gohr    /**
8915929be2SAndreas Gohr     * Add a column to be returned by the search
9015929be2SAndreas Gohr     *
9115929be2SAndreas Gohr     * Call multiple times for multiple columns. Be sure the referenced tables have been
9215929be2SAndreas Gohr     * added before
9315929be2SAndreas Gohr     *
9415929be2SAndreas Gohr     * @param string $colname may contain an alias
9515929be2SAndreas Gohr     */
9615929be2SAndreas Gohr    public function addColumn($colname) {
97577b462bSAndreas Gohr        if($this->processWildcard($colname)) return; // wildcard?
9815929be2SAndreas Gohr        $col = $this->findColumn($colname);
9915929be2SAndreas Gohr        if(!$col) return; //FIXME do we really want to ignore missing columns?
10015929be2SAndreas Gohr        $this->columns[] = $col;
10115929be2SAndreas Gohr    }
10215929be2SAndreas Gohr
10315929be2SAndreas Gohr    /**
10415929be2SAndreas Gohr     * Add sorting options
10515929be2SAndreas Gohr     *
10615929be2SAndreas Gohr     * Call multiple times for multiple columns. Be sure the referenced tables have been
10715929be2SAndreas Gohr     * added before
10815929be2SAndreas Gohr     *
10915929be2SAndreas Gohr     * @param string $colname may contain an alias
11015929be2SAndreas Gohr     * @param bool $asc sort direction (ASC = true, DESC = false)
111*eb55dc17SAndreas Gohr     * @param bool $nc set true for caseinsensitivity
11215929be2SAndreas Gohr     */
113*eb55dc17SAndreas Gohr    public function addSort($colname, $asc = true, $nc = true) {
11415929be2SAndreas Gohr        $col = $this->findColumn($colname);
11515929be2SAndreas Gohr        if(!$col) return; //FIXME do we really want to ignore missing columns?
11615929be2SAndreas Gohr
117*eb55dc17SAndreas Gohr        $this->sortby[$col->getFullQualifiedLabel()] = array($col, $asc, $nc);
11807993756SAndreas Gohr    }
11907993756SAndreas Gohr
12007993756SAndreas Gohr    /**
12107993756SAndreas Gohr     * Returns all set sort columns
12207993756SAndreas Gohr     *
12307993756SAndreas Gohr     * @return array
12407993756SAndreas Gohr     */
12507993756SAndreas Gohr    public function getSorts() {
12607993756SAndreas Gohr        return $this->sortby;
12715929be2SAndreas Gohr    }
12815929be2SAndreas Gohr
12915929be2SAndreas Gohr    /**
1309d7a36f9SAndreas Gohr     * Adds a filter
13115929be2SAndreas Gohr     *
13215929be2SAndreas Gohr     * @param string $colname may contain an alias
13353528ecfSAndreas Gohr     * @param string|string[] $value
1345511bd5bSAndreas Gohr     * @param string $comp @see self::COMPARATORS
1354c13ff97SAndreas Gohr     * @param string $op either 'OR' or 'AND'
13615929be2SAndreas Gohr     */
1374c13ff97SAndreas Gohr    public function addFilter($colname, $value, $comp, $op = 'OR') {
1389dbc32aeSAndreas Gohr        /* Convert certain filters into others
1399dbc32aeSAndreas Gohr         * this reduces the number of supported filters to implement in types */
1409dbc32aeSAndreas Gohr        if($comp == '*~') {
14153528ecfSAndreas Gohr            $value = $this->filterWrapAsterisks($value);
1429dbc32aeSAndreas Gohr            $comp = '~';
1439dbc32aeSAndreas Gohr        } elseif($comp == '<>') {
1449dbc32aeSAndreas Gohr            $comp = '!=';
1459dbc32aeSAndreas Gohr        }
1469dbc32aeSAndreas Gohr
14774461852SAndreas Gohr        if(!in_array($comp, self::$COMPARATORS)) throw new StructException("Bad comperator. Use " . join(',', self::$COMPARATORS));
1484c13ff97SAndreas Gohr        if($op != 'OR' && $op != 'AND') throw new StructException('Bad filter type . Only AND or OR allowed');
1499d7a36f9SAndreas Gohr
15015929be2SAndreas Gohr        $col = $this->findColumn($colname);
1517da1a0fdSAndreas Gohr        if(!$col) return; // ignore missing columns, filter might have been for different schema
1527da1a0fdSAndreas Gohr
1537da1a0fdSAndreas Gohr        // map filter operators to SQL syntax
1547da1a0fdSAndreas Gohr        switch($comp) {
1557da1a0fdSAndreas Gohr            case '~':
1567da1a0fdSAndreas Gohr                $comp = 'LIKE';
1577da1a0fdSAndreas Gohr                break;
1587da1a0fdSAndreas Gohr            case '!~':
1597da1a0fdSAndreas Gohr                $comp = 'NOT LIKE';
1607da1a0fdSAndreas Gohr                break;
1617da1a0fdSAndreas Gohr            case '=*':
1627da1a0fdSAndreas Gohr                $comp = 'REGEXP';
1637da1a0fdSAndreas Gohr                break;
1647da1a0fdSAndreas Gohr        }
1657da1a0fdSAndreas Gohr
1667da1a0fdSAndreas Gohr        // we use asterisks, but SQL wants percents
1677da1a0fdSAndreas Gohr        if($comp == 'LIKE' || $comp == 'NOT LIKE') {
16853528ecfSAndreas Gohr            $value = $this->filterChangeToLike($value);
1697da1a0fdSAndreas Gohr        }
1707da1a0fdSAndreas Gohr
1717da1a0fdSAndreas Gohr        // add the filter
1724c13ff97SAndreas Gohr        $this->filter[] = array($col, $value, $comp, $op);
17315929be2SAndreas Gohr    }
17415929be2SAndreas Gohr
17515929be2SAndreas Gohr    /**
17653528ecfSAndreas Gohr     * Wrap given value in asterisks
17753528ecfSAndreas Gohr     *
17853528ecfSAndreas Gohr     * @param string|string[] $value
17953528ecfSAndreas Gohr     * @return string|string[]
18053528ecfSAndreas Gohr     */
18153528ecfSAndreas Gohr    protected function filterWrapAsterisks($value) {
18253528ecfSAndreas Gohr        $map = function ($input) {
18353528ecfSAndreas Gohr            return "*$input*";
18453528ecfSAndreas Gohr        };
18553528ecfSAndreas Gohr
18653528ecfSAndreas Gohr        if(is_array($value)) {
18753528ecfSAndreas Gohr            $value = array_map($map, $value);
18853528ecfSAndreas Gohr        } else {
18953528ecfSAndreas Gohr            $value = $map($value);
19053528ecfSAndreas Gohr        }
19153528ecfSAndreas Gohr        return $value;
19253528ecfSAndreas Gohr    }
19353528ecfSAndreas Gohr
19453528ecfSAndreas Gohr    /**
19553528ecfSAndreas Gohr     * Change given string to use % instead of *
19653528ecfSAndreas Gohr     *
19753528ecfSAndreas Gohr     * @param string|string[] $value
19853528ecfSAndreas Gohr     * @return string|string[]
19953528ecfSAndreas Gohr     */
20053528ecfSAndreas Gohr    protected function filterChangeToLike($value) {
20153528ecfSAndreas Gohr        $map = function ($input) {
20253528ecfSAndreas Gohr            return str_replace('*', '%', $input);
20353528ecfSAndreas Gohr        };
20453528ecfSAndreas Gohr
20553528ecfSAndreas Gohr        if(is_array($value)) {
20653528ecfSAndreas Gohr            $value = array_map($map, $value);
20753528ecfSAndreas Gohr        } else {
20853528ecfSAndreas Gohr            $value = $map($value);
20953528ecfSAndreas Gohr        }
21053528ecfSAndreas Gohr        return $value;
21153528ecfSAndreas Gohr    }
21253528ecfSAndreas Gohr
21353528ecfSAndreas Gohr    /**
2147f9cb794SAndreas Gohr     * Set offset for the results
2157f9cb794SAndreas Gohr     *
2167f9cb794SAndreas Gohr     * @param int $offset
2177f9cb794SAndreas Gohr     */
2187f9cb794SAndreas Gohr    public function setOffset($offset) {
2197f9cb794SAndreas Gohr        $limit = 0;
2207f9cb794SAndreas Gohr        if($this->range_end) {
2217f9cb794SAndreas Gohr            // if there was a limit set previously, the range_end needs to be recalculated
2227f9cb794SAndreas Gohr            $limit = $this->range_end - $this->range_begin;
2237f9cb794SAndreas Gohr        }
2247f9cb794SAndreas Gohr        $this->range_begin = $offset;
2257f9cb794SAndreas Gohr        if($limit) $this->setLimit($limit);
2267f9cb794SAndreas Gohr    }
2277f9cb794SAndreas Gohr
2287f9cb794SAndreas Gohr    /**
2297f9cb794SAndreas Gohr     * Limit results to this number
2307f9cb794SAndreas Gohr     *
2317f9cb794SAndreas Gohr     * @param int $limit Set to 0 to disable limit again
2327f9cb794SAndreas Gohr     */
2337f9cb794SAndreas Gohr    public function setLimit($limit) {
2347f9cb794SAndreas Gohr        if($limit) {
2357f9cb794SAndreas Gohr            $this->range_end = $this->range_begin + $limit;
2367f9cb794SAndreas Gohr        } else {
2377f9cb794SAndreas Gohr            $this->range_end = 0;
2387f9cb794SAndreas Gohr        }
2397f9cb794SAndreas Gohr    }
2407f9cb794SAndreas Gohr
2417f9cb794SAndreas Gohr    /**
2427f9cb794SAndreas Gohr     * Return the number of results (regardless of limit and offset settings)
2437f9cb794SAndreas Gohr     *
2447f9cb794SAndreas Gohr     * Use this to implement paging. Important: this may only be called after running @see execute()
2457f9cb794SAndreas Gohr     *
2467f9cb794SAndreas Gohr     * @return int
2477f9cb794SAndreas Gohr     */
2487f9cb794SAndreas Gohr    public function getCount() {
2497f9cb794SAndreas Gohr        if($this->count < 0) throw new StructException('Count is only accessible after executing the search');
2507f9cb794SAndreas Gohr        return $this->count;
2517f9cb794SAndreas Gohr    }
2527f9cb794SAndreas Gohr
253c46f5fb1SAndreas Gohr    /**
254c46f5fb1SAndreas Gohr     * Returns the PID associated with each result row
255c46f5fb1SAndreas Gohr     *
256c46f5fb1SAndreas Gohr     * Important: this may only be called after running @see execute()
257c46f5fb1SAndreas Gohr     *
258c46f5fb1SAndreas Gohr     * @return \string[]
259c46f5fb1SAndreas Gohr     */
260d4b5a17cSAndreas Gohr    public function getPids() {
261d4b5a17cSAndreas Gohr        if($this->result_pids === null) throw new StructException('PIDs are only accessible after executing the search');
262d4b5a17cSAndreas Gohr        return $this->result_pids;
263d4b5a17cSAndreas Gohr    }
264d4b5a17cSAndreas Gohr
2657f9cb794SAndreas Gohr    /**
266b2ed727aSAndreas Gohr     * Execute this search and return the result
267b2ed727aSAndreas Gohr     *
26838fa36fbSAndreas Gohr     * The result is a two dimensional array of Value()s.
2697f9cb794SAndreas Gohr     *
2707f9cb794SAndreas Gohr     * This will always query for the full result (not using offset and limit) and then
2717f9cb794SAndreas Gohr     * return the wanted range, setting the count (@see getCount) to the whole result number
27238fa36fbSAndreas Gohr     *
27338fa36fbSAndreas Gohr     * @return Value[][]
274b2ed727aSAndreas Gohr     */
275b2ed727aSAndreas Gohr    public function execute() {
276b2ed727aSAndreas Gohr        list($sql, $opts) = $this->getSQL();
277b2ed727aSAndreas Gohr
2787f9cb794SAndreas Gohr        /** @var \PDOStatement $res */
279b2ed727aSAndreas Gohr        $res = $this->sqlite->query($sql, $opts);
28059b668aaSAndreas Gohr        if($res === false) throw new StructException("SQL execution failed for\n\n$sql");
281b2ed727aSAndreas Gohr
282d4b5a17cSAndreas Gohr        $this->result_pids = array();
283b2ed727aSAndreas Gohr        $result = array();
2847f9cb794SAndreas Gohr        $cursor = -1;
2855e4bfdb0SMichael Grosse        $pageidAndRevOnly = array_reduce($this->columns, function ($pageidAndRevOnly, Column $col) {
2865e4bfdb0SMichael Grosse            return $pageidAndRevOnly && ($col->getTid() == 0);
2875e4bfdb0SMichael Grosse        }, true);
2887f9cb794SAndreas Gohr        while($row = $res->fetch(\PDO::FETCH_ASSOC)) {
2897f9cb794SAndreas Gohr            $cursor++;
2907f9cb794SAndreas Gohr            if($cursor < $this->range_begin) continue;
2917f9cb794SAndreas Gohr            if($this->range_end && $cursor >= $this->range_end) continue;
2927f9cb794SAndreas Gohr
293b2ed727aSAndreas Gohr            $C = 0;
294b2ed727aSAndreas Gohr            $resrow = array();
29599a70f28SAndreas Gohr            $isempty = true;
296b2ed727aSAndreas Gohr            foreach($this->columns as $col) {
29738fa36fbSAndreas Gohr                $val = $row["C$C"];
298b2ed727aSAndreas Gohr                if($col->isMulti()) {
29938fa36fbSAndreas Gohr                    $val = explode(self::CONCAT_SEPARATOR, $val);
300b2ed727aSAndreas Gohr                }
30199a70f28SAndreas Gohr                $value = new Value($col, $val);
3028cba7aa0SMichael Grosse                $isempty &= $this->isEmptyValue($value);
30399a70f28SAndreas Gohr                $resrow[] = $value;
304b2ed727aSAndreas Gohr                $C++;
305b2ed727aSAndreas Gohr            }
30699a70f28SAndreas Gohr
30799a70f28SAndreas Gohr            // skip empty rows
3088cba7aa0SMichael Grosse            if($isempty && !$pageidAndRevOnly) {
30999a70f28SAndreas Gohr                $cursor--;
31099a70f28SAndreas Gohr                continue;
31199a70f28SAndreas Gohr            }
31299a70f28SAndreas Gohr
31399a70f28SAndreas Gohr            $this->result_pids[] = $row['PID'];
314b2ed727aSAndreas Gohr            $result[] = $resrow;
315b2ed727aSAndreas Gohr        }
3167f9cb794SAndreas Gohr
3177f9cb794SAndreas Gohr        $this->sqlite->res_close($res);
3187f9cb794SAndreas Gohr        $this->count = $cursor + 1;
319b2ed727aSAndreas Gohr        return $result;
320b2ed727aSAndreas Gohr    }
321b2ed727aSAndreas Gohr
322b2ed727aSAndreas Gohr    /**
32315929be2SAndreas Gohr     * Transform the set search parameters into a statement
32415929be2SAndreas Gohr     *
325b2ed727aSAndreas Gohr     * @return array ($sql, $opts) The SQL and parameters to execute
32615929be2SAndreas Gohr     */
32715929be2SAndreas Gohr    public function getSQL() {
3285511bd5bSAndreas Gohr        if(!$this->columns) throw new StructException('nocolname');
32915929be2SAndreas Gohr
3302f68434dSAndreas Gohr        $QB = new QueryBuilder();
33115929be2SAndreas Gohr
3329d7a36f9SAndreas Gohr        // basic tables
333b2d67e7dSAndreas Gohr        $first_table = '';
3349d7a36f9SAndreas Gohr        foreach($this->schemas as $schema) {
3352f68434dSAndreas Gohr            $datatable = 'data_' . $schema->getTable();
336b2d67e7dSAndreas Gohr            if($first_table) {
3379d7a36f9SAndreas Gohr                // follow up tables
3382f68434dSAndreas Gohr                $QB->addLeftJoin($first_table, $datatable, $datatable, "$first_table.pid = $datatable.pid");
3399d7a36f9SAndreas Gohr            } else {
3409d7a36f9SAndreas Gohr                // first table
341b75e0a08SAndreas Gohr
34213c321dbSAndreas Gohr                if(!$schema->isLookup()) {
34313c321dbSAndreas Gohr                    $QB->addTable('schema_assignments');
3442f68434dSAndreas Gohr                    $QB->filters()->whereAnd("$datatable.pid = schema_assignments.pid");
3452f68434dSAndreas Gohr                    $QB->filters()->whereAnd("schema_assignments.tbl = '{$schema->getTable()}'");
3462f68434dSAndreas Gohr                    $QB->filters()->whereAnd("schema_assignments.assigned = 1");
3472f68434dSAndreas Gohr                    $QB->filters()->whereAnd("GETACCESSLEVEL($datatable.pid) > 0");
3482f68434dSAndreas Gohr                    $QB->filters()->whereAnd("PAGEEXISTS($datatable.pid) = 1");
34913c321dbSAndreas Gohr                }
35013c321dbSAndreas Gohr
35113c321dbSAndreas Gohr                $QB->addTable($datatable);
35213c321dbSAndreas Gohr                $QB->addSelectColumn($datatable, 'pid', 'PID');
35313c321dbSAndreas Gohr                $QB->addGroupByColumn($datatable, 'pid');
354b2d67e7dSAndreas Gohr
3552f68434dSAndreas Gohr                $first_table = $datatable;
35615929be2SAndreas Gohr            }
3572f68434dSAndreas Gohr            $QB->filters()->whereAnd("$datatable.latest = 1");
3589d7a36f9SAndreas Gohr        }
35915929be2SAndreas Gohr
36015929be2SAndreas Gohr        // columns to select, handling multis
3619d7a36f9SAndreas Gohr        $sep = self::CONCAT_SEPARATOR;
36215929be2SAndreas Gohr        $n = 0;
36315929be2SAndreas Gohr        foreach($this->columns as $col) {
36415929be2SAndreas Gohr            $CN = 'C' . $n++;
36515929be2SAndreas Gohr
366d1b04e89SAndreas Gohr            if($col->isMulti()) {
3672f68434dSAndreas Gohr                $datatable = "data_{$col->getTable()}";
3682f68434dSAndreas Gohr                $multitable = "multi_{$col->getTable()}";
3692f68434dSAndreas Gohr                $MN = 'M' . $col->getColref();
3702f68434dSAndreas Gohr
3712f68434dSAndreas Gohr                $QB->addLeftJoin(
3722f68434dSAndreas Gohr                    $datatable,
3732f68434dSAndreas Gohr                    $multitable,
3742f68434dSAndreas Gohr                    $MN,
3752f68434dSAndreas Gohr                    "$datatable.pid = $MN.pid AND
3762f68434dSAndreas Gohr                     $datatable.rev = $MN.rev AND
3772f68434dSAndreas Gohr                     $MN.colref = {$col->getColref()}"
3782f68434dSAndreas Gohr                );
379578407b2SAndreas Gohr
380578407b2SAndreas Gohr                $col->getType()->select($QB, $MN, 'value', $CN);
381578407b2SAndreas Gohr                $sel = $QB->getSelectStatement($CN);
382578407b2SAndreas Gohr                $QB->addSelectStatement("GROUP_CONCAT($sel, '$sep')", $CN);
38315929be2SAndreas Gohr            } else {
384578407b2SAndreas Gohr                $col->getType()->select($QB, 'data_' . $col->getTable(), $col->getColName(), $CN);
3850dbe7bf6SAndreas Gohr                $QB->addGroupByStatement($CN);
38615929be2SAndreas Gohr            }
38715929be2SAndreas Gohr        }
38815929be2SAndreas Gohr
3899d7a36f9SAndreas Gohr        // where clauses
390b8fe6730SAndreas Gohr        foreach($this->filter as $filter) {
3914c13ff97SAndreas Gohr            list($col, $value, $comp, $op) = $filter;
392b8fe6730SAndreas Gohr
3932f68434dSAndreas Gohr            $datatable = "data_{$col->getTable()}";
3942f68434dSAndreas Gohr            $multitable = "multi_{$col->getTable()}";
3959d7a36f9SAndreas Gohr
3969d7a36f9SAndreas Gohr            /** @var $col Column */
3979d7a36f9SAndreas Gohr            if($col->isMulti()) {
3982f68434dSAndreas Gohr                $MN = 'MN' . $col->getColref(); // FIXME this joins a second time if the column was selected before
39915929be2SAndreas Gohr
4002f68434dSAndreas Gohr                $QB->addLeftJoin(
4012f68434dSAndreas Gohr                    $datatable,
4022f68434dSAndreas Gohr                    $multitable,
4032f68434dSAndreas Gohr                    $MN,
4042f68434dSAndreas Gohr                    "$datatable.pid = $MN.pid AND
4052f68434dSAndreas Gohr                     $datatable.rev = $MN.rev AND
4062f68434dSAndreas Gohr                     $MN.colref = {$col->getColref()}"
4072f68434dSAndreas Gohr                );
408690e4ebaSAndreas Gohr                $coltbl = $MN;
409690e4ebaSAndreas Gohr                $colnam = 'value';
4109d7a36f9SAndreas Gohr            } else {
411690e4ebaSAndreas Gohr                $coltbl = $datatable;
412690e4ebaSAndreas Gohr                $colnam = $col->getColName();
4139d7a36f9SAndreas Gohr            }
41453528ecfSAndreas Gohr
415690e4ebaSAndreas Gohr            $col->getType()->filter($QB, $coltbl, $colnam, $comp, $value, $op); // type based filter
4169d7a36f9SAndreas Gohr        }
4179d7a36f9SAndreas Gohr
41829394e6cSAndreas Gohr        // sorting - we always sort by the single val column
419b8fe6730SAndreas Gohr        foreach($this->sortby as $sort) {
420*eb55dc17SAndreas Gohr            list($col, $asc, $nc) = $sort;
4219d7a36f9SAndreas Gohr            /** @var $col Column */
422*eb55dc17SAndreas Gohr            $colname = $col->getColName(false);
423*eb55dc17SAndreas Gohr            if($nc) $colname .= ' COLLATE NOCASE';
424*eb55dc17SAndreas Gohr            $col->getType()->sort($QB, 'data_' . $col->getTable(), $colname, $asc ? 'ASC' : 'DESC');
4259e07bdbfSAndreas Gohr        }
4269e07bdbfSAndreas Gohr
4272f68434dSAndreas Gohr        return $QB->getSQL();
42815929be2SAndreas Gohr    }
42915929be2SAndreas Gohr
43015929be2SAndreas Gohr    /**
43101dd90deSAndreas Gohr     * Returns all the columns that where added to the search
43201dd90deSAndreas Gohr     *
43301dd90deSAndreas Gohr     * @return Column[]
43401dd90deSAndreas Gohr     */
43501dd90deSAndreas Gohr    public function getColumns() {
43601dd90deSAndreas Gohr        return $this->columns;
43701dd90deSAndreas Gohr    }
43801dd90deSAndreas Gohr
439577b462bSAndreas Gohr    /**
440577b462bSAndreas Gohr     * Checks if the given column is a * wildcard
441577b462bSAndreas Gohr     *
442577b462bSAndreas Gohr     * If it's a wildcard all matching columns are added to the column list, otherwise
443577b462bSAndreas Gohr     * nothing happens
444577b462bSAndreas Gohr     *
445577b462bSAndreas Gohr     * @param string $colname
446577b462bSAndreas Gohr     * @return bool was wildcard?
447577b462bSAndreas Gohr     */
448577b462bSAndreas Gohr    protected function processWildcard($colname) {
449636a5173SAndreas Gohr        list($colname, $table) = $this->resolveColumn($colname);
450577b462bSAndreas Gohr        if($colname !== '*') return false;
451577b462bSAndreas Gohr
452577b462bSAndreas Gohr        // no table given? assume the first is meant
453577b462bSAndreas Gohr        if($table === null) {
454577b462bSAndreas Gohr            $schema_list = array_keys($this->schemas);
455577b462bSAndreas Gohr            $table = $schema_list[0];
456577b462bSAndreas Gohr        }
457577b462bSAndreas Gohr
458577b462bSAndreas Gohr        $schema = $this->schemas[$table];
459577b462bSAndreas Gohr        if(!$schema) return false;
460577b462bSAndreas Gohr        $this->columns = array_merge($this->columns, $schema->getColumns(false));
461577b462bSAndreas Gohr        return true;
462577b462bSAndreas Gohr    }
463577b462bSAndreas Gohr
464577b462bSAndreas Gohr    /**
465577b462bSAndreas Gohr     * Split a given column name into table and column
466577b462bSAndreas Gohr     *
467577b462bSAndreas Gohr     * Handles Aliases. Table might be null if none given.
468577b462bSAndreas Gohr     *
469577b462bSAndreas Gohr     * @param $colname
470636a5173SAndreas Gohr     * @return array (colname, table)
471577b462bSAndreas Gohr     */
472577b462bSAndreas Gohr    protected function resolveColumn($colname) {
473577b462bSAndreas Gohr        if(!$this->schemas) throw new StructException('noschemas');
474577b462bSAndreas Gohr
475577b462bSAndreas Gohr        // resolve the alias or table name
476577b462bSAndreas Gohr        list($table, $colname) = explode('.', $colname, 2);
477577b462bSAndreas Gohr        if(!$colname) {
478577b462bSAndreas Gohr            $colname = $table;
479577b462bSAndreas Gohr            $table = null;
480577b462bSAndreas Gohr        }
481577b462bSAndreas Gohr        if($table && isset($this->aliases[$table])) {
482577b462bSAndreas Gohr            $table = $this->aliases[$table];
483577b462bSAndreas Gohr        }
484577b462bSAndreas Gohr
485577b462bSAndreas Gohr        if(!$colname) throw new StructException('nocolname');
486577b462bSAndreas Gohr
487577b462bSAndreas Gohr        return array($colname, $table);
488577b462bSAndreas Gohr    }
48901dd90deSAndreas Gohr
49001dd90deSAndreas Gohr    /**
49115929be2SAndreas Gohr     * Find a column to be used in the search
49215929be2SAndreas Gohr     *
49315929be2SAndreas Gohr     * @param string $colname may contain an alias
49415929be2SAndreas Gohr     * @return bool|Column
49515929be2SAndreas Gohr     */
49600f6af48SAndreas Gohr    public function findColumn($colname) {
4975511bd5bSAndreas Gohr        if(!$this->schemas) throw new StructException('noschemas');
498df02ffe6SMichael Große        $schema_list = array_keys($this->schemas);
499f107f479SAndreas Gohr
500f107f479SAndreas Gohr        // add "fake" column for special col
501f107f479SAndreas Gohr        if(!(reset($this->schemas)->isLookup())) {
502128d4e83SAndreas Gohr            if($colname == '%pageid%') {
503128d4e83SAndreas Gohr                return new PageColumn(0, new Page(), $schema_list[0]);
504d1b04e89SAndreas Gohr            }
505128d4e83SAndreas Gohr            if($colname == '%title%') {
506128d4e83SAndreas Gohr                return new PageColumn(0, new Page(array('usetitles' => true)), $schema_list[0]);
507128d4e83SAndreas Gohr            }
508cadfc3ccSAndreas Gohr            if($colname == '%lastupdate%') {
509cadfc3ccSAndreas Gohr                return new RevisionColumn(0, new DateTime(), $schema_list[0]);
510cadfc3ccSAndreas Gohr            }
511f107f479SAndreas Gohr        } else {
512f107f479SAndreas Gohr            if($colname == '%rowid%') {
513f107f479SAndreas Gohr                return new RowColumn(0, new Decimal(), $schema_list[0]);
514f107f479SAndreas Gohr            }
515f747a930SAndreas Gohr        }
516d1b04e89SAndreas Gohr
517636a5173SAndreas Gohr        list($colname, $table) = $this->resolveColumn($colname);
51815929be2SAndreas Gohr
519bd363da9SAndreas Gohr        // if table name given search only that, otherwise try all for matching column name
520577b462bSAndreas Gohr        if($table !== null) {
52115929be2SAndreas Gohr            $schemas = array($table => $this->schemas[$table]);
52215929be2SAndreas Gohr        } else {
52315929be2SAndreas Gohr            $schemas = $this->schemas;
52415929be2SAndreas Gohr        }
52515929be2SAndreas Gohr
52615929be2SAndreas Gohr        // find it
52715929be2SAndreas Gohr        $col = false;
52815929be2SAndreas Gohr        foreach($schemas as $schema) {
5294ac44d1cSMichael Grosse            if(empty($schema)) {
5304ac44d1cSMichael Grosse                continue;
5314ac44d1cSMichael Grosse            }
53215929be2SAndreas Gohr            $col = $schema->findColumn($colname);
53315929be2SAndreas Gohr            if($col) break;
53415929be2SAndreas Gohr        }
53515929be2SAndreas Gohr
53615929be2SAndreas Gohr        return $col;
53715929be2SAndreas Gohr    }
53815929be2SAndreas Gohr
5399dbc8ec0SMichael Grosse    /**
54099a70f28SAndreas Gohr     * Check if the given row is empty or references our own row
5419dbc8ec0SMichael Grosse     *
54299a70f28SAndreas Gohr     * @param Value $value
5439dbc8ec0SMichael Grosse     * @return bool
5449dbc8ec0SMichael Grosse     */
5458cba7aa0SMichael Grosse    protected function isEmptyValue(Value $value) {
54699a70f28SAndreas Gohr        if ($value->isEmpty()) return true;
5478cba7aa0SMichael Grosse        if ($value->getColumn()->getTid() == 0) return true;
5489dbc8ec0SMichael Grosse        return false;
5499dbc8ec0SMichael Grosse    }
55015929be2SAndreas Gohr}
55115929be2SAndreas Gohr
5525511bd5bSAndreas Gohr
553