Files
pathfinder/app/Model/Pathfinder/AllianceModel.php
Mark Friedrich a5f29ee2eb - NEW "Thera connections" UI module, closed #829
- 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
2020-03-02 16:42:36 +01:00

169 lines
4.3 KiB
PHP

<?php
/**
* Created by PhpStorm.
* User: exodus4d
* Date: 17.05.15
* Time: 20:43
*/
namespace Exodus4D\Pathfinder\Model\Pathfinder;
use DB\SQL\Schema;
use Exodus4D\Pathfinder\Lib\Config;
class AllianceModel extends AbstractPathfinderModel {
/**
* @var string
*/
protected $table = 'alliance';
/**
* @var array
*/
protected $fieldConf = [
'active' => [
'type' => Schema::DT_BOOL,
'nullable' => false,
'default' => 1,
'index' => true
],
'name' => [
'type' => Schema::DT_VARCHAR128,
'nullable' => false,
'default' => ''
],
'ticker' => [
'type' => Schema::DT_VARCHAR128,
'nullable' => false,
'default' => ''
],
'shared' => [
'type' => Schema::DT_BOOL,
'nullable' => false,
'default' => 0
],
'allianceCharacters' => [
'has-many' => ['Exodus4D\Pathfinder\Model\Pathfinder\CharacterModel', 'allianceId']
],
'mapAlliances' => [
'has-many' => ['Exodus4D\Pathfinder\Model\Pathfinder\AllianceMapModel', 'allianceId']
]
];
/**
* get all alliance data
* @return \stdClass
*/
public function getData(){
$allianceData = (object) [];
$allianceData->id = $this->id;
$allianceData->name = $this->name;
$allianceData->shared = $this->shared;
return $allianceData;
}
/**
* Event "Hook" function
* return false will stop any further action
* @param self $self
* @param $pkeys
* @return bool
*/
public function beforeUpdateEvent($self, $pkeys) : bool {
// if model changed, 'update' col needs to be updated as well
// -> data no longer "outdated"
$this->touch('updated');
return parent::beforeUpdateEvent($self, $pkeys);
}
/**
* get all maps for this alliance
* @return array|mixed
*/
public function getMaps(){
$maps = [];
$this->filterRel();
if($this->mapAlliances){
$mapCount = 0;
foreach($this->mapAlliances as $mapAlliance){
if(
$mapAlliance->mapId->isActive() &&
$mapCount < Config::getMapsDefaultConfig('alliance')['max_count']
){
$maps[] = $mapAlliance->mapId;
$mapCount++;
}
}
}
return $maps;
}
/**
* get all characters in this alliance
* @param array $characterIds
* @param array $options
* @return CharacterModel[]
*/
public function getCharacters($characterIds = [], $options = []) : array {
$characters = [];
$filter = ['active = ?', 1];
if( !empty($characterIds) ){
$filter[0] .= ' AND id IN (?)';
$filter[] = $characterIds;
}
$this->filter('allianceCharacters', $filter);
if($options['hasLog']){
// just characters with active log data
$this->has('allianceCharacters.characterLog', ['active = ?', 1]);
}
if($this->allianceCharacters){
foreach($this->allianceCharacters as $character){
$characters[] = $character;
}
}
return $characters;
}
/**
* load alliance by Id either from DB or load data from API
* @param int $id
* @param int $ttl
* @param bool $isActive
* @return bool
*/
public function getById(int $id, int $ttl = self::DEFAULT_SQL_TTL, bool $isActive = true) : bool {
/**
* @var AllianceModel $alliance
*/
$loaded = parent::getById($id, $ttl, $isActive);
if($this->isOutdated()){
// request alliance data
$allianceData = self::getF3()->ccpClient()->send('getAlliance', $id);
if(!empty($allianceData) && !isset($allianceData['error'])){
$this->copyfrom($allianceData, ['id', 'name', 'ticker']);
$this->save();
}
}
return $loaded;
}
/**
* @see parent
*/
public function filterRel() : void {
$this->filter('mapAlliances', self::getFilter('active', true), ['order' => 'created']);
}
}