- Upgraded "[_pathfinder_esi_](https://github.com/exodus4d/pathfinder_esi)" Web API client`v1.3.2` → `v2.0.0` - Fixed a js bug where current active(selected) system becomes deselected after system was dragged on map - Fixed a js bug where new auto mapped systems (e.g. after jump) were positioned outside current map scroll viewport - Fixed a js bug where map sync failed after map tabs switch - Fixed blurry map when map zoom was changed - Fixed multiple minor JS bugs where map render/update failed
44 lines
1.0 KiB
PHP
44 lines
1.0 KiB
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: Exodus 4D
|
|
* Date: 26.12.2018
|
|
* Time: 17:43
|
|
*/
|
|
|
|
namespace Exodus4D\Pathfinder\Lib\Api;
|
|
|
|
use Exodus4D\Pathfinder\Lib\Config;
|
|
use Exodus4D\ESI\Client\ApiInterface;
|
|
use Exodus4D\ESI\Client\Ccp\Esi\Esi as Client;
|
|
|
|
/**
|
|
* Class CcpClient
|
|
* @package lib\api
|
|
*
|
|
* @method ApiInterface send(string $requestHandler, ...$handlerParams)
|
|
* @method ApiInterface sendBatch(array $configs)
|
|
*/
|
|
class CcpClient extends AbstractClient {
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
const CLIENT_NAME = 'ccpClient';
|
|
|
|
/**
|
|
* @param \Base $f3
|
|
* @return ApiInterface|null
|
|
*/
|
|
protected function getClient(\Base $f3) : ?ApiInterface {
|
|
$client = null;
|
|
if(class_exists(Client::class)){
|
|
$client = new Client(Config::getEnvironmentData('CCP_ESI_URL'));
|
|
$client->setDataSource(Config::getEnvironmentData('CCP_ESI_DATASOURCE'));
|
|
}else{
|
|
$this->getLogger()->write($this->getMissingClassError(Client::class));
|
|
}
|
|
|
|
return $client;
|
|
}
|
|
} |