final tested version of maniaexchange map search
This commit is contained in:
parent
67208624e5
commit
eeac91bd22
@ -272,7 +272,7 @@ class ManiaExchangeManager {
|
||||
* @deprecated
|
||||
* @see \ManiaControl\ManiaExchange\ManiaExchangeManager::fetchMapsAsync()
|
||||
*/
|
||||
public function getMapsAsync(callable $function, $name = '', $author = '', $env = '', $maxMapsReturned = 100, $searchOrder = self::SEARCH_ORDER_UPDATED_NEWEST) {
|
||||
public function getMapsAsync(callable $function, $name = '', $author = '', $env = '', $maxMapsReturned = 100, $searchOrder = ManiaExchangeMapSearch::SEARCH_ORDER_UPDATED_NEWEST) {
|
||||
$this->fetchMapsAsync($function, $name, $author, $env, $maxMapsReturned, $searchOrder);
|
||||
return true;
|
||||
}
|
||||
@ -286,74 +286,22 @@ class ManiaExchangeManager {
|
||||
* @param string $env
|
||||
* @param int $maxMapsReturned
|
||||
* @param int $searchOrder
|
||||
*
|
||||
* @deprecated
|
||||
* @see \ManiaControl\ManiaExchange\ManiaExchangeMapSearch
|
||||
*/
|
||||
public function fetchMapsAsync(callable $function, $name = '', $author = '', $env = '', $maxMapsReturned = 100, $searchOrder = self::SEARCH_ORDER_UPDATED_NEWEST) {
|
||||
//TODO provide additional parameters as array, generally new structure
|
||||
// TODO: remove $env because it's not really used?
|
||||
public function fetchMapsAsync(callable $function, $name = '', $author = '', $env = '', $maxMapsReturned = 100, $sortOrder = ManiaExchangeMapSearch::SEARCH_ORDER_UPDATED_NEWEST) {
|
||||
$mapSearch = new ManiaExchangeMapSearch($this->maniaControl);
|
||||
$mapSearch->setMapName($name);
|
||||
$mapSearch->setAuthorName($author);
|
||||
$mapSearch->setMapLimit($maxMapsReturned);
|
||||
$mapSearch->setPrioritySortOrder($sortOrder);
|
||||
|
||||
// Get Title Id
|
||||
$titleId = $this->maniaControl->getServer()->titleId;
|
||||
$titlePrefix = $this->maniaControl->getMapManager()->getCurrentMap()->getGame();
|
||||
|
||||
// compile search URL
|
||||
$url = 'http://' . $titlePrefix . '.mania-exchange.com/tracksearch2/search?api=on';
|
||||
|
||||
$game = explode('@', $titleId);
|
||||
$envNumber = $this->getEnvironment($game[0]);
|
||||
if ($env || $envNumber > -1) {
|
||||
$url .= '&environments=' . $envNumber;
|
||||
}
|
||||
if ($name) {
|
||||
$url .= '&trackname=' . str_replace(" ", "%20", $name);
|
||||
}
|
||||
if ($author) {
|
||||
$url .= '&author=' . $author;
|
||||
if($env){
|
||||
$mapSearch->setEnvironments($env);
|
||||
}
|
||||
|
||||
$url .= '&priord=' . $searchOrder;
|
||||
$url .= '&limit=' . $maxMapsReturned;
|
||||
|
||||
if ($titlePrefix !== "tm") {
|
||||
$url .= '&minexebuild=' . self::MIN_EXE_BUILD;
|
||||
}
|
||||
|
||||
// Get MapTypes
|
||||
try {
|
||||
$scriptInfos = $this->maniaControl->getClient()->getModeScriptInfo();
|
||||
$mapTypes = $scriptInfos->compatibleMapTypes;
|
||||
$url .= '&mtype=' . $mapTypes;
|
||||
} catch (GameModeException $e) {
|
||||
}
|
||||
|
||||
$this->maniaControl->getFileReader()->loadFile($url, function ($mapInfo, $error) use (&$function, $titlePrefix) {
|
||||
if ($error) {
|
||||
trigger_error($error);
|
||||
return;
|
||||
}
|
||||
|
||||
$mxMapList = json_decode($mapInfo);
|
||||
|
||||
if (!isset($mxMapList->results)) {
|
||||
trigger_error('Cannot decode searched JSON data');
|
||||
return;
|
||||
}
|
||||
|
||||
$mxMapList = $mxMapList->results;
|
||||
|
||||
if ($mxMapList === null) {
|
||||
trigger_error('Cannot decode searched JSON data');
|
||||
return;
|
||||
}
|
||||
|
||||
$maps = array();
|
||||
foreach ($mxMapList as $map) {
|
||||
if (!empty($map)) {
|
||||
array_push($maps, new MXMapInfo($titlePrefix, $map));
|
||||
}
|
||||
}
|
||||
|
||||
call_user_func($function, $maps);
|
||||
}, AsynchronousFileReader::CONTENT_TYPE_JSON);
|
||||
$mapSearch->fetchMapsAsync($function);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -55,7 +55,7 @@ class ManiaExchangeMapSearch {
|
||||
private $titlePrefix = "";
|
||||
|
||||
private $mode = null;
|
||||
private $trackName = null;
|
||||
private $mapName = null;
|
||||
private $authorName = null;
|
||||
private $mod = null;
|
||||
private $authorId = null;
|
||||
@ -70,7 +70,7 @@ class ManiaExchangeMapSearch {
|
||||
private $environments = null;
|
||||
private $vehicles = null;
|
||||
private $page = null;
|
||||
private $limit = null;
|
||||
private $mapLimit = null;
|
||||
private $unreleased = null;
|
||||
private $mapGroup = null;
|
||||
private $commentsMinLength = null;
|
||||
@ -83,9 +83,7 @@ class ManiaExchangeMapSearch {
|
||||
/** @var ManiaControl $maniaControl */
|
||||
private $maniaControl = null;
|
||||
|
||||
//TODO test class
|
||||
//TODO test booleans
|
||||
//TODO use class by maniaexchangemanager and mxlist
|
||||
//TODO use class by mxlist
|
||||
|
||||
/**
|
||||
* Construct map manager
|
||||
@ -138,23 +136,23 @@ class ManiaExchangeMapSearch {
|
||||
if ($this->mode) {
|
||||
$parameters .= "&mode=" . $this->mode;
|
||||
}
|
||||
if ($this->trackName) {
|
||||
$parameters .= "&trackname=" . str_replace(" ", "%20", $this->trackName); //TODO test without the str_replace (URLENCODE)
|
||||
if ($this->mapName) {
|
||||
$parameters .= "&trackname=" . urlencode($this->mapName);
|
||||
}
|
||||
if ($this->authorName) {
|
||||
$parameters .= "&author=" . $this->authorName;
|
||||
$parameters .= "&author=" . urlencode($this->authorName);
|
||||
}
|
||||
if ($this->mod) {
|
||||
$parameters .= "&mod=" . $this->mod;
|
||||
$parameters .= "&mod=" . urlencode($this->mod);
|
||||
}
|
||||
if ($this->authorId) {
|
||||
$parameters .= "&authorid= " . $this->authorId;
|
||||
}
|
||||
if ($this->maniaScriptType) {
|
||||
$parameters .= "&mtype=" . $this->maniaScriptType;
|
||||
$parameters .= "&mtype=" . urlencode($this->maniaScriptType);
|
||||
}
|
||||
if ($this->titlePack) {
|
||||
$parameters .= "&tpack=" . $this->titlePack;
|
||||
$parameters .= "&tpack=" . urlencode($this->titlePack);
|
||||
}
|
||||
if ($this->replayType) {
|
||||
$parameters .= "&rytpe=" . $this->replayType;
|
||||
@ -183,11 +181,11 @@ class ManiaExchangeMapSearch {
|
||||
if ($this->page) {
|
||||
$parameters .= "&page=" . $this->page;
|
||||
}
|
||||
if ($this->limit) {
|
||||
$parameters .= "&limit=" . $this->limit;
|
||||
if ($this->mapLimit) {
|
||||
$parameters .= "&limit=" . $this->mapLimit;
|
||||
}
|
||||
if (isset($this->unreleased)) {
|
||||
$parameters .= "&unreleased=" . $this->unreleased;
|
||||
$parameters .= "&unreleased=" . (int) $this->unreleased;
|
||||
}
|
||||
if ($this->mapGroup) {
|
||||
$parameters .= "&mapgroup=" . $this->mapGroup;
|
||||
@ -199,7 +197,7 @@ class ManiaExchangeMapSearch {
|
||||
$parameters .= "&customscreenshot=" . $this->customScreenshot;
|
||||
}
|
||||
if ($this->minExeBuild) {
|
||||
$parameters .= "&minexebuild=" . $this->minExeBuild;
|
||||
$parameters .= "&minexebuild=" . urlencode($this->minExeBuild);
|
||||
}
|
||||
if (isset($this->envMix)) {
|
||||
$parameters .= "&envmix=" . (int) $this->envMix;
|
||||
@ -211,6 +209,7 @@ class ManiaExchangeMapSearch {
|
||||
$parameters .= "&embeddedobjects=" . (int) $this->embeddedObjects;
|
||||
}
|
||||
|
||||
var_dump($this->url . $parameters);
|
||||
$this->maniaControl->getFileReader()->loadFile($this->url . $parameters, function ($mapInfo, $error) use (&$function) {
|
||||
if ($error) {
|
||||
trigger_error($error);
|
||||
@ -270,10 +269,10 @@ class ManiaExchangeMapSearch {
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $trackName
|
||||
* @param string $mapName
|
||||
*/
|
||||
public function setTrackName($trackName) {
|
||||
$this->trackName = $trackName;
|
||||
public function setMapName($mapName) {
|
||||
$this->mapName = $mapName;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -342,14 +341,14 @@ class ManiaExchangeMapSearch {
|
||||
/**
|
||||
* @param int $secondaryOrder
|
||||
*/
|
||||
public function setSecondaryOrder($secondaryOrder) {
|
||||
public function setSecondarySortOrder($secondaryOrder) {
|
||||
$this->secondaryOrder = $secondaryOrder;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param int $priorityOrder
|
||||
*/
|
||||
public function setPriorityOrder($priorityOrder) {
|
||||
public function setPrioritySortOrder($priorityOrder) {
|
||||
$this->priorityOrder = $priorityOrder;
|
||||
}
|
||||
|
||||
@ -429,4 +428,11 @@ class ManiaExchangeMapSearch {
|
||||
public function setEmbeddedObjects($embeddedObjects) {
|
||||
$this->embeddedObjects = $embeddedObjects;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param null $mapLimit
|
||||
*/
|
||||
public function setMapLimit($mapLimit) {
|
||||
$this->mapLimit = $mapLimit;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user