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
|
<?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\Plugins\CustomDimensions\Dao;
use Piwik\Common;
use Piwik\Db;
use Piwik\DbHelper;
class Configuration
{
private $tableName = 'custom_dimensions';
private $tableNamePrefixed;
public function __construct()
{
$this->tableNamePrefixed = Common::prefixTable($this->tableName);
}
private function getDb()
{
return Db::get();
}
public function configureNewDimension($idSite, $name, $scope, $index, $active, $extractions, $caseSensitive)
{
$extractions = $this->encodeExtractions($extractions);
$active = $active ? '1' : '0';
$caseSensitive = $caseSensitive ? '1' : '0';
$id = $this->getNextCustomDimensionIdForSite($idSite);
$config = array(
'idcustomdimension' => $id,
'idsite' => $idSite,
'index' => $index,
'scope' => $scope,
'name' => $name,
'active' => $active,
'extractions' => $extractions,
'case_sensitive' => $caseSensitive,
);
$this->getDb()->insert($this->tableNamePrefixed, $config);
return $id;
}
public function configureExistingDimension($idCustomDimension, $idSite, $name, $active, $extractions, $caseSensitive)
{
$extractions = $this->encodeExtractions($extractions);
$active = $active ? '1' : '0';
$caseSensitive = $caseSensitive ? '1' : '0';
$this->getDb()->update(
$this->tableNamePrefixed,
array(
'name' => $name,
'active' => $active,
'extractions' => $extractions,
'case_sensitive' => $caseSensitive,
),
"idcustomdimension = " . (int) $idCustomDimension . " and idsite = " . (int) $idSite
);
}
public function getCustomDimensionsForSite($idSite)
{
$query = "SELECT * FROM " . $this->tableNamePrefixed . " WHERE idsite = ? ORDER BY idcustomdimension";
return $this->fetchAllDimensionsEnriched($query, array($idSite));
}
public function getCustomDimension($idDimension, $idSite)
{
$query = "SELECT * FROM " . $this->tableNamePrefixed . " WHERE idcustomdimension = ? and idsite = ?";
$dimension = $this->getDb()->fetchRow($query, array($idDimension, $idSite));
$dimension = $this->enrichDimension($dimension);
return $dimension;
}
public function getCustomDimensionsHavingIndex($scope, $index)
{
$query = "SELECT * FROM " . $this->tableNamePrefixed . " WHERE `index` = ? and scope = ? ORDER BY idcustomdimension";
return $this->fetchAllDimensionsEnriched($query, array($index, $scope));
}
public function deleteConfigurationsForSite($idSite)
{
$this->getDb()->query("DELETE FROM " . $this->tableNamePrefixed . " WHERE idsite = ?", $idSite);
}
public function deleteConfigurationsForIndex($index, $scope)
{
$this->getDb()->query("DELETE FROM " . $this->tableNamePrefixed . " WHERE `index` = ? and `scope` = ?", array($index, $scope));
}
private function fetchAllDimensionsEnriched($sql, $bind)
{
$dimensions = $this->getDb()->fetchAll($sql, $bind);
$dimensions = $this->enrichDimensions($dimensions);
return $dimensions;
}
private function enrichDimensions($dimensions)
{
if (empty($dimensions)) {
return array();
}
foreach ($dimensions as $index => $dimension) {
$dimensions[$index] = $this->enrichDimension($dimension);
}
return $dimensions;
}
private function enrichDimension($dimension)
{
if (empty($dimension)) {
return $dimension;
}
// cast to string done
$dimension['idcustomdimension'] = (string) $dimension['idcustomdimension'];
$dimension['idsite'] = (string) $dimension['idsite'];
$dimension['index'] = (string) $dimension['index'];
$dimension['extractions'] = $this->decodeExtractions($dimension['extractions']);
$dimension['active'] = (bool) $dimension['active'];
$dimension['case_sensitive'] = (bool) $dimension['case_sensitive'];
return $dimension;
}
private function getNextCustomDimensionIdForSite($idSite)
{
$nextId = $this->getDb()->fetchOne("SELECT max(idcustomdimension) FROM " . $this->tableNamePrefixed . " WHERE idsite = ?", $idSite);
if (empty($nextId)) {
$nextId = 1;
} else {
$nextId = (int) $nextId + 1;
}
return $nextId;
}
public function install()
{
$table = "`idcustomdimension` BIGINT UNSIGNED NOT NULL,
`idsite` BIGINT UNSIGNED NOT NULL ,
`name` VARCHAR(100) NOT NULL ,
`index` SMALLINT UNSIGNED NOT NULL ,
`scope` VARCHAR(10) NOT NULL ,
`active` TINYINT UNSIGNED NOT NULL DEFAULT 0,
`extractions` TEXT NOT NULL DEFAULT '',
`case_sensitive` TINYINT UNSIGNED NOT NULL DEFAULT 1,
PRIMARY KEY (`idcustomdimension`, `idsite`),
UNIQUE KEY uniq_hash(idsite, `scope`, `index`)";
DbHelper::createTable($this->tableName, $table);
}
public function uninstall()
{
Db::dropTables(array($this->tableNamePrefixed));
}
private function encodeExtractions($extractions)
{
if (empty($extractions) || !is_array($extractions)) {
$extractions = array();
}
return json_encode($extractions);
}
private function decodeExtractions($extractions)
{
if (!empty($extractions)) {
$extractions = json_decode($extractions, true);
}
if (empty($extractions) || !is_array($extractions)) {
$extractions = array();
}
return $extractions;
}
}
|