- 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
128 lines
3.3 KiB
PHP
128 lines
3.3 KiB
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: exodus4d
|
|
* Date: 09.02.15
|
|
* Time: 23:30
|
|
*/
|
|
|
|
namespace Exodus4D\Pathfinder\Controller;
|
|
|
|
|
|
use Exodus4D\Pathfinder\Model\Pathfinder;
|
|
|
|
class AccessController extends Controller {
|
|
|
|
/**
|
|
* event handler
|
|
* @param \Base $f3
|
|
* @param $params
|
|
* @return bool
|
|
* @throws \Exception
|
|
*/
|
|
function beforeroute(\Base $f3, $params) : bool {
|
|
if($return = parent::beforeroute($f3, $params)){
|
|
// Any route/endpoint of a child class of this one,
|
|
// requires a valid logged in user!
|
|
if($this->isLoggedIn($f3) !== 'OK'){
|
|
// no character found or login timer expired
|
|
$this->logoutCharacter($f3);
|
|
// skip route handler and afterroute()
|
|
$return = false;
|
|
}
|
|
}
|
|
|
|
return $return;
|
|
}
|
|
|
|
/**
|
|
* check login status and look or a valid character
|
|
* @param \Base $f3
|
|
* @return string
|
|
* @throws \Exception
|
|
*/
|
|
protected function isLoggedIn(\Base $f3) : string {
|
|
$loginStatus = 'UNKNOWN';
|
|
// disable ttl cache time here. Further getCharacter() calls should use a short ttl
|
|
if($character = $this->getCharacter(0)){
|
|
if($character->checkLoginTimer()){
|
|
if(( $authStatus = $character->isAuthorized()) === 'OK'){
|
|
$loginStatus = 'OK';
|
|
}else{
|
|
$loginStatus = $authStatus;
|
|
}
|
|
}else{
|
|
$loginStatus = 'MAX LOGIN TIME EXCEEDED';
|
|
}
|
|
}else{
|
|
$loginStatus = 'NO SESSION FOUND';
|
|
}
|
|
|
|
// log character access status in debug mode
|
|
if(
|
|
$loginStatus !== 'OK' &&
|
|
$f3->get('DEBUG') === 3
|
|
){
|
|
self::getLogger('CHARACTER_ACCESS')->write(
|
|
sprintf(Pathfinder\CharacterModel::LOG_ACCESS,
|
|
$character->_id ,
|
|
$loginStatus,
|
|
$character->name
|
|
)
|
|
);
|
|
}
|
|
|
|
return $loginStatus;
|
|
}
|
|
|
|
/**
|
|
* broadcast MapModel to clients
|
|
* @see broadcastMapData()
|
|
* @param Pathfinder\MapModel $map
|
|
*/
|
|
protected function broadcastMap(Pathfinder\MapModel $map) : void {
|
|
$this->broadcastMapData($this->getFormattedMapData($map));
|
|
}
|
|
|
|
|
|
/**
|
|
* broadcast map data to clients
|
|
* -> send over TCP Socket
|
|
* @param array|null $mapData
|
|
*/
|
|
protected function broadcastMapData(?array $mapData) : void {
|
|
if(!empty($mapData)){
|
|
$this->getF3()->webSocket()->write('mapUpdate', $mapData);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* get formatted Map Data
|
|
* @param Pathfinder\MapModel $map
|
|
* @return array
|
|
* @throws \Exception
|
|
*/
|
|
|
|
/**
|
|
* @param Pathfinder\MapModel $map
|
|
* @return array|null
|
|
*/
|
|
protected function getFormattedMapData(Pathfinder\MapModel $map) : ?array {
|
|
$data = null;
|
|
try{
|
|
$mapData = $map->getData();
|
|
$data = [
|
|
'config' => $mapData->mapData,
|
|
'data' => [
|
|
'systems' => $mapData->systems,
|
|
'connections' => $mapData->connections,
|
|
]
|
|
];
|
|
}catch(\Exception $e){
|
|
|
|
}
|
|
|
|
return $data;
|
|
}
|
|
|
|
} |