columns) throw new StructException('nocolname'); $QB = new QueryBuilder(); reset($this->schemas); $schema = current($this->schemas); $datatable = 'data_' . $schema->getTable(); if(!$schema->isLookup()) { $QB->addTable('schema_assignments'); $QB->filters()->whereAnd("$datatable.pid = schema_assignments.pid"); $QB->filters()->whereAnd("schema_assignments.tbl = '{$schema->getTable()}'"); $QB->filters()->whereAnd("schema_assignments.assigned = 1"); $QB->filters()->whereAnd("GETACCESSLEVEL($datatable.pid) > 0"); $QB->filters()->whereAnd("PAGEEXISTS($datatable.pid) = 1"); } $QB->addTable($datatable); $QB->filters()->whereAnd("$datatable.latest = 1"); $QB->filters()->where('AND', 'tag IS NOT \'\''); $col = $this->columns[0]; if($col->isMulti()) { $multitable = "multi_{$col->getTable()}"; $MN = $QB->generateTableAlias('M'); $QB->addLeftJoin( $datatable, $multitable, $MN, "$datatable.pid = $MN.pid AND $datatable.rev = $MN.rev AND $MN.colref = {$col->getColref()}" ); $col->getType()->select($QB, $MN, 'value', 'tag'); $colname = $MN . '.value'; } else { $col->getType()->select($QB, $datatable, $col->getColName(), 'tag'); $colname = $datatable . '.' . $col->getColName(); } $QB->addSelectStatement("COUNT($colname)", 'count'); $QB->addGroupByStatement('tag'); $QB->addOrderBy('count DESC'); list($sql, $opts) = $QB->getSQL(); return [$sql . $this->limit, $opts]; } /** * We do not have pagination in clouds, so we can work with a limit within SQL * * @param int $limit */ public function setLimit($limit) { $this->limit = " LIMIT $limit"; } /** * Execute this search and return the result * * The result is a two dimensional array of Value()s. * * @return Value[][] */ public function execute() { list($sql, $opts) = $this->getSQL(); /** @var \PDOStatement $res */ $res = $this->sqlite->query($sql, $opts); if($res === false) throw new StructException("SQL execution failed for\n\n$sql"); $result = []; $rows = $this->sqlite->res2arr($res); foreach ($rows as $row) { if (!empty($this->config['min']) && $this->config['min'] > $row['count']) { break; } $row['tag'] = new Value($this->columns[0], $row['tag']); $result[] = $row; } $this->sqlite->res_close($res); $this->count = count($result); return $result; } }