Files
pathfinder/app/main/model/systemsignaturemodel.php
Exodus4D a8edf39697 - new "logging" system for map/system/signature/connection changes, closed #271
- new map change log to Slack channel
- new "rally point" logging to Slack channel
- new "rally point" poke options (e.g. custom message), closed #295
- new log options for WebSocket installations
- added ship "mass" logging (backend only), #313
- added map logging to Slack, #326
- added "ESI error rate" limit detection
- added "Monolog" as new logging library (Composer dependency)
- added "Swiftmailer" as new eMail library (Composer dependency)
- added Support for Redis session hander (performance boost)
- improved character select panels (visible "online" status)
- improved "activity logging" (more DB columns added to check)
- improved eMail logging (HTML template support)
- improved "delete map" now become "inactive" for some days before delete
- improved character logout handling
- improved /setup page for DB bootstrap (new button for DB create if not exists)
- fixed broken ship tracking (ship name re-added)
- fixed broken ship tracking for multiple chars on different browser tabs
- fixed broken cursor coordinates, closed #518
- fixed null pointer "charactermodel.php->isActive():925" closed #529
- fixed broken "scroll offset", closed #533 closed #534
- Updated "validation" library JS v0.10.1 -> v0.11.9
- Updated ORM Mapper _Cortex_ v1.5.0-dev -> v1.5.0
- and many more....
2017-10-22 17:58:34 +02:00

306 lines
8.2 KiB
PHP

<?php
/**
* Created by PhpStorm.
* User: exodus4d
* Date: 21.03.15
* Time: 14:34
*/
namespace Model;
use DB\SQL\Schema;
use Lib\Logging;
class SystemSignatureModel extends AbstractMapTrackingModel {
protected $table = 'system_signature';
protected $fieldConf = [
'active' => [
'type' => Schema::DT_BOOL,
'nullable' => false,
'default' => 1,
'index' => true
],
'systemId' => [
'type' => Schema::DT_INT,
'index' => true,
'belongs-to-one' => 'Model\SystemModel',
'constraint' => [
[
'table' => 'system',
'on-delete' => 'CASCADE'
]
]
],
'groupId' => [
'type' => Schema::DT_INT,
'nullable' => false,
'default' => 0,
'index' => true,
'activity-log' => true
],
'typeId' => [
'type' => Schema::DT_INT,
'nullable' => false,
'default' => 0,
'index' => true,
'activity-log' => true
],
'connectionId' => [
'type' => Schema::DT_INT,
'index' => true,
'belongs-to-one' => 'Model\ConnectionModel',
'constraint' => [
[
'table' => 'connection',
'on-delete' => 'CASCADE'
]
],
'activity-log' => true
],
'name' => [
'type' => Schema::DT_VARCHAR128,
'nullable' => false,
'default' => '',
'activity-log' => true,
'validate' => true
],
'description' => [
'type' => Schema::DT_VARCHAR512,
'nullable' => false,
'default' => '',
'activity-log' => true
]
];
/**
* set an array with all data for a system
* @param $data
*/
public function setData($data){
unset($data['id']);
unset($data['created']);
unset($data['updated']);
unset($data['createdCharacterId']);
unset($data['updatedCharacterId']);
foreach((array)$data as $key => $value){
if(!is_array($value)){
if($this->exists($key)){
$this->$key = $value;
}
}
}
}
/**
* get signature data
* @return \stdClass
*/
public function getData(){
$signatureData = (object) [];
$signatureData->id = $this->id;
$signatureData->system = (object) [];
$signatureData->system->id = $this->get('systemId', true);
$signatureData->groupId = $this->groupId;
$signatureData->typeId = $this->typeId;
$signatureData->name = $this->name;
$signatureData->description = $this->description;
if($connection = $this->getConnection()){
$signatureData->connection = (object) [];
$signatureData->connection->id = $connection->_id;
}
$signatureData->created = (object) [];
$signatureData->created->created = strtotime($this->created);
if( is_object($this->createdCharacterId) ){
$signatureData->created->character = $this->createdCharacterId->getData();
}
$signatureData->updated = (object) [];
$signatureData->updated->updated = strtotime($this->updated);
if( is_object($this->updatedCharacterId) ){
$signatureData->updated->character = $this->updatedCharacterId->getData();
}
return $signatureData;
}
/**
* setter for connectionId
* @param $connectionId
* @return int|null
*/
public function set_connectionId($connectionId){
$connectionId = (int)$connectionId;
$validConnectionId = null;
if($connectionId > 0){
// check if connectionId is valid
$systemId = (int) $this->get('systemId', true);
/**
* @var $connection ConnectionModel
*/
$connection = $this->rel('connectionId');
$connection->getById($connectionId);
if(
!$connection->dry() &&
(
$connection->get('source', true) === $systemId||
$connection->get('target', true) === $systemId
)
){
// connectionId belongs to same system as $this signature -> is valid
$validConnectionId = $connectionId;
}
}
return $validConnectionId;
}
/**
* validate name column
* @param string $key
* @param string $val
* @return bool
*/
protected function validate_name(string $key, string $val): bool {
$valid = true;
if(mb_strlen($val) < 3){
$valid = false;
$this->throwValidationException($key);
}
return $valid;
}
/**
* @param string $action
* @return Logging\LogInterface
*/
public function newLog($action = ''): Logging\LogInterface{
return $this->getMap()->newLog($action)->setTempData($this->getLogObjectData());
}
/**
* @return MapModel
*/
public function getMap(): MapModel{
return $this->get('systemId')->getMap();
}
/**
* get the connection (if attached)
* @return \Model\ConnectionModel|null
*/
public function getConnection(){
return $this->connectionId;
}
/**
* compares a new data set (array) with the current values
* and checks if something has changed
* @param $signatureData
* @return bool
*/
public function hasChanged($signatureData){
$hasChanged = false;
foreach((array)$signatureData as $key => $value){
if(
$this->exists($key) &&
$this->$key != $value
){
$hasChanged = true;
break;
}
}
return $hasChanged;
}
/**
* check object for model access
* @param CharacterModel $characterModel
* @return bool
*/
public function hasAccess(CharacterModel $characterModel){
return $this->systemId->hasAccess($characterModel);
}
/**
* delete signature
* @param CharacterModel $characterModel
*/
public function delete(CharacterModel $characterModel){
if( !$this->dry() ){
// check if character has access
if($this->hasAccess($characterModel)){
$this->erase();
}
}
}
/**
* Event "Hook" function
* return false will stop any further action
* @param self $self
* @param $pkeys
*/
public function afterInsertEvent($self, $pkeys){
$self->logActivity('signatureCreate');
}
/**
* Event "Hook" function
* return false will stop any further action
* @param self $self
* @param $pkeys
*/
public function afterUpdateEvent($self, $pkeys){
$self->logActivity('signatureUpdate');
}
/**
* Event "Hook" function
* can be overwritten
* @param self $self
* @param $pkeys
*/
public function afterEraseEvent($self, $pkeys){
$self->logActivity('signatureDelete');
}
/**
* get object relevant data for model log
* @return array
*/
public function getLogObjectData() : array{
return [
'objId' => $this->_id,
'objName' => $this->name
];
}
/**
* overwrites parent
* @param null $db
* @param null $table
* @param null $fields
* @return bool
*/
public static function setup($db=null, $table=null, $fields=null){
$status = parent::setup($db,$table,$fields);
if($status === true){
$status = parent::setMultiColumnIndex(['systemId', 'typeId', 'groupId']);
}
return $status;
}
}