TrackManiaControl/application/core/ManiaExchange/ManiaExchangeManager.php

346 lines
8.8 KiB
PHP
Raw Normal View History

2014-01-08 21:03:59 +01:00
<?php
2014-01-09 22:08:34 +01:00
2014-01-28 15:56:50 +01:00
namespace ManiaControl\ManiaExchange;
2014-01-08 21:03:59 +01:00
use ManiaControl\ManiaControl;
2014-01-28 15:56:50 +01:00
use ManiaControl\Maps\Map;
use ManiaControl\Maps\MapManager;
2014-01-08 21:03:59 +01:00
2014-01-08 22:49:09 +01:00
/**
* Mania Exchange Info Searcher Class
*
* @author steeffeen & kremsy
*/
2014-01-14 15:15:13 +01:00
class ManiaExchangeManager {
2014-01-08 21:03:59 +01:00
/**
* Constants
*/
2014-01-14 15:15:13 +01:00
//Search others
2014-01-09 23:21:44 +01:00
const SEARCH_ORDER_NONE = -1;
const SEARCH_ORDER_TRACK_NAME = 0;
const SEARCH_ORDER_AUTHOR = 1;
const SEARCH_ORDER_UPLOADED_NEWEST = 2;
const SEARCH_ORDER_UPLOADED_OLDEST = 3;
const SEARCH_ORDER_UPDATED_NEWEST = 4;
const SEARCH_ORDER_UPDATED_OLDEST = 5;
const SEARCH_ORDER_ACTIVITY_LATEST = 6;
const SEARCH_ORDER_ACTIVITY_OLDEST = 7;
const SEARCH_ORDER_AWARDS_MOST = 8;
const SEARCH_ORDER_AWARDS_LEAST = 9;
const SEARCH_ORDER_COMMENTS_MOST = 10;
const SEARCH_ORDER_COMMENTS_LEAST = 11;
2014-01-08 22:49:09 +01:00
const SEARCH_ORDER_DIFFICULTY_EASIEST = 12;
const SEARCH_ORDER_DIFFICULTY_HARDEST = 13;
2014-01-09 23:21:44 +01:00
const SEARCH_ORDER_LENGHT_SHORTEST = 14;
const SEARCH_ORDER_LENGHT_LONGEST = 15;
2014-01-14 15:15:13 +01:00
//Maximum Maps per request
const MAPS_PER_MX_FETCH = 50;
2014-01-12 19:08:56 +01:00
2014-01-08 21:03:59 +01:00
/**
2014-01-08 22:49:09 +01:00
* Private Propertieswc
2014-01-08 21:03:59 +01:00
*/
private $maniaControl = null;
2014-01-11 22:06:52 +01:00
private $mxIdUidVector = array();
2014-01-08 21:03:59 +01:00
/**
* Construct map manager
*
* @param \ManiaControl\ManiaControl $maniaControl
*/
public function __construct(ManiaControl $maniaControl) {
$this->maniaControl = $maniaControl;
}
2014-01-09 23:21:44 +01:00
/**
* Store Map Info from MX and store the mxid in the database and the mx info in the map object
*
* @param $mxMapInfos
*/
2014-01-12 17:15:59 +01:00
public function updateMapObjectsWithManiaExchangeIds($mxMapInfos) {
2014-01-09 22:08:34 +01:00
$mysqli = $this->maniaControl->database->mysqli;
2014-01-09 23:21:44 +01:00
// Save map data
$saveMapQuery = "UPDATE `" . MapManager::TABLE_MAPS . "`
SET `mxid` = ?
2014-01-12 21:39:27 +01:00
WHERE `uid` = ?;";
2014-01-09 23:21:44 +01:00
$saveMapStatement = $mysqli->prepare($saveMapQuery);
2014-01-28 15:56:50 +01:00
if ($mysqli->error) {
2014-01-09 23:21:44 +01:00
trigger_error($mysqli->error);
return;
}
foreach($mxMapInfos as $mxMapInfo) {
/** @var MXMapInfo $mxMapInfo */
$saveMapStatement->bind_param('is', $mxMapInfo->id, $mxMapInfo->uid);
$saveMapStatement->execute();
2014-01-28 15:56:50 +01:00
if ($saveMapStatement->error) {
2014-01-09 23:21:44 +01:00
trigger_error($saveMapStatement->error);
}
2014-01-11 22:06:52 +01:00
//Take the uid out of the vektor
2014-01-28 15:56:50 +01:00
if (isset($this->mxIdUidVector[$mxMapInfo->id])) {
2014-01-11 22:06:52 +01:00
$uid = $this->mxIdUidVector[$mxMapInfo->id];
} else {
$uid = $mxMapInfo->uid;
}
$map = $this->maniaControl->mapManager->getMapByUid($uid);
2014-01-09 23:21:44 +01:00
/** @var Map $map */
$map->mx = $mxMapInfo;
}
$saveMapStatement->close();
}
2014-01-15 20:40:14 +01:00
/**
* Unset Map by Mx Id
*
* @param $mxId
*/
public function unsetMap($mxId) {
unset($this->mxIdUidVector[$mxId]);
}
2014-01-15 18:31:06 +01:00
2014-01-09 23:21:44 +01:00
/**
* Fetch Map Information from Mania Exchange
2014-01-15 20:40:14 +01:00
*
2014-01-15 18:31:06 +01:00
* @param null $map
2014-01-09 23:21:44 +01:00
*/
2014-01-15 18:31:06 +01:00
public function fetchManiaExchangeMapInformations($map = null) {
2014-01-28 15:56:50 +01:00
if (!$map) {
2014-01-15 18:31:06 +01:00
//Fetch Informations for whole Maplist
2014-01-15 20:40:14 +01:00
$maps = $this->maniaControl->mapManager->getMaps();
} else {
2014-01-15 18:31:06 +01:00
//Fetch Information for a single map
$maps[] = $map;
}
2014-01-09 23:21:44 +01:00
$mysqli = $this->maniaControl->database->mysqli;
$mapIdString = '';
2014-01-09 22:08:34 +01:00
// Fetch mx ids
2014-01-09 23:21:44 +01:00
$fetchMapQuery = "SELECT `mxid`, `changed` FROM `" . MapManager::TABLE_MAPS . "`
2014-01-09 22:08:34 +01:00
WHERE `index` = ?;";
$fetchMapStatement = $mysqli->prepare($fetchMapQuery);
2014-01-28 15:56:50 +01:00
if ($mysqli->error) {
2014-01-09 22:08:34 +01:00
trigger_error($mysqli->error);
return;
2014-01-09 21:37:01 +01:00
}
2014-01-09 23:21:44 +01:00
$id = 0;
foreach($maps as $map) {
/** @var Map $map */
$fetchMapStatement->bind_param('i', $map->index);
2014-01-09 22:08:34 +01:00
$fetchMapStatement->execute();
2014-01-28 15:56:50 +01:00
if ($fetchMapStatement->error) {
2014-01-09 22:08:34 +01:00
trigger_error($fetchMapStatement->error);
continue;
}
$fetchMapStatement->store_result();
2014-01-09 23:21:44 +01:00
$fetchMapStatement->bind_result($mxId, $changed);
2014-01-09 22:08:34 +01:00
$fetchMapStatement->fetch();
$fetchMapStatement->free_result();
2014-01-09 23:21:44 +01:00
//Set changed time into the map object
$map->lastUpdate = strtotime($changed);
2014-01-28 15:56:50 +01:00
if ($mxId != 0) {
2014-01-12 19:08:56 +01:00
$appendString = $mxId . ',';
2014-01-11 22:06:52 +01:00
//Set the mx id to the mxidmapvektor
$this->mxIdUidVector[$mxId] = $map->uid;
} else {
2014-01-12 19:08:56 +01:00
$appendString = $map->uid . ',';
2014-01-11 22:06:52 +01:00
}
2014-01-09 23:21:44 +01:00
$id++;
2014-01-12 19:08:56 +01:00
//If Max Maplimit is reached, or string gets too long send the request
2014-01-28 15:56:50 +01:00
if ($id % self::MAPS_PER_MX_FETCH == 0) {
2014-01-12 22:31:50 +01:00
$mapIdString = substr($mapIdString, 0, -1);
$maps = $this->getMaplistByMixedUidIdString($mapIdString);
2014-01-12 17:15:59 +01:00
$this->updateMapObjectsWithManiaExchangeIds($maps);
2014-01-09 23:21:44 +01:00
$mapIdString = '';
}
2014-01-12 19:08:56 +01:00
$mapIdString .= $appendString;
2014-01-09 21:32:17 +01:00
}
2014-01-09 23:21:44 +01:00
2014-01-28 15:56:50 +01:00
if ($mapIdString != '') {
2014-01-12 22:31:50 +01:00
$mapIdString = substr($mapIdString, 0, -1);
$maps = $this->getMaplistByMixedUidIdString($mapIdString);
2014-01-12 17:15:59 +01:00
$this->updateMapObjectsWithManiaExchangeIds($maps);
2014-01-09 23:21:44 +01:00
}
2014-01-09 22:08:34 +01:00
$fetchMapStatement->close();
2014-01-09 23:21:44 +01:00
}
2014-01-14 15:15:13 +01:00
/**
* Get the Whole Maplist from MX by Mixed Uid and Id String fetch
*
* @param $string
* @return array|null
*/
2014-01-09 23:21:44 +01:00
public function getMaplistByMixedUidIdString($string) {
// Get Title Id
$titleId = $this->maniaControl->server->titleId;
$titlePrefix = strtolower(substr($titleId, 0, 2));
// compile search URL
2014-01-12 22:24:30 +01:00
$url = 'http://api.mania-exchange.com/' . $titlePrefix . '/maps/?ids=' . $string;
2014-01-09 23:21:44 +01:00
// $mapInfo = FileUtil::loadFile($url, "application/json"); //TODO use mc fileutil
$mapInfo = $this->get_file($url);
2014-01-14 13:57:10 +01:00
2014-01-28 15:56:50 +01:00
if ($mapInfo === false) {
2014-01-14 13:57:10 +01:00
$this->error = 'Connection or response error on ' . $url;
return array();
2014-01-28 15:56:50 +01:00
} elseif ($mapInfo === -1) {
2014-01-14 13:57:10 +01:00
$this->error = 'Timed out while reading data from ' . $url;
return array();
2014-01-28 15:56:50 +01:00
} elseif ($mapInfo == '') {
if (empty($maps)) {
2014-01-14 13:57:10 +01:00
$this->error = 'No data returned from ' . $url;
return array();
}
}
2014-01-09 23:21:44 +01:00
$mxMapList = json_decode($mapInfo);
2014-01-28 15:56:50 +01:00
if ($mxMapList === null) {
2014-01-09 23:21:44 +01:00
trigger_error('Cannot decode searched JSON data from ' . $url);
return null;
2014-01-09 22:08:34 +01:00
}
2014-01-09 23:21:44 +01:00
$maps = array();
foreach($mxMapList as $map) {
2014-01-28 15:56:50 +01:00
if (!empty($map)) {
2014-01-09 23:21:44 +01:00
array_push($maps, new MXMapInfo($titlePrefix, $map));
2014-01-09 22:08:34 +01:00
}
}
2014-01-09 23:21:44 +01:00
return $maps;
2014-01-09 21:32:17 +01:00
}
2014-01-08 22:49:09 +01:00
/**
* Gets a Maplist from Mania Exchange
*
* @param string $name
* @param string $author
* @param string $env
2014-01-09 23:21:44 +01:00
* @param int $maxMapsReturned
* @param int $searchOrder
2014-01-09 22:08:34 +01:00
* @return array null
2014-01-08 22:49:09 +01:00
*/
public function getMaps($name = '', $author = '', $env = '', $maxMapsReturned = 100, $searchOrder = self::SEARCH_ORDER_UPDATED_NEWEST) {
2014-01-09 22:08:34 +01:00
// Get Title Id
2014-01-09 23:21:44 +01:00
$titleId = $this->maniaControl->server->titleId;
2014-01-08 22:15:36 +01:00
$titlePrefix = strtolower(substr($titleId, 0, 2));
2014-01-09 23:21:44 +01:00
2014-01-09 22:08:34 +01:00
// Get MapTypes
2014-01-16 19:07:00 +01:00
$scriptInfos = $this->maniaControl->client->getModeScriptInfo();
2014-01-09 23:21:44 +01:00
2014-01-16 19:07:00 +01:00
$mapTypes = $scriptInfos->compatibleMapTypes;
2014-01-09 23:21:44 +01:00
2014-01-08 21:03:59 +01:00
// compile search URL
2014-01-08 21:52:42 +01:00
$url = 'http://' . $titlePrefix . '.mania-exchange.com/tracksearch?api=on';
2014-01-09 23:21:44 +01:00
2014-01-28 15:56:50 +01:00
if ($env != '') {
2014-01-08 21:03:59 +01:00
$url .= '&environments=' . $this->getEnvironment($env);
}
2014-01-28 15:56:50 +01:00
if ($name != '') {
2014-01-09 23:58:47 +01:00
$url .= '&trackname=' . str_replace(" ", "%20", $name);
2014-01-08 22:49:09 +01:00
}
2014-01-28 15:56:50 +01:00
if ($author != '') {
2014-01-08 22:49:09 +01:00
$url .= '&author=' . $author;
}
2014-01-09 23:21:44 +01:00
2014-01-08 21:03:59 +01:00
$url .= '&priord=' . $searchOrder;
2014-01-08 22:49:09 +01:00
$url .= '&limit=' . $maxMapsReturned;
2014-01-09 19:29:25 +01:00
$url .= '&mtype=' . $mapTypes;
2014-01-09 23:21:44 +01:00
2014-01-09 22:08:34 +01:00
// $mapInfo = FileUtil::loadFile($url, "application/json"); //TODO use mc fileutil
2014-01-08 21:52:42 +01:00
$mapInfo = $this->get_file($url);
2014-01-09 23:21:44 +01:00
2014-01-28 15:56:50 +01:00
if ($mapInfo === false) {
2014-01-14 13:57:10 +01:00
$this->error = 'Connection or response error on ' . $url;
return array();
2014-01-28 15:56:50 +01:00
} elseif ($mapInfo === -1) {
2014-01-14 13:57:10 +01:00
$this->error = 'Timed out while reading data from ' . $url;
return array();
2014-01-28 15:56:50 +01:00
} elseif ($mapInfo == '') {
if (empty($maps)) {
2014-01-14 13:57:10 +01:00
$this->error = 'No data returned from ' . $url;
return array();
}
}
2014-01-09 23:21:44 +01:00
2014-01-08 21:52:42 +01:00
$mxMapList = json_decode($mapInfo);
2014-01-28 15:56:50 +01:00
if ($mxMapList === null) {
2014-01-08 21:52:42 +01:00
trigger_error('Cannot decode searched JSON data from ' . $url);
return null;
2014-01-08 21:03:59 +01:00
}
2014-01-09 23:21:44 +01:00
2014-01-08 21:52:42 +01:00
$maps = array();
2014-01-09 23:21:44 +01:00
foreach($mxMapList as $map) {
2014-01-28 15:56:50 +01:00
if (!empty($map)) {
2014-01-08 22:15:36 +01:00
array_push($maps, new MXMapInfo($titlePrefix, $map));
2014-01-08 21:52:42 +01:00
}
}
return $maps;
2014-01-08 21:03:59 +01:00
}
2014-01-14 15:15:13 +01:00
/**
* Loads an file
*
* @param $url
* @return bool|int|string
*/
2014-01-08 21:52:42 +01:00
private function get_file($url) {
2014-01-09 23:21:44 +01:00
$url = parse_url($url);
$port = isset($url['port']) ? $url['port'] : 80;
2014-01-08 21:52:42 +01:00
$query = isset($url['query']) ? "?" . $url['query'] : "";
2014-01-09 23:21:44 +01:00
2014-01-08 21:52:42 +01:00
$fp = @fsockopen($url['host'], $port, $errno, $errstr, 4);
2014-01-28 15:56:50 +01:00
if (!$fp) {
2014-01-08 21:52:42 +01:00
return false;
}
2014-01-09 23:21:44 +01:00
fwrite($fp, 'GET ' . $url['path'] . $query . " HTTP/1.0\r\n" . 'Host: ' . $url['host'] . "\r\n" . 'Content-Type: application/json' . "\r\n" . 'User-Agent: ManiaControl v' . ManiaControl::VERSION . "\r\n\r\n");
2014-01-08 21:52:42 +01:00
stream_set_timeout($fp, 2);
2014-01-09 23:21:44 +01:00
$res = '';
2014-01-08 21:52:42 +01:00
$info['timed_out'] = false;
2014-01-09 23:21:44 +01:00
while(!feof($fp) && !$info['timed_out']) {
2014-01-08 21:52:42 +01:00
$res .= fread($fp, 512);
$info = stream_get_meta_data($fp);
}
fclose($fp);
2014-01-09 23:21:44 +01:00
2014-01-28 15:56:50 +01:00
if ($info['timed_out']) {
2014-01-08 21:52:42 +01:00
return -1;
2014-01-09 23:21:44 +01:00
} else {
2014-01-28 15:56:50 +01:00
if (substr($res, 9, 3) != '200') {
2014-01-08 21:52:42 +01:00
return false;
}
$page = explode("\r\n\r\n", $res, 2);
return trim($page[1]);
}
} // get_file
2014-01-14 15:15:13 +01:00
/**
* Gets the Current Environemnt by String
*
* @param $env
* @return int
*/
2014-01-08 21:03:59 +01:00
private function getEnvironment($env) {
2014-01-09 23:21:44 +01:00
switch($env) {
2014-01-08 21:03:59 +01:00
case 'TMCanyon':
case 'SMStorm':
return 1;
case 'TMStadium':
return 2;
case 'TMValley':
return 3;
default:
return -1;
}
}
2014-01-28 15:56:50 +01:00
}