TOP-framework/framework/library/route/driver/Command.php

117 lines
2.5 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace top\library\route\driver;
use top\library\route\ifs\RouteIfs;
/**
* 命令行模式
* Class Command
* @package top\library\route\driver
*/
class Command implements RouteIfs
{
/**
* 解析后的URI信息
* @var array
*/
private $uriArray = [];
/**
* 模块名
* @return mixed|string
*/
public function module()
{
if (isset($this->uriArray[0])) {
return $this->uriArray[0];
}
return 'home';
}
/**
* 完整控制器名
* @return mixed|string
*/
public function controllerFullName()
{
$className = '\\' . APP_NS . '\\' . $this->module() . '\\controller\\' . $this->controller();
return $className;
}
/**
* 控制器名
* @return string
*/
public function controller()
{
if (isset($this->uriArray[1])) {
return ucfirst($this->uriArray[1]);
}
return 'Index';
}
/**
* 方法名
* @return mixed|string
*/
public function method()
{
if (isset($this->uriArray[2])) {
return $this->uriArray[2];
}
return 'index';
}
/**
* 请求参数
* @return array
* @throws \ReflectionException
*/
public function params()
{
return $this->parseParam();
}
/**
* 解析请求参数
* @return array
* @throws \ReflectionException
*/
private function parseParam()
{
$array = array_slice($this->uriArray, 3);
// 查找当前方法存在的参数
$paramName = (new \ReflectionMethod($this->controllerFullName(), $this->method()))->getParameters();
$paramNameArray = [];
foreach ($paramName as $value) {
$paramNameArray[] = $value->name;
}
$param = [];
for ($i = 0; $i < count($array); $i++) {
if (isset($array[$i + 1]) && in_array($array[$i], $paramNameArray)) {
$_GET[$array[$i]] = $param[$array[$i]] = $array[$i + 1];
}
}
return $param;
}
/**
* 执行初始化解析URI为数组并返回当前对象
* @param $uri
* @return $this
*/
public function init($uri)
{
$options = getopt('u:');
if (isset($options['u']) && $options['u']) {
$this->uriArray = $options['u'] ? explode('/', $options['u']) : [];
} else {
$this->uriArray = [];
}
return $this;
}
}