1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
|
<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik\DataAccess;
use Exception;
use Piwik\DataAccess\LogQueryBuilder\JoinGenerator;
use Piwik\DataAccess\LogQueryBuilder\JoinTables;
use Piwik\Plugin\LogTablesProvider;
use Piwik\Segment\SegmentExpression;
class LogQueryBuilder
{
public const FORCE_INNER_GROUP_BY_NO_SUBSELECT = '__##nosubquery##__';
/**
* @var LogTablesProvider
*/
private $logTableProvider;
/**
* Forces to use a subselect when generating the query. Set value to `false` to force not using a subselect.
* @var string
*/
private $forcedInnerGroupBy = '';
public function __construct(LogTablesProvider $logTablesProvider)
{
$this->logTableProvider = $logTablesProvider;
}
/**
* Forces to use a subselect when generating the query.
* @var string
*/
public function forceInnerGroupBySubselect($innerGroupBy)
{
$this->forcedInnerGroupBy = $innerGroupBy;
}
public function getForcedInnerGroupBySubselect()
{
return $this->forcedInnerGroupBy;
}
public function getSelectQueryString(
SegmentExpression $segmentExpression,
$select,
$from,
$where,
$bind,
$groupBy,
$orderBy,
$limitAndOffset,
bool $withRollup = false
) {
if (!is_array($from)) {
$from = array($from);
}
$fromInitially = $from;
if (!$segmentExpression->isEmpty()) {
$segmentExpression->parseSubExpressionsIntoSqlExpressions($from);
$segmentSql = $segmentExpression->getSql();
$where = $this->getWhereMatchBoth($where, $segmentSql['where']);
$bind = array_merge($bind, $segmentSql['bind']);
}
// hack to allow db planner and db query optimiser to use an anti-join which results in a lower cost query
// and filtering on the log_visit table first when it doesn't need to consider null-extended rows
if ($from === ['log_link_visit_action', 'log_visit']) {
$from[1] = ['table' => 'log_visit', 'join' => 'INNER JOIN'];
}
$tables = new JoinTables($this->logTableProvider, $from);
$join = new JoinGenerator($tables);
$join->generate();
$from = $join->getJoinString();
$joinWithSubSelect = $join->shouldJoinWithSelect();
// hack for https://github.com/piwik/piwik/issues/9194#issuecomment-164321612
$useSpecialConversionGroupBy = (!empty($segmentSql)
&& strpos($groupBy, 'log_conversion.idgoal') !== false
&& $fromInitially == array('log_conversion')
&& strpos($from, 'log_link_visit_action') !== false);
if (!empty($this->forcedInnerGroupBy)) {
if ($this->forcedInnerGroupBy === self::FORCE_INNER_GROUP_BY_NO_SUBSELECT) {
$sql = $this->buildSelectQuery($select, $from, $where, $groupBy, $orderBy, $limitAndOffset);
} else {
$sql = $this->buildWrappedSelectQuery($select, $from, $where, $groupBy, $orderBy, $limitAndOffset, $tables, $this->forcedInnerGroupBy);
}
} elseif ($useSpecialConversionGroupBy) {
$innerGroupBy = "CONCAT(log_conversion.idvisit, '_' , log_conversion.idgoal, '_', log_conversion.buster)";
$sql = $this->buildWrappedSelectQuery($select, $from, $where, $groupBy, $orderBy, $limitAndOffset, $tables, $innerGroupBy);
} elseif ($joinWithSubSelect) {
$sql = $this->buildWrappedSelectQuery($select, $from, $where, $groupBy, $orderBy, $limitAndOffset, $tables);
} else {
$sql = $this->buildSelectQuery($select, $from, $where, $groupBy, $orderBy, $limitAndOffset, $withRollup);
}
return array(
'sql' => $sql,
'bind' => $bind,
);
}
private function getKnownTables()
{
$names = array();
foreach ($this->logTableProvider->getAllLogTablesWithTemporary() as $logTable) {
$names[] = $logTable->getName();
}
return $names;
}
/**
* Build a select query where actions have to be joined on visits (or conversions)
* In this case, the query gets wrapped in another query so that grouping by visit is possible
* @param string $select
* @param string $from
* @param string $where
* @param string $groupBy
* @param string $orderBy
* @param string $limitAndOffset
* @param null|string $innerGroupBy If given, this inner group by will be used. If not, we try to detect one
* @throws Exception
* @return string
*/
private function buildWrappedSelectQuery($select, $from, $where, $groupBy, $orderBy, $limitAndOffset, JoinTables $tables, $innerGroupBy = null)
{
$matchTables = $this->getKnownTables();
foreach ($tables as $table) {
if (is_array($table) && isset($table['tableAlias']) && !in_array($table['tableAlias'], $matchTables, $strict = true)) {
$matchTables[] = $table['tableAlias'];
} elseif (is_array($table) && isset($table['table']) && !in_array($table['table'], $matchTables, $strict = true)) {
$matchTables[] = $table['table'];
} elseif (is_string($table) && !in_array($table, $matchTables, $strict = true)) {
$matchTables[] = $table;
}
}
$matchTables = '(' . implode('|', $matchTables) . ')';
preg_match_all("/" . $matchTables . "\.[a-z0-9_\*]+/", $select, $matches);
$neededFields = array_unique($matches[0]);
if (count($neededFields) == 0) {
throw new Exception("No needed fields found in select expression. "
. "Please use a table prefix.");
}
$fieldNames = array();
$toBeReplaced = array();
$epregReplace = array();
foreach ($neededFields as &$neededField) {
$parts = explode('.', $neededField);
if (count($parts) === 2 && !empty($parts[1])) {
if (in_array($parts[1], $fieldNames, $strict = true)) {
// eg when selecting 2 dimensions log_action_X.name
$columnAs = $parts[1] . md5($neededField);
$fieldNames[] = $columnAs;
// we make sure to not replace a idvisitor column when duplicate column is idvisit
$toBeReplaced[$neededField . ' '] = $parts[0] . '.' . $columnAs . ' ';
$toBeReplaced[$neededField . ')'] = $parts[0] . '.' . $columnAs . ')';
$toBeReplaced[$neededField . '`'] = $parts[0] . '.' . $columnAs . '`';
$toBeReplaced[$neededField . ','] = $parts[0] . '.' . $columnAs . ',';
// replace when string ends this, we need to use regex to check for this
$epregReplace["/(" . $neededField . ")$/"] = $parts[0] . '.' . $columnAs;
$neededField .= ' as ' . $columnAs;
} else {
$fieldNames[] = $parts[1];
}
}
}
preg_match_all("/" . $matchTables . "/", $from, $matchesFrom);
$innerSelect = implode(", \n", $neededFields);
$innerFrom = $from;
$innerWhere = $where;
$innerLimitAndOffset = $limitAndOffset;
$innerOrderBy = "NULL";
if ($innerLimitAndOffset && $orderBy) {
// only When LIMITing we can apply to the inner query the same ORDER BY as the parent query
$innerOrderBy = $orderBy;
}
if ($innerLimitAndOffset) {
// When LIMITing, no need to GROUP BY (GROUPing by is done before the LIMIT which is super slow when large amount of rows is matched)
$innerGroupBy = false;
}
if (!isset($innerGroupBy) && in_array('log_visit', $matchesFrom[1])) {
$innerGroupBy = "log_visit.idvisit";
} elseif (!isset($innerGroupBy)) {
throw new Exception('Cannot use subselect for join as no group by rule is specified');
}
if (!empty($toBeReplaced)) {
$select = preg_replace(array_keys($epregReplace), array_values($epregReplace), $select);
$select = str_replace(array_keys($toBeReplaced), array_values($toBeReplaced), $select);
if (!empty($groupBy)) {
$groupBy = preg_replace(array_keys($epregReplace), array_values($epregReplace), $groupBy);
$groupBy = str_replace(array_keys($toBeReplaced), array_values($toBeReplaced), $groupBy);
}
if (!empty($orderBy)) {
$orderBy = preg_replace(array_keys($epregReplace), array_values($epregReplace), $orderBy);
$orderBy = str_replace(array_keys($toBeReplaced), array_values($toBeReplaced), $orderBy);
}
}
$innerQuery = $this->buildSelectQuery($innerSelect, $innerFrom, $innerWhere, $innerGroupBy, $innerOrderBy, $innerLimitAndOffset);
$select = preg_replace('/' . $matchTables . '\./', 'log_inner.', $select);
$from = "
(
$innerQuery
) AS log_inner";
$where = false;
$orderBy = preg_replace('/' . $matchTables . '\./', 'log_inner.', $orderBy);
$groupBy = preg_replace('/' . $matchTables . '\./', 'log_inner.', $groupBy);
$outerLimitAndOffset = null;
$query = $this->buildSelectQuery($select, $from, $where, $groupBy, $orderBy, $outerLimitAndOffset);
return $query;
}
/**
* Build select query the normal way
*
* @param string $select fieldlist to be selected
* @param string $from tablelist to select from
* @param string $where where clause
* @param string $groupBy group by clause
* @param string $orderBy order by clause
* @param string|int $limitAndOffset limit by clause eg '5' for Limit 5 Offset 0 or '10, 5' for Limit 5 Offset 10
* @return string
*/
private function buildSelectQuery($select, $from, $where, $groupBy, $orderBy, $limitAndOffset, bool $withRollup = false)
{
$sql = "
SELECT
$select
FROM
$from";
if ($where) {
$sql .= "
WHERE
$where";
}
if ($groupBy) {
$sql .= "
GROUP BY
$groupBy";
if ($withRollup) {
$sql .= "
WITH ROLLUP";
}
}
if ($orderBy) {
if ($withRollup) {
$sql = "
SELECT * FROM (
$sql
) AS rollupQuery";
}
$sql .= "
ORDER BY
$orderBy";
}
$sql = $this->appendLimitClauseToQuery($sql, $limitAndOffset);
return $sql;
}
/**
* @param $sql
* @param $limit LIMIT clause eg. "10, 50" (offset 10, limit 50)
* @return string
*/
private function appendLimitClauseToQuery($sql, $limit)
{
$limitParts = explode(',', (string) $limit);
$isLimitWithOffset = 2 === count($limitParts);
if ($isLimitWithOffset) {
// $limit = "10, 5". We would not have to do this but we do to prevent possible injections.
$offset = trim($limitParts[0]);
$limit = trim($limitParts[1]);
$sql .= sprintf(' LIMIT %d, %d', $offset, $limit);
} else {
// $limit = "5"
$limit = (int)$limit;
if ($limit >= 1) {
$sql .= " LIMIT $limit";
}
}
return $sql;
}
/**
* @param $where
* @param $segmentWhere
* @return string
* @throws
*/
protected function getWhereMatchBoth($where, $segmentWhere)
{
if (empty($segmentWhere) && empty($where)) {
throw new \Exception("Segment where clause should be non empty.");
}
if (empty($segmentWhere)) {
return $where;
}
if (empty($where)) {
return $segmentWhere;
}
return "( $where )
AND
($segmentWhere)";
}
}
|