A super easy PHP Framework for web development! https://github.com/exacti/phacil-framework
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

164 lines
3.9 KiB

<?php
/*
* Copyright © 2021 ExacTI Technology Solutions. All rights reserved.
* GPLv3 General License.
* https://exacti.com.br
* Phacil PHP Framework - https://github.com/exacti/phacil-framework
*/
namespace Phacil\Framework;
use Phacil\Framework\Interfaces\Front as frontInterface;
use Phacil\Framework\Registry;
/**
* @package Phacil\Framework
* @since 1.0.0
**/
class Front implements frontInterface {
/**
*
* @var Registry
*/
protected $registry;
protected $error;
protected $pre_action = [];
/**
*
* @var \Phacil\Framework\Api\PreActions
*/
private $pre_actions;
/**
*
* @param Registry $registry
* @return void
*/
public function __construct(Registry $registry, \Phacil\Framework\Api\PreActions $preActions) {
$this->registry = $registry;
$this->pre_actions = $preActions;
}
/**
* @param \Phacil\Framework\Interfaces\Action $pre_action
* @return $this
*/
public function addPreAction(\Phacil\Framework\Interfaces\Action $pre_action) {
$this->pre_action[] = $pre_action;
return $this;
}
/**
* @param Action $action
* @param string $error
* @return void
*/
public function dispatch(\Phacil\Framework\Interfaces\Action $action, $error) {
$this->error = $error;
try {
$this->registry->set('route', $action->getRoute());
foreach ($this->pre_actions->getHandlers() as $key => $pre_action) {
$result = $this->execute($pre_action);
$this->pre_actions->executedActionHandler($key);
if ($result && $result instanceof \Phacil\Framework\Interfaces\Action) {
return $this->dispatch($result, $error);
break;
}
}
if ($action) {
$this->execute($action);
}
} catch (\Exception $th) {
throw $th;
}
}
/**
* @param object $action
* @return \Phacil\Framework\Interfaces\Action|\Phacil\Framework\Interfaces\Controller|null
* @throws Exception
*/
private function execute(\Phacil\Framework\Interfaces\Action $action) {
$file = $action->getFile();
$class = $action->getClass();
$classAlt = $action->getClassAlt();
$method = $action->getMethod();
$args = $action->getArgs();
unset($action);
if ($file && file_exists($file)) {
require_once($file);
foreach($classAlt as $classController){
try {
if(class_exists($classController)){
$action = $this->callController($this->injectionClass($classController), $method, $args);
break;
}
} catch (\Phacil\Framework\Exception\Throwable $th) {
throw $th;
} catch (\Exception $e) {
throw ($e);
}
}
} elseif(!$file && isset($classAlt['class']) && !empty($classAlt['class']) && class_exists($classAlt['class'])) {
try {
$action = $this->callController($this->injectionClass($classAlt['class']), $method, $args);
} catch (\Phacil\Framework\Exception\Throwable $th) {
throw ($th);
} catch (\Exception $e) {
throw ($e);
}
}else {
$action = new Action($this->error);
$this->error = '';
}
return $action;
}
/**
*
* @param \Phacil\Framework\Interfaces\Controller $controller
* @return \Phacil\Framework\Interfaces\Controller|\Phacil\Framework\Interfaces\Action|null
* @throws \Phacil\Framework\Exception
*/
protected function callController(\Phacil\Framework\Interfaces\Controller $controller, $method, $args = array()) {
try {
//code...
if (is_callable(array($controller, $method))) {
$action = call_user_func_array(array($controller, $method), $args);
} else {
$action = new Action($this->error);
$this->error = '';
//throw new Exception("The controller can't be loaded", 1);
new Exception("PHACIL ERROR: Controller class " . get_class($controller) . "->" . $method . "() is not a callable function");
}
return $action;
} catch (\Exception $th) {
throw ($th);
//throw $th;
}
}
protected function injectionClass($class){
return $this->registry->getInstance($class);
}
}