Files
pathfinder/app/Lib/Logging/RallyLog.php
Mark Friedrich 647bd7db58 - BC Break: _PHP_ namespaces changed (PSR-4 standard). The _root_ namespace for all _PF_ related scripts is Exodus4D\Pathfinder
- BC Break: Project folder structure changed. Removed `app/main` dir.
- BC Break: Core _PHP_ framework + dependencies moved into `composer.json` and are no longer part of this repo
2019-12-15 22:27:17 +01:00

111 lines
2.8 KiB
PHP

<?php
/**
* Created by PhpStorm.
* User: Exodus 4D
* Date: 22.09.2017
* Time: 16:50
*/
namespace Exodus4D\Pathfinder\Lib\Logging;
use Exodus4D\Pathfinder\Lib\Config;
class RallyLog extends AbstractCharacterLog {
/**
* List of possible handlers (tested)
* -> final handler will be set dynamic for per instance
* @var array
*/
protected $handlerConfig = [
// 'slackRally' => 'json',
// 'mail' => 'html'
];
/**
* @var string
*/
protected $channelType = 'rally';
/**
* RallyLog constructor.
* @param string $action
* @param array $objectData
* @throws \Exception
*/
public function __construct(string $action, array $objectData){
parent::__construct($action, $objectData);
$this->setLevel('notice');
$this->setTag('information');
}
/**
* @return string
*/
protected function getThumbUrl() : string{
$url = '';
if(is_object($character = $this->getCharacter())){
$characterLog = $character->getLog();
if($characterLog && !empty($characterLog->shipTypeId)){
$url = Config::getPathfinderData('api.ccp_image_server') . '/Render/' . $characterLog->shipTypeId . '_64.png';
}else{
$url = parent::getThumbUrl();
}
}
return $url;
}
/**
* @return string
*/
public function getMessage() : string{
return "*New RallyPoint system '{objName}'* _#{objId}_ *map '{channelName}'* _#{channelId}_ ";
}
/**
* @return array
*/
public function getData() : array{
$data = parent::getData();
// add system -----------------------------------------------------------------------------
if(!empty($tempLogData = $this->getTempData())){
$objectData['object'] = $tempLogData;
$data = $objectData + $data;
}
// add human readable changes to string ---------------------------------------------------
$data['formatted'] = $this->formatData($data);
return $data;
}
/**
* @param array $data
* @return string
*/
protected function formatData(array $data): string{
$string = '';
if(
!empty($data['object']) &&
!empty($data['channel'])
){
$replace = [
'{objName}' => $data['object']['objName'],
'{objId}' => $data['object']['objId'],
'{channelName}' => $data['channel']['channelName'],
'{channelId}' => $data['channel']['channelId']
];
$string = str_replace(array_keys($replace), array_values($replace), $this->getMessage());
}
return $string;
}
}