2013-12-31 17:31:05 +01:00
|
|
|
<?php
|
2013-12-31 17:59:01 +01:00
|
|
|
use ManiaControl\ManiaControl;
|
|
|
|
|
2013-12-31 17:31:05 +01:00
|
|
|
/**
|
|
|
|
* Statistic Manager Class
|
|
|
|
*
|
|
|
|
* @author steeffeen & kremsy
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
class StatisticManager {
|
2013-12-31 17:59:01 +01:00
|
|
|
/**
|
|
|
|
* Constants
|
|
|
|
*/
|
|
|
|
const TABLE_STATMETADATA = 'mc_statmetadata';
|
2013-12-31 18:15:45 +01:00
|
|
|
const TABLE_STATISTICS = 'mc_statistics';
|
2013-12-31 17:59:01 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Private Properties
|
|
|
|
*/
|
|
|
|
private $maniaControl = null;
|
2013-12-31 18:15:45 +01:00
|
|
|
private $mysqli = null;
|
2013-12-31 17:59:01 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Construct player manager
|
|
|
|
*
|
|
|
|
* @param \ManiaControl\ManiaControl $maniaControl
|
|
|
|
*/
|
|
|
|
public function __construct(ManiaControl $maniaControl) {
|
|
|
|
$this->maniaControl = $maniaControl;
|
2013-12-31 18:15:45 +01:00
|
|
|
$this->mysqli = $this->maniaControl->database->mysqli;
|
2013-12-31 17:59:01 +01:00
|
|
|
$this->initTables();
|
|
|
|
}
|
|
|
|
|
2013-12-31 18:15:45 +01:00
|
|
|
/**
|
|
|
|
* Defines a Stat
|
|
|
|
*
|
|
|
|
* @param string $statName
|
|
|
|
* @param string $statDescription
|
|
|
|
*/
|
|
|
|
public function defineStatMetaData($statName, $statDescription = '') {
|
|
|
|
$query = "INSERT IGNORE INTO `" . self::TABLE_STATMETADATA . "` (
|
|
|
|
`name`,
|
|
|
|
`description`
|
|
|
|
) VALUES (
|
|
|
|
?, ?
|
|
|
|
);";
|
|
|
|
$statement = $this->mysqli->prepare($query);
|
|
|
|
if($this->mysqli->error) {
|
|
|
|
trigger_error($this->mysqli->error);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$statement->bind_param('ss', $statName, $statDescription);
|
|
|
|
$statement->execute();
|
|
|
|
if($statement->error) {
|
|
|
|
trigger_error($statement->error);
|
|
|
|
$statement->close();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$statement->close();
|
|
|
|
}
|
|
|
|
|
2013-12-31 17:59:01 +01:00
|
|
|
/**
|
|
|
|
* Initialize necessary database tables
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
private function initTables() {
|
2013-12-31 18:15:45 +01:00
|
|
|
$query = "CREATE TABLE IF NOT EXISTS `" . self::TABLE_STATMETADATA . "` (
|
2013-12-31 17:59:01 +01:00
|
|
|
`index` int(11) NOT NULL AUTO_INCREMENT,
|
|
|
|
`name` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
|
2013-12-31 18:15:45 +01:00
|
|
|
`description` varchar(150) COLLATE utf8_unicode_ci,
|
2013-12-31 17:59:01 +01:00
|
|
|
PRIMARY KEY (`index`),
|
|
|
|
UNIQUE KEY `name` (`name`)
|
|
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='Statistics Meta Data' AUTO_INCREMENT=1;";
|
|
|
|
|
2013-12-31 18:15:45 +01:00
|
|
|
$statement = $this->mysqli->prepare($query);
|
|
|
|
if($this->mysqli->error) {
|
|
|
|
trigger_error($this->mysqli->error, E_USER_ERROR);
|
|
|
|
|
2013-12-31 17:59:01 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$statement->execute();
|
2013-12-31 18:15:45 +01:00
|
|
|
if($statement->error) {
|
2013-12-31 17:59:01 +01:00
|
|
|
trigger_error($statement->error, E_USER_ERROR);
|
2013-12-31 18:15:45 +01:00
|
|
|
|
2013-12-31 17:59:01 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$statement->close();
|
|
|
|
|
2013-12-31 18:15:45 +01:00
|
|
|
$query = "CREATE TABLE IF NOT EXISTS `" . self::TABLE_STATISTICS . "` (
|
2013-12-31 17:59:01 +01:00
|
|
|
`statId` int(11) NOT NULL AUTO_INCREMENT,
|
|
|
|
`playerId` int(11) NOT NULL,
|
|
|
|
`serverId` int(11) NOT NULL,
|
|
|
|
`value` int(20) COLLATE utf8_unicode_ci NOT NULL,
|
|
|
|
UNIQUE KEY `unique` (`statId`,`playerId`,`serverId`)
|
|
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='Statistics Meta Data' AUTO_INCREMENT=1;";
|
2013-12-31 17:31:05 +01:00
|
|
|
|
2013-12-31 18:15:45 +01:00
|
|
|
$statement = $this->mysqli->prepare($query);
|
|
|
|
if($this->mysqli->error) {
|
|
|
|
trigger_error($this->mysqli->error, E_USER_ERROR);
|
|
|
|
|
2013-12-31 17:59:01 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$statement->execute();
|
2013-12-31 18:15:45 +01:00
|
|
|
if($statement->error) {
|
2013-12-31 17:59:01 +01:00
|
|
|
trigger_error($statement->error, E_USER_ERROR);
|
2013-12-31 18:15:45 +01:00
|
|
|
|
2013-12-31 17:59:01 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$statement->close();
|
|
|
|
}
|
2013-12-31 17:31:05 +01:00
|
|
|
}
|