Files
pathfinder/app/Model/Pathfinder/CorporationModel.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

410 lines
12 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 CorporationModel extends AbstractPathfinderModel {
/**
* @var string
*/
protected $table = 'corporation';
/**
* all available corp roles EVE has
* -> a corp member has granted roles 0 up to all roles
*/
const CCP_ROLES = [
'director',
'personnel_manager',
'accountant',
'security_officer',
'factory_manager',
'station_manager',
'auditor',
'hangar_take_1',
'hangar_take_2',
'hangar_take_3',
'hangar_take_4',
'hangar_take_5',
'hangar_take_6',
'hangar_take_7',
'hangar_query_1',
'hangar_query_2',
'hangar_query_3',
'hangar_query_4',
'hangar_query_5',
'hangar_query_6',
'hangar_query_7',
'account_take_1',
'account_take_2',
'account_take_3',
'account_take_4',
'account_take_5',
'account_take_6',
'account_take_7',
'diplomat',
'config_equipment',
'container_take_1',
'container_take_2',
'container_take_3',
'container_take_4',
'container_take_5',
'container_take_6',
'container_take_7',
'rent_office',
'rent_factory_facility',
'rent_research_facility',
'junior_accountant',
'config_starbase_equipment',
'trader',
'communications_officer',
'contract_manager',
'starbase_defense_operator',
'starbase_fuel_technician',
'fitting_manager',
'terrestrial_combat_officer',
'terrestrial_logistics_officer'
];
/**
* corp roles that give admin access for a corp
*/
const ADMIN_ROLES = [
'director',
'personnel_manager',
'security_officer'
];
/**
* corp rights that can be stored to a corp
*/
const RIGHTS = [
'map_update',
'map_delete',
'map_import',
'map_export'
];
/**
* @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' => ''
],
'memberCount' => [
'type' => Schema::DT_INT,
'nullable' => false,
'default' => 0
],
'shared' => [
'type' => Schema::DT_BOOL,
'nullable' => false,
'default' => 0
],
'isNPC' => [
'type' => Schema::DT_BOOL,
'nullable' => false,
'default' => 0
],
'corporationCharacters' => [
'has-many' => ['Exodus4D\Pathfinder\Model\Pathfinder\CharacterModel', 'corporationId']
],
'mapCorporations' => [
'has-many' => ['Exodus4D\Pathfinder\Model\Pathfinder\CorporationMapModel', 'corporationId']
],
'corporationRights' => [
'has-many' => ['Exodus4D\Pathfinder\Model\Pathfinder\CorporationRightModel', 'corporationId']
],
'corporationStructures' => [
'has-many' => ['Exodus4D\Pathfinder\Model\Pathfinder\CorporationStructureModel', 'corporationId']
],
'structures' => [
'has-many' => ['Exodus4D\Pathfinder\Model\Pathfinder\StructureModel', 'corporationId']
]
];
/**
* get cooperation data
* @param bool $addRights
* @return \stdClass
* @throws \Exception
*/
public function getData(bool $addRights = true) : \stdClass {
$cooperationData = (object) [];
$cooperationData->id = $this->id;
$cooperationData->name = $this->name;
$cooperationData->shared = $this->shared;
if($addRights){
if($corporationRights = $this->getRights()){
foreach($corporationRights as $corporationRight){
$cooperationData->rights[] = $corporationRight->getData();
}
}
}
return $cooperationData;
}
/**
* 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 corporation
* @param int|null $mapId
* @param array $options
* @return array
*/
public function getMaps(?int $mapId = null, $options = []) : array {
$maps = [];
$this->filterRel();
if($mapId){
$filters = [
self::getFilter('mapId', $mapId)
];
$this->filter('mapCorporations', $this->mergeWithRelFilter('mapCorporations', $this->mergeFilter($filters)), $this->getRelFilterOption('mapCorporations'));
}
if($this->mapCorporations){
$mapCount = 0;
foreach($this->mapCorporations as $mapCorporation){
$validActive = !$options['addInactive'] ? $mapCorporation->mapId->isActive() : true;
$validMapCount = !$options['ignoreMapCount'] ? $mapCount < Config::getMapsDefaultConfig('corporation')['max_count'] : true;
if($validActive && $validMapCount){
$maps[] = $mapCorporation->mapId;
$mapCount++;
}
}
}
return $maps;
}
/**
* get all characters in this corporation
* @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('corporationCharacters', $filter);
if($options['hasLog']){
// just characters with active log data
$this->has('corporationCharacters.characterLog', ['active = ?', 1]);
}
if($this->corporationCharacters){
foreach($this->corporationCharacters as $character){
$characters[] = $character;
}
}
return $characters;
}
/**
* get all structure data for this corporation
* @param int $systemId
* @return array
*/
public function getStructuresData(int $systemId) : array {
$structuresData = [];
$structure = $this->rel('structures');
$filters = [
self::getFilter('corporationId', $this->id),
self::getFilter('active', true)
];
$structure->has('structureCorporations', $this->mergeFilter($filters));
$filters = [
self::getFilter('systemId', $systemId),
self::getFilter('active', true)
];
if($structures = $structure->find($this->mergeFilter($filters))){
foreach($structures as $structure){
$structuresData[] = $structure->getData();
}
}
return $structuresData;
}
/**
* get roles for each character in this corp
* -> CCP API call
* @param string $accessToken
* @return array
*/
public function getCharactersRoles($accessToken){
$characterRolesData = [];
if(
!empty($accessToken) &&
!$this->isNPC
){
$response = self::getF3()->ccpClient()->send('getCorporationRoles', $this->_id, $accessToken);
if( !empty($response['roles']) ){
$characterRolesData = (array)$response['roles'];
}
}
return $characterRolesData;
}
/**
* get all corporation rights
* @param array $options
* @return CorporationRightModel[]
* @throws \Exception
*/
public function getRights($options = []) : array {
$corporationRights = [];
// get available rights
$right = self::getNew('RightModel');
if($rights = $right->find(['active = ? AND name IN (?)', 1, self::RIGHTS])){
// get already stored rights
if( !$options['addInactive'] ){
$this->filter('corporationRights', ['active = ?', 1]);
}
foreach($rights as $i => $tempRight){
$corporationRight = false;
if($this->corporationRights){
foreach($this->corporationRights as $tempCorporationRight){
/**
* @var $tempCorporationRight CorporationRightModel
*/
if($tempCorporationRight->get('rightId', true) === $tempRight->_id){
$corporationRight = $tempCorporationRight;
break;
}
}
}
if(!$corporationRight){
$corporationRight = self::getNew('CorporationRightModel');
$corporationRight->corporationId = $this;
$corporationRight->rightId = $tempRight;
$corporationRight->roleId = RoleModel::getDefaultRole();
}
$corporationRights[] = $corporationRight;
}
}
return $corporationRights;
}
/**
* load corporation 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 {
$loaded = parent::getById($id, $ttl, $isActive);
if($this->isOutdated()){
// request corporation data
$corporationData = self::getF3()->ccpClient()->send('getCorporation', $id);
if(!empty($corporationData) && !isset($corporationData['error'])){
// check for NPC corporation
$corporationData['isNPC'] = in_array($id, self::getF3()->ccpClient()->send('getNpcCorporations'));
$this->copyfrom($corporationData, ['id', 'name', 'ticker', 'memberCount', 'isNPC']);
$this->save();
}
}
return $loaded;
}
/**
* add new structure for this corporation
* @param StructureModel $structure
*/
public function saveStructure(StructureModel $structure){
if( !$structure->dry() ){
$corporationStructure = $this->rel('corporationStructures');
$corporationStructure->corporationId = $this;
$corporationStructure->structureId = $structure;
$corporationStructure->save();
}
}
/**
* @see parent
*/
public function filterRel() : void {
$this->filter('mapCorporations', self::getFilter('active', true), ['order' => 'created']);
}
/**
* get all corporations
* @param array $options
* @return \DB\CortexCollection
*/
public static function getAll($options = []){
$query = [
'active = :active',
':active' => 1
];
if( !$options['addNPC'] ){
$query[0] .= ' AND isNPC = :isNPC';
$query[':isNPC'] = 1;
}
return (new self())->find($query);
}
}