Skip to content
Extraits de code Groupes Projets
Valider bd731a3a rédigé par Matthieu Napoli's avatar Matthieu Napoli
Parcourir les fichiers

PiwikPRO/plugin-SiteMigration#3

parent 35173380
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -22,6 +22,10 @@ use Piwik\Db\AdapterInterface; ...@@ -22,6 +22,10 @@ use Piwik\Db\AdapterInterface;
*/ */
class Sequence class Sequence
{ {
const TABLE_NAME = 'sequence';
/**
* @var string
*/
private $name; private $name;
/** /**
...@@ -29,21 +33,23 @@ class Sequence ...@@ -29,21 +33,23 @@ class Sequence
*/ */
private $db; private $db;
/**
* @var string
*/
private $table;
/** /**
* The name of the table or sequence you want to get an id for. * The name of the table or sequence you want to get an id for.
* *
* @param string $name eg 'archive_numeric_2014_11' * @param string $name eg 'archive_numeric_2014_11'
* @param AdapterInterface $db You can optionally pass a DB adapter to make it work against another database. * @param AdapterInterface $db You can optionally pass a DB adapter to make it work against another database.
* @param string|null $tablePrefix
*/ */
public function __construct($name, $db = null) public function __construct($name, $db = null, $tablePrefix = null)
{ {
$this->name = $name; $this->name = $name;
$this->db = $db ?: Db::get(); $this->db = $db ?: Db::get();
} $this->table = $this->getTableName($tablePrefix);
private function getTableName()
{
return Common::prefixTable('sequence');
} }
/** /**
...@@ -58,9 +64,7 @@ class Sequence ...@@ -58,9 +64,7 @@ class Sequence
{ {
$initialValue = (int) $initialValue; $initialValue = (int) $initialValue;
$table = $this->getTableName(); $this->db->insert($this->table, array('name' => $this->name, 'value' => $initialValue));
$this->db->insert($table, array('name' => $this->name, 'value' => $initialValue));
return $initialValue; return $initialValue;
} }
...@@ -72,7 +76,7 @@ class Sequence ...@@ -72,7 +76,7 @@ class Sequence
*/ */
public function exists() public function exists()
{ {
$query = $this->db->query('SELECT * FROM ' . $this->getTableName() . ' WHERE name = ?', $this->name); $query = $this->db->query('SELECT * FROM ' . $this->table . ' WHERE name = ?', $this->name);
return $query->rowCount() > 0; return $query->rowCount() > 0;
} }
...@@ -86,8 +90,7 @@ class Sequence ...@@ -86,8 +90,7 @@ class Sequence
*/ */
public function getNextId() public function getNextId()
{ {
$table = $this->getTableName(); $sql = 'UPDATE ' . $this->table . ' SET value = LAST_INSERT_ID(value + 1) WHERE name = ?';
$sql = 'UPDATE ' . $table . ' SET value = LAST_INSERT_ID(value + 1) WHERE name = ?';
$result = $this->db->query($sql, array($this->name)); $result = $this->db->query($sql, array($this->name));
$rowCount = $result->rowCount(); $rowCount = $result->rowCount();
...@@ -108,8 +111,7 @@ class Sequence ...@@ -108,8 +111,7 @@ class Sequence
*/ */
public function getCurrentId() public function getCurrentId()
{ {
$table = $this->getTableName(); $sql = 'SELECT value FROM ' . $this->table . ' WHERE name = ?';
$sql = 'SELECT value FROM ' . $table . ' WHERE name = ?';
$id = $this->db->fetchOne($sql, array($this->name)); $id = $this->db->fetchOne($sql, array($this->name));
...@@ -117,4 +119,9 @@ class Sequence ...@@ -117,4 +119,9 @@ class Sequence
return (int) $id; return (int) $id;
} }
} }
private function getTableName($prefix)
{
return ($prefix !== null) ? $prefix . self::TABLE_NAME : Common::prefixTable(self::TABLE_NAME);
}
} }
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter