diff --git a/README.md b/README.md index 1729840..35023b0 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # TOP-Framework -*这是一个部分代码源自三年前毕业设计中的代码集合,后经过一系列重构,形成的一套框架。在此准备写一个文档。* +*部分代码于四年前所写,后经过一系列重构,形成的一套框架。在此准备写一个文档。* ## 目录结构 遵循PSR-2规范的编码风格,遵循PSR-4自动加载规范。 @@ -20,7 +20,7 @@ -route 路由具体实现 -template 模板引擎具体实现 -...... 实际调用的类 - -middleware 面向控制器的中间件 + -middleware 默认中间件 -traits 通用trait -vendor composer加载的类库 -public 可访问公共资源 @@ -59,12 +59,6 @@ require '../framework/Framework.php'; // Framework::resourcePath('/resource/'); // 可使用常量RESOURCE取得该值 -// 当前入口文件默认模块,缺省值:home -// Framework::defaultModule('home'); - -// 路由模式,缺省值:1(pathinfo和兼容模式) -// Framework::runType(1); - Framework::appPath('../application/'); Framework::startApp(); ``` @@ -120,6 +114,7 @@ class Index 4. view($file = '', $param = [], $cache = false) 显示模板(得到模板文件渲染后的内容)。 +此外,控制器方法中可以使用view函数完成相同操作。 5. redirect($url) @@ -137,16 +132,29 @@ public function index() ``` 调用基础控制器中的view方法、并return出去,完成模板的展示。 ### 模板传值 -1. view方法 +1. view方法/view函数 ``` public function index() { return $this->view(null, [ 'param' => 'Hello world!' ]); + return view(null, [ + 'param' => 'Hello world!' + ]); } ``` -2. 直接return数组 +2. view_param函数 +``` +public function index() +{ + view_param([ + 'param' => 'Hello world!', + ]); + return $this->view(); +} +``` +3. 直接return数组 ``` public function index() { @@ -430,7 +438,7 @@ class 模型名称 extends Model 成功返回受影响的记录数,失败抛出DatabaseException异常。 -4. update($data, [$param = false]) +4. update($data, $param = false) 更新一条记录 第一个参数为即将更新的数据,可传入第二个参数为主键。 @@ -870,6 +878,12 @@ $data = $cache->get('text', function ($cache) { ## 路由 路由配置文件位于 application 下,文件名:route.php + +使用方法: +``` +规则名称 => [访问位置, 参数, 执行的中间件, 不执行的中间件] +``` + 现有News控制器中的detail方法 ``` public function detail($id) @@ -883,10 +897,7 @@ public function detail($id) ### 必须参数 添加如下规则 ``` -'detail' => [ - '[id]', - 'home/news/detail' -] +'detail' => ['home/news/detail', 'id'] ``` 完成后,可使用 http://127.0.0.1/detail/1.html 访问到对应位置。 ### 可选参数 @@ -901,18 +912,12 @@ public function detail($id = 0) ``` 添加路由规则 ``` -'detail' => [ - '[:id]', - 'home/news/detail' -] +'detail' => ['home/news/detail', '?id'] ``` 完成后,可使用 http://127.0.0.1/detail.html 访问到对应位置,如果没传递id,则使用默认值。 ### 多个参数 ``` -'detail' => [ - '[id][:type]', - 'home/news/detail' -] +'detail' => ['home/news/detail', 'id,?type'] ``` ## 其他 @@ -1054,7 +1059,7 @@ request(); 当前请求的模型名称 -12. classname +12. controllerFullName 当前请求的完整控制器名称 @@ -1095,7 +1100,13 @@ request()->get('id', ['type'], function ($value) { 使用同get方法 -18. except +18. header + +获取请求中header数据 + +使用同get方法 + +19. except 指定过滤的变量 @@ -1128,33 +1139,31 @@ readfile($filename); ``` 使用header方法设置响应头,接下来使用readfile函数将文件内容读取到缓冲区,这样输出时将下载demo.zip文件。或者直接使用header函数设置响应头也是可行的。 -### 面向控制器的前置、后置方法(请求拦截) -创建application/home/filter/Auth.php测试文件 +### 中间件 +创建application/home/middleware/Auth.php测试文件 ``` -namespace app\home\filter; +namespace app\home\middleware; use top\middleware\ifs\MiddlewareIfs; class Auth implements MiddlewareIfs { - public function before() + public function handler(\Closure $next) { - return '拒绝请求'; - } - - public function after($data) - { - // TODO: Implement after() method. + if (true) { + return '拒绝请求'; + } + return $next(); } } ``` 创建完成后,加入配置 ``` 'middleware' => [ - \app\home\filter\Auth::class + \app\home\middleware\Auth::class ], ``` -现在,访问项目则会得到 ' 拒绝请求 ' 结果。仅当before方法return的值为true时,程序才会继续执行,否则return等效于控制器方法的return。 +现在,访问项目则会得到 ' 拒绝请求 ' 结果。 ### 配置文件 以home模块为例,文件位置 'application/home/config/config.php'。此外还存在一个默认配置文件,文件位置 'framework/config/config.php',如果用户存在同名配置,将会执行merge操作。 diff --git a/composer.json b/composer.json index 381ae56..8795611 100644 --- a/composer.json +++ b/composer.json @@ -9,8 +9,6 @@ } }, "require": { - "filp/whoops": "2.2", - "twig/twig": "2.9", - "smarty/smarty": "3.1.19" + "firebase/php-jwt": "^5.0" } } diff --git a/composer.lock b/composer.lock index 56e4b54..785c15f 100644 --- a/composer.lock +++ b/composer.lock @@ -4,324 +4,32 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "b4062a2339b3d06b488764da6961940c", + "content-hash": "591be91ec1f1bc729042a4077e329da3", "packages": [ { - "name": "filp/whoops", - "version": "2.2.0", + "name": "firebase/php-jwt", + "version": "v5.0.0", "source": { "type": "git", - "url": "https://github.com/filp/whoops.git", - "reference": "181c4502d8f34db7aed7bfe88d4f87875b8e947a" + "url": "https://github.com/firebase/php-jwt.git", + "reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filp/whoops/zipball/181c4502d8f34db7aed7bfe88d4f87875b8e947a", - "reference": "181c4502d8f34db7aed7bfe88d4f87875b8e947a", - "shasum": "" - }, - "require": { - "php": "^5.5.9 || ^7.0", - "psr/log": "^1.0.1" - }, - "require-dev": { - "mockery/mockery": "^0.9 || ^1.0", - "phpunit/phpunit": "^4.8.35 || ^5.7", - "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0" - }, - "suggest": { - "symfony/var-dumper": "Pretty print complex values better with var-dumper available", - "whoops/soap": "Formats errors as SOAP responses" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.1-dev" - } - }, - "autoload": { - "psr-4": { - "Whoops\\": "src/Whoops/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Filipe Dobreira", - "homepage": "https://github.com/filp", - "role": "Developer" - } - ], - "description": "php error handling for cool kids", - "homepage": "https://filp.github.io/whoops/", - "keywords": [ - "error", - "exception", - "handling", - "library", - "throwable", - "whoops" - ], - "time": "2018-03-03T17:56:25+00:00" - }, - { - "name": "psr/log", - "version": "1.1.0", - "source": { - "type": "git", - "url": "https://github.com/php-fig/log.git", - "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd", - "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd", + "url": "https://api.github.com/repos/firebase/php-jwt/zipball/9984a4d3a32ae7673d6971ea00bae9d0a1abba0e", + "reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e", "shasum": "" }, "require": { "php": ">=5.3.0" }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Psr\\Log\\": "Psr/Log/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" - } - ], - "description": "Common interface for logging libraries", - "homepage": "https://github.com/php-fig/log", - "keywords": [ - "log", - "psr", - "psr-3" - ], - "time": "2018-11-20T15:27:04+00:00" - }, - { - "name": "smarty/smarty", - "version": "v3.1.19", - "source": { - "type": "git", - "url": "https://github.com/smarty-php/smarty.git", - "reference": "be0fd3186ceec57e4da9a44031f517c06ae2418a" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/smarty-php/smarty/zipball/be0fd3186ceec57e4da9a44031f517c06ae2418a", - "reference": "be0fd3186ceec57e4da9a44031f517c06ae2418a", - "shasum": "" - }, - "require": { - "php": ">=5.2" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.1.x-dev" - } - }, - "autoload": { - "classmap": [ - "libs/Smarty.class.php", - "libs/SmartyBC.class.php", - "libs/sysplugins/smarty_security.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "LGPL-3.0" - ], - "authors": [ - { - "name": "Monte Ohrt", - "email": "monte@ohrt.com" - }, - { - "name": "Uwe Tews", - "email": "uwe.tews@googlemail.com" - }, - { - "name": "Rodney Rehm", - "email": "rodney.rehm@medialize.de" - } - ], - "description": "Smarty - the compiling PHP template engine", - "homepage": "http://www.smarty.net", - "keywords": [ - "templating" - ], - "time": "2014-10-31T01:29:14+00:00" - }, - { - "name": "symfony/polyfill-ctype", - "version": "v1.11.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "82ebae02209c21113908c229e9883c419720738a" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/82ebae02209c21113908c229e9883c419720738a", - "reference": "82ebae02209c21113908c229e9883c419720738a", - "shasum": "" - }, - "require": { - "php": ">=5.3.3" - }, - "suggest": { - "ext-ctype": "For best performance" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.11-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Ctype\\": "" - }, - "files": [ - "bootstrap.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - }, - { - "name": "Gert de Pagter", - "email": "BackEndTea@gmail.com" - } - ], - "description": "Symfony polyfill for ctype functions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "ctype", - "polyfill", - "portable" - ], - "time": "2019-02-06T07:57:58+00:00" - }, - { - "name": "symfony/polyfill-mbstring", - "version": "v1.11.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "fe5e94c604826c35a32fa832f35bd036b6799609" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fe5e94c604826c35a32fa832f35bd036b6799609", - "reference": "fe5e94c604826c35a32fa832f35bd036b6799609", - "shasum": "" - }, - "require": { - "php": ">=5.3.3" - }, - "suggest": { - "ext-mbstring": "For best performance" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.11-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Mbstring\\": "" - }, - "files": [ - "bootstrap.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill for the Mbstring extension", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "mbstring", - "polyfill", - "portable", - "shim" - ], - "time": "2019-02-06T07:57:58+00:00" - }, - { - "name": "twig/twig", - "version": "v2.9.0", - "source": { - "type": "git", - "url": "https://github.com/twigphp/Twig.git", - "reference": "82a1c055c8ed4c4705023bfd0405f3c74db6e3ae" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/82a1c055c8ed4c4705023bfd0405f3c74db6e3ae", - "reference": "82a1c055c8ed4c4705023bfd0405f3c74db6e3ae", - "shasum": "" - }, - "require": { - "php": "^7.0", - "symfony/polyfill-ctype": "^1.8", - "symfony/polyfill-mbstring": "^1.3" - }, "require-dev": { - "psr/container": "^1.0", - "symfony/debug": "^2.7", - "symfony/phpunit-bridge": "^3.4.19|^4.1.8" + "phpunit/phpunit": " 4.8.35" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.9-dev" - } - }, "autoload": { - "psr-0": { - "Twig_": "lib/" - }, "psr-4": { - "Twig\\": "src/" + "Firebase\\JWT\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -330,28 +38,19 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com", - "homepage": "http://fabien.potencier.org", - "role": "Lead Developer" + "name": "Neuman Vong", + "email": "neuman+pear@twilio.com", + "role": "Developer" }, { - "name": "Armin Ronacher", - "email": "armin.ronacher@active-4.com", - "role": "Project Founder" - }, - { - "name": "Twig Team", - "homepage": "https://twig.symfony.com/contributors", - "role": "Contributors" + "name": "Anant Narayanan", + "email": "anant@php.net", + "role": "Developer" } ], - "description": "Twig, the flexible, fast, and secure template language for PHP", - "homepage": "https://twig.symfony.com", - "keywords": [ - "templating" - ], - "time": "2019-04-28T06:57:38+00:00" + "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.", + "homepage": "https://github.com/firebase/php-jwt", + "time": "2017-06-27T22:17:23+00:00" } ], "packages-dev": [], diff --git a/framework/Framework.php b/framework/Framework.php index bb7e23e..19b2350 100644 --- a/framework/Framework.php +++ b/framework/Framework.php @@ -15,19 +15,12 @@ use top\library\App; class Framework { - // 程序运行方式 - private static $type = 1; - - // 默认访问模块 - private static $defaultModule = 'home'; - /** * 框架入口 * @param string $callable */ public static function startApp($callable = '') { - header('content-type: text/html; charset=utf-8'); if (is_callable($callable)) { $callable(self::class); @@ -46,7 +39,7 @@ class Framework self::sessionPath(); require 'library/App.php'; - App::run(self::$type, self::$defaultModule); + App::run(); } else { echo '请使用Framework::appPath()指定应用目录'; } @@ -135,21 +128,4 @@ class Framework } } - /** - * 指定默认访问位置 - * @param string $module - */ - public static function defaultModule($module) - { - self::$defaultModule = $module; - } - - /** - * 指定程序运行方式 - * @param int $type - */ - public static function runType($type) - { - self::$type = $type; - } } diff --git a/framework/config/config.php b/framework/config/config.php index 748f5d0..4820e82 100644 --- a/framework/config/config.php +++ b/framework/config/config.php @@ -5,7 +5,10 @@ return [ 'register' => [ 'Top' => \top\library\template\driver\Top::class, ], - 'middleware' => [], + 'middleware' => [ + \top\middleware\Init::class, + \top\middleware\View::class, + ], 'session' => [ 'open' => false, 'prefix' => '', diff --git a/framework/extend/JWT.php b/framework/extend/JWT.php new file mode 100644 index 0000000..79b6428 --- /dev/null +++ b/framework/extend/JWT.php @@ -0,0 +1,93 @@ +config = Config::instance()->get('jwt'); + if (isset($this->config['key'])) { + $this->key = $this->config['key']; + } else { + throw new \Exception('加密key参数必须'); + } + } + + /** + * 设置附加数据 + * @param $key + * @param $value + * @return $this + */ + public function setData($key, $value) + { + $this->data[$key] = $value; + return $this; + } + + /** + * 设置Token有效期 + * @param $sec + * @return $this + */ + public function exp($sec) + { + $this->exp = $sec; + return $this; + } + + /** + * 获取Token + * @return string + */ + public function token() + { + $time = time(); + $data = array_merge([ + 'iss' => $this->config['iss'], + 'aud' => $this->config['aud'], + 'iat' => $time, + 'nbf' => $time, + 'exp' => $time + $this->exp, + ], $this->data); + return $token = \Firebase\JWT\JWT::encode($data, $this->key, 'HS256'); + } + + /** + * 解析Token + * @param $jwt + * @return object + */ + public function decode($jwt) + { + return $result = \Firebase\JWT\JWT::decode($jwt, $this->key, ['HS256']); + } +} diff --git a/framework/extend/Page.php b/framework/extend/Page.php index 5279fe3..ba862a7 100644 --- a/framework/extend/Page.php +++ b/framework/extend/Page.php @@ -2,7 +2,6 @@ namespace top\extend; - /** * 分页类 * @author topnuomi 2018年11月28日 @@ -77,7 +76,11 @@ class Page // 链接没有匹配&或?,配置了伪静态也就无所谓了 $html = '
'; - print_r($value); - echo ''; -} - -/** - * var_dump - * @param array|string|int|object $value - */ -function v($value) -{ - echo '
'; - var_dump($value); - echo ''; -} - /** * 拼接链接(暂时先这样 * @param string $url * @param string|int $param * @return string */ -function u($url, $param = '') +function url($url, $param = '') { if (!empty($param) || is_numeric($param)) { if (is_array($param)) { @@ -85,6 +90,37 @@ function u($url, $param = '') return '/' . $url . $param . '.html'; } +/** + * 设置视图缓存时间 + * @param $sec + */ +function view_cache($sec) +{ + \top\library\View::instance()->cache($sec); +} + +/** + * 参数传递 + * @param $name + * @param $value + */ +function view_param($name, $value) +{ + \top\library\View::instance()->param($name, $value); +} + +/** + * 显示视图 + * @param string $file + * @param array $param + * @param bool $cache + * @return mixed + */ +function view($file = '', $param = [], $cache = false) +{ + return \top\library\View::instance()->fetch($file, $param, $cache); +} + /** * 获取表名 * @param $classname @@ -174,11 +210,17 @@ function get_client_ip($type = 0, $client = true) /** * 页面跳转 * @param $url + * @return false|string */ function redirect($url) { - header('location: ' . u($url)); - exit; + if (request()->isAjax()) { + return json_encode([ + 'redirect' => $url, + ]); + } else { + header('location: ' . $url); + } } /** diff --git a/framework/library/http/Request.php b/framework/library/http/Request.php index 6671916..0c97f08 100644 --- a/framework/library/http/Request.php +++ b/framework/library/http/Request.php @@ -2,13 +2,7 @@ namespace top\library\http; -use top\library\Config; -use top\middleware\ifs\MiddlewareIfs; -use top\middleware\Init; -use top\library\route\driver\Command; -use top\library\route\driver\Pathinfo; -use top\library\Router; -use top\middleware\View; +use top\library\exception\RouteException; use top\traits\Instance; /** @@ -38,30 +32,6 @@ class Request */ private $router = null; - /** - * 模块名 - * @var string - */ - private $module = ''; - - /** - * 控制器完整类名 - * @var string - */ - private $class = ''; - - /** - * 控制器名 - * @var string - */ - private $ctrl = ''; - - /** - * 请求参数 - * @var array - */ - private $params = []; - /** * post、get数据删除的值 * @var array @@ -179,15 +149,11 @@ class Request /** * 当前请求的URI - * @param bool $raw * @return mixed */ - public function uri($raw = false) + public function uri() { - if ($raw) { - return $this->router->rawUri; - } - return $this->router->uri; + return $this->router->uri(); } /** @@ -196,16 +162,16 @@ class Request */ public function module() { - return $this->router->module; + return $this->router->module(); } /** * 控制器完整类名 * @return mixed */ - public function className() + public function controllerFullName() { - return $this->router->class; + return $this->router->controllerFullName(); } /** @@ -214,7 +180,7 @@ class Request */ public function controller() { - return $this->router->ctrl; + return $this->router->controller(); } /** @@ -223,7 +189,7 @@ class Request */ public function method() { - return $this->router->method; + return $this->router->method(); } /** @@ -232,7 +198,7 @@ class Request */ public function params() { - return $this->router->params; + return $this->router->params(); } /** @@ -250,6 +216,23 @@ class Request return $this; } + /** + * 请求的header数据 + * @param string $key + * @return array|false|null + */ + public function header($key = '*') + { + $headers = get_header(); + if ($key == '*') { + return $headers; + } elseif ($key && isset($headers[$key])) { + return $headers[$key]; + } else { + return null; + } + } + /** * GET数据 * @param string $name @@ -316,107 +299,34 @@ class Request } /** - * 设置中间件 - * @param MiddlewareIfs $middleware + * 指定路由 + * @param $router + * @return $this */ - private function middleware(MiddlewareIfs $middleware) + public function setRoute($router) { - $this->middleware[] = $middleware; - } - - /** - * 中间件前置方法 - */ - private function beforeRoute() - { - foreach ($this->middleware as $middleware) { - $returnData = $middleware->before(); - if ($returnData !== true) { - return $returnData; - } - unset($returnData); - } - return true; - } - - /** - * 中间件后置方法 - * @param $data - */ - private function afterRoute($data) - { - $this->middleware = array_reverse($this->middleware); - foreach ($this->middleware as $middleware) { - $middleware->after($data); - } - } - - /** - * 指定路由驱动 - * @param $type - * @return string|Command|Pathinfo - */ - private function routeDriver($type) - { - $routeDriver = ''; - if (php_sapi_name() == 'cli') { - // 命令行运行程序 - $routeDriver = new Command(); - } else { - // 其他方式 - switch ($type) { - case 1: - $routeDriver = new Pathinfo(); - break; - default: - // 其他 - } - } - return $routeDriver; + $this->router = $router; + return $this; } /** * 设置路由并执行程序 - * @param $type - * @param $defaultModule * @return mixed - * @throws \top\library\exception\RouteException */ - public function execute($type, $defaultModule) + public function execute() { - // 实例化路由,并执行对应方法 - $routeDriver = $this->routeDriver($type); - $this->router = (new Router($routeDriver, $defaultModule))->handler(); + $this->check(); - $userMiddleware = Config::instance()->get('middleware'); - $systemMiddleware = [Init::class, View::class]; + // 将执行应用打包为$application + $application = function () { - $middleware = array_merge($systemMiddleware, $userMiddleware); - foreach ($middleware as $key => $value) { - $this->middleware(new $value()); - } - - $data = $this->runAction(); - return $data; - } - - /** - * 调用对应方法 - * @return mixed - * @throws \ReflectionException - */ - private function runAction() - { - $middlewareData = $this->beforeRoute(); - - if ($middlewareData === true) { - $ctrl = $this->router->class; - $method = $this->router->method; - $params = $this->router->params; + $controllerFullName = $this->controllerFullName(); + $method = $this->method(); + $params = $this->params(); $data = null; - $object = new $ctrl(); - $reflectionClass = new \ReflectionClass($ctrl); + $object = new $controllerFullName(); + $reflectionClass = new \ReflectionClass($controllerFullName); if ($reflectionClass->hasMethod('_init')) { $data = $object->_init(); } @@ -430,7 +340,7 @@ class Request } if ($beforeReturnData === null || $beforeReturnData === '' || $beforeReturnData === true) { - $reflectionMethod = new \ReflectionMethod($ctrl, $method); + $reflectionMethod = new \ReflectionMethod($controllerFullName, $method); $data = $reflectionMethod->invokeArgs($object, $params); // 后置方法 @@ -442,16 +352,35 @@ class Request $data = $beforeReturnData; } } - } else { - $data = $middlewareData; + return $data; + }; + + // 由路由中间件去处理application,并返回结果 + return $this->router->middleware($application); + } + + /** + * 执行必要检查 + * @throws RouteException + */ + private function check() + { + // 检查模块是否存在 + if (!is_dir(APP_PATH . $this->module())) { + throw new RouteException('模块' . $this->module() . '不存在'); + } + // 检查控制器是否存在 + if (!class_exists($this->controllerFullName())) { + throw new RouteException('控制器' . $this->controllerFullName() . '不存在'); + } + // 检查方法在控制器中是否存在 + if (!in_array($this->method(), get_class_methods($this->controllerFullName()))) { + throw new RouteException('方法' . $this->method() . '在控制器' . $this->controller() . '中不存在'); } - - $this->afterRoute($data); - - return $data; } public function __destruct() { + } } diff --git a/framework/library/http/Response.php b/framework/library/http/Response.php index ed34a6e..783a846 100644 --- a/framework/library/http/Response.php +++ b/framework/library/http/Response.php @@ -63,4 +63,4 @@ class Response } } -} \ No newline at end of file +} diff --git a/framework/library/http/response/ResponseData.php b/framework/library/http/response/ResponseData.php index 87b75c7..1619d57 100644 --- a/framework/library/http/response/ResponseData.php +++ b/framework/library/http/response/ResponseData.php @@ -22,7 +22,7 @@ class ResponseData public function __construct($data) { - if (DEBUG === false) { + if (DEBUG === false && php_sapi_name() != 'cli') { ob_clean(); } $this->data = $this->checkData($data); @@ -68,4 +68,4 @@ class ResponseData { return $this->data; } -} \ No newline at end of file +} diff --git a/framework/library/route/driver/Command.php b/framework/library/route/driver/Command.php index 763314c..ffd2d56 100644 --- a/framework/library/route/driver/Command.php +++ b/framework/library/route/driver/Command.php @@ -4,70 +4,113 @@ namespace top\library\route\driver; use top\library\route\ifs\RouteIfs; +/** + * 命令行模式 + * Class Command + * @package top\library\route\driver + */ class Command implements RouteIfs { - // 模块 - public $module = ''; - - // 类名 - public $class = ''; - - // 控制器 - public $ctrl = ''; - - // 方法 - public $method = ''; - - // 参数 - public $params = []; - /** - * 暂时就这样吧(逃... + * 解析后的URI信息 + * @var array */ - public function processing() - { - // TODO Auto-generated method stub - $this->module = $this->module(); - $this->ctrl = $this->ctrl(); - $this->class = '\\' . APP_NS . '\\' . $this->module . '\\controller\\' . $this->ctrl; - $this->method = $this->method(); - $this->params = $this->params(); - } + private $uriArray = []; /** - * + * 模块名 + * @return mixed|string */ public function module() { - // TODO Auto-generated method stub + if (isset($this->uriArray[0])) { + return $this->uriArray[0]; + } return 'home'; } /** - * + * 完整控制器名 + * @return mixed|string */ - public function ctrl() + public function controllerFullName() { - // TODO Auto-generated method stub + $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() { - // TODO Auto-generated method stub + if (isset($this->uriArray[2])) { + return $this->uriArray[2]; + } return 'index'; } /** - * + * 请求参数 + * @return array + * @throws \ReflectionException */ public function params() { - // TODO Auto-generated method stub - return []; + 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; + } + } diff --git a/framework/library/route/driver/Compatible.php b/framework/library/route/driver/Compatible.php new file mode 100644 index 0000000..435e4bf --- /dev/null +++ b/framework/library/route/driver/Compatible.php @@ -0,0 +1,110 @@ +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) + { + $this->uriArray = $uri ? explode('/', $uri) : []; + return $this; + } + +} diff --git a/framework/library/route/driver/Pathinfo.php b/framework/library/route/driver/Pathinfo.php deleted file mode 100644 index 31f76fd..0000000 --- a/framework/library/route/driver/Pathinfo.php +++ /dev/null @@ -1,210 +0,0 @@ -uriArray[0]) && $this->uriArray[0]) { - // 模块名小写 - return strtolower($this->uriArray[0]); - } - return 'home'; - } - - /** - * 控制器名 - * @return string - */ - public function ctrl() - { - if (isset($this->uriArray[1]) && $this->uriArray[1]) { - // 类名首字母大写 - return ucfirst($this->uriArray[1]); - } - return 'Index'; - } - - /** - * 具体执行的方法名 - * @return mixed|string - */ - public function method() - { - if (isset($this->uriArray[2]) && $this->uriArray[2]) { - return $this->uriArray[2]; - } - return 'index'; - } - - /** - * 取出参数 - * @return array - * @throws \ReflectionException - */ - public function params() - { - unset($this->uriArray[0], $this->uriArray[1], $this->uriArray[2]); - $this->uriArray = array_merge($this->uriArray, []); - if (!empty($this->uriArray) && class_exists($this->class)) { - $paramName = (new \ReflectionMethod($this->class, $this->method))->getParameters(); - $paramNameArray = []; - for ($i = 0; $i < count($paramName); $i++) { - $paramNameArray[$paramName[$i]->name] = ''; - } - $params = []; - for ($i = 0; $i < count($this->uriArray); $i = $i + 2) { - if (isset($this->uriArray[$i + 1]) && $this->uriArray[$i + 1] != '') { - $_GET[$this->uriArray[$i]] = $this->uriArray[$i + 1]; - if (isset($paramNameArray[$this->uriArray[$i]])) { - $params[$this->uriArray[$i]] = $this->uriArray[$i + 1]; - } - } - } - unset($paramName, $paramNameArray); - return $params; - } - return []; - } - - /** - * 处理URI - * @return mixed|string - */ - private function getUri() - { - if (isset($_SERVER['PATH_INFO'])) { - $pathinfo = ltrim($_SERVER['PATH_INFO'], '/'); - $uri = ($pathinfo != '') ? $pathinfo : $this->default; - } else { - $uri = isset($_GET['s']) ? ltrim($_GET['s'], '/') : $this->default; - unset($_GET['s']); - } - $uri = str_replace('.html', '', $uri); - $this->rawUri = $uri; - $paramArray = explode('/', $uri); - $name = $paramArray[0]; - $file = APP_PATH . 'route.php'; - if (file_exists($file)) { - $routeConfig = require $file; - if (isset($routeConfig[$name])) { - unset($paramArray[0]); - $paramArray = array_merge($paramArray, []); - $params = $routeConfig[$name][0]; - preg_match_all('#\[(.*?)\]#', $params, $needParams); - if (empty($needParams[1])) { - $uri = $routeConfig[$name][1]; - } else { - $uri = trim($routeConfig[$name][1], '/'); - } - foreach ($needParams[1] as $key => $value) { - // 如果有可选参数且可选参数为空,则跳出本次循环 - if (strstr($value, ':') && (!isset($paramArray[$key]) || $paramArray[$key] == '')) { - continue; - } - $value = str_replace(':', '', $value); - $uri .= '/' . $value . '/' . $paramArray[$key]; - } - } - } - $this->uri = $uri; - unset($paramArray, $name); - return $uri; - } - - /** - * 根据URI得到带参数的数组 - * @return array - */ - private function processUriArray() - { - return explode('/', $this->getUri()); - } - - /** - * 赋值解析出的数据 - * @throws \ReflectionException - */ - public function processing() - { - $this->uriArray = $this->processUriArray(); - $this->module = $this->module(); - $this->ctrl = $this->ctrl(); - $this->class = '\\' . APP_NS . '\\' . $this->module . '\\controller\\' . $this->ctrl; - $this->method = $this->method(); - $this->params = $this->params(); - unset($this->uriArray); - } -} diff --git a/framework/library/route/ifs/RouteIfs.php b/framework/library/route/ifs/RouteIfs.php index 1964f3a..1c75e3f 100644 --- a/framework/library/route/ifs/RouteIfs.php +++ b/framework/library/route/ifs/RouteIfs.php @@ -10,27 +10,39 @@ interface RouteIfs { /** - * 处理路由 - */ - public function processing(); - - /** - * 模块 + * 模块名 + * @return mixed */ public function module(); /** - * 控制器 + * 完整控制器名 + * @return mixed */ - public function ctrl(); + public function controllerFullName(); /** - * 方法 + * 控制器名 + * @return mixed + */ + public function controller(); + + /** + * 方法名 + * @return mixed */ public function method(); /** - * 解析参数 + * 参数 + * @return mixed */ public function params(); + + /** + * 初始化路由 + * @param $uri + * @return mixed + */ + public function init($uri); } diff --git a/framework/library/template/driver/engine/Engine.php b/framework/library/template/driver/engine/Engine.php index d4e94b4..3cea905 100644 --- a/framework/library/template/driver/engine/Engine.php +++ b/framework/library/template/driver/engine/Engine.php @@ -176,6 +176,8 @@ class Engine $replace[] = ''; } elseif ($start == ':') { $replace[] = ''; + } elseif ($start == '@') { + $replace[] = ''; } else { $replace[] = $matches[0][$i]; } @@ -326,7 +328,7 @@ class Engine private function getAttr($string, $tags = []) { $attr = []; - $attrPattern = '/[ +](.*?)=[\'"](.*?)[\'"]/is'; + $attrPattern = '/[ +](.*?)=["](.*?)["]/is'; preg_match_all($attrPattern, $string, $result); if (isset($result[0]) && !empty($result[0])) { foreach ($result[1] as $key => $value) { diff --git a/framework/middleware/Init.php b/framework/middleware/Init.php index 4649f5b..c416063 100644 --- a/framework/middleware/Init.php +++ b/framework/middleware/Init.php @@ -2,67 +2,20 @@ namespace top\middleware; -use top\library\Config; use top\middleware\ifs\MiddlewareIfs; -use top\library\Register; -use top\library\View; /** - * 初始化 + * 默认中间件 * * @author topnuomi 2018年11月20日 */ class Init implements MiddlewareIfs { - - /** - * 注册一些可能会用到的类 - * @throws \Exception - */ - public function before() - { - // 加载系统函数库 - require FRAMEWORK_PATH . 'library/functions/functions.php'; - - // 加载用户函数库 - $funcFile = APP_PATH . request()->module() . '/functions.php'; - if (file_exists($funcFile)) { - require $funcFile; - } - - $configInstance = Config::instance(); - - $sessionConfig = $configInstance->get('session'); - if (!empty($sessionConfig) && $sessionConfig['open'] === true) { - session_save_path(SESSION_PATH); - session_start(); - } - - // 数据库驱动 - $config = $configInstance->get('db'); - $driver = $config['driver'] ? $config['driver'] : 'MySQLi'; - Register::set('DBDriver', function () use ($driver) { - $class = '\\top\\library\\database\\driver\\' . $driver; - return $class::instance(); - }); - - // 配置文件中配置的注册 - $initRegister = $configInstance->get('register'); - if (!empty($initRegister)) { - foreach ($initRegister as $key => $value) { - Register::set($key, function () use ($value) { - return $value::instance(); - }); - } - } - - return true; - } - - /** - * @param array $data - */ - public function after($data) + public function handler(\Closure $next) { + // echo '应用开始'; + $closure = $next(); + // echo '应用结束'; + return $closure; } } diff --git a/framework/middleware/View.php b/framework/middleware/View.php index 5eda809..ebae4d5 100644 --- a/framework/middleware/View.php +++ b/framework/middleware/View.php @@ -10,7 +10,7 @@ use top\middleware\ifs\MiddlewareIfs; class View implements MiddlewareIfs { - public function before() + public function handler(\Closure $next) { if (!DEBUG) { $ident = viewCacheIdent(); @@ -22,12 +22,7 @@ class View implements MiddlewareIfs return Response::instance()->dispatch($content); } } - return true; + return $next(); } - public function after($data) - { - // TODO: Implement after() method. - } - -} \ No newline at end of file +} diff --git a/framework/middleware/ifs/MiddlewareIfs.php b/framework/middleware/ifs/MiddlewareIfs.php index 73cf690..64a3709 100644 --- a/framework/middleware/ifs/MiddlewareIfs.php +++ b/framework/middleware/ifs/MiddlewareIfs.php @@ -3,21 +3,11 @@ namespace top\middleware\ifs; /** - * 默认装饰器接口 + * 中间件接口 * * @author topnuomi 2018年11月22日 */ interface MiddlewareIfs { - - /** - * 前置操作 - */ - public function before(); - - /** - * 后置操作 - * @param array $data - */ - public function after($data); + public function handler(\Closure $next); } diff --git a/framework/traits/Json.php b/framework/traits/Json.php index fb6b6c9..c1e2108 100644 --- a/framework/traits/Json.php +++ b/framework/traits/Json.php @@ -12,7 +12,7 @@ trait Json { return json_encode([ 'msg' => $msg, 'code' => $code, - 'data' => $data + 'data' => $data, ]); } } diff --git a/framework/vendor/autoload.php b/framework/vendor/autoload.php index 8442406..e831a7f 100644 --- a/framework/vendor/autoload.php +++ b/framework/vendor/autoload.php @@ -4,4 +4,4 @@ require_once __DIR__ . '/composer/autoload_real.php'; -return ComposerAutoloaderInitbf9b224cfc3165ead4e48be673284a7f::getLoader(); +return ComposerAutoloaderInit7b44678ec2aea793416a22dbbbba76ef::getLoader(); diff --git a/framework/vendor/composer/autoload_classmap.php b/framework/vendor/composer/autoload_classmap.php index e60c6b7..71dd9c1 100644 --- a/framework/vendor/composer/autoload_classmap.php +++ b/framework/vendor/composer/autoload_classmap.php @@ -6,9 +6,4 @@ $vendorDir = dirname(dirname(__FILE__)); $baseDir = dirname(dirname($vendorDir)); return array( - 'Smarty' => $vendorDir . '/smarty/smarty/libs/Smarty.class.php', - 'SmartyBC' => $vendorDir . '/smarty/smarty/libs/SmartyBC.class.php', - 'SmartyCompilerException' => $vendorDir . '/smarty/smarty/libs/Smarty.class.php', - 'SmartyException' => $vendorDir . '/smarty/smarty/libs/Smarty.class.php', - 'Smarty_Security' => $vendorDir . '/smarty/smarty/libs/sysplugins/smarty_security.php', ); diff --git a/framework/vendor/composer/autoload_files.php b/framework/vendor/composer/autoload_files.php deleted file mode 100644 index 480f00c..0000000 --- a/framework/vendor/composer/autoload_files.php +++ /dev/null @@ -1,11 +0,0 @@ - $vendorDir . '/symfony/polyfill-ctype/bootstrap.php', - '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php', -); diff --git a/framework/vendor/composer/autoload_namespaces.php b/framework/vendor/composer/autoload_namespaces.php index b76e4ba..4a9c20b 100644 --- a/framework/vendor/composer/autoload_namespaces.php +++ b/framework/vendor/composer/autoload_namespaces.php @@ -6,5 +6,4 @@ $vendorDir = dirname(dirname(__FILE__)); $baseDir = dirname(dirname($vendorDir)); return array( - 'Twig_' => array($vendorDir . '/twig/twig/lib'), ); diff --git a/framework/vendor/composer/autoload_psr4.php b/framework/vendor/composer/autoload_psr4.php index 0e0644c..91d582b 100644 --- a/framework/vendor/composer/autoload_psr4.php +++ b/framework/vendor/composer/autoload_psr4.php @@ -6,9 +6,5 @@ $vendorDir = dirname(dirname(__FILE__)); $baseDir = dirname(dirname($vendorDir)); return array( - 'Whoops\\' => array($vendorDir . '/filp/whoops/src/Whoops'), - 'Twig\\' => array($vendorDir . '/twig/twig/src'), - 'Symfony\\Polyfill\\Mbstring\\' => array($vendorDir . '/symfony/polyfill-mbstring'), - 'Symfony\\Polyfill\\Ctype\\' => array($vendorDir . '/symfony/polyfill-ctype'), - 'Psr\\Log\\' => array($vendorDir . '/psr/log/Psr/Log'), + 'Firebase\\JWT\\' => array($vendorDir . '/firebase/php-jwt/src'), ); diff --git a/framework/vendor/composer/autoload_real.php b/framework/vendor/composer/autoload_real.php index 0b2b4dd..f6483b9 100644 --- a/framework/vendor/composer/autoload_real.php +++ b/framework/vendor/composer/autoload_real.php @@ -2,7 +2,7 @@ // autoload_real.php @generated by Composer -class ComposerAutoloaderInitbf9b224cfc3165ead4e48be673284a7f +class ComposerAutoloaderInit7b44678ec2aea793416a22dbbbba76ef { private static $loader; @@ -19,15 +19,15 @@ class ComposerAutoloaderInitbf9b224cfc3165ead4e48be673284a7f return self::$loader; } - spl_autoload_register(array('ComposerAutoloaderInitbf9b224cfc3165ead4e48be673284a7f', 'loadClassLoader'), true, true); + spl_autoload_register(array('ComposerAutoloaderInit7b44678ec2aea793416a22dbbbba76ef', 'loadClassLoader'), true, true); self::$loader = $loader = new \Composer\Autoload\ClassLoader(); - spl_autoload_unregister(array('ComposerAutoloaderInitbf9b224cfc3165ead4e48be673284a7f', 'loadClassLoader')); + spl_autoload_unregister(array('ComposerAutoloaderInit7b44678ec2aea793416a22dbbbba76ef', 'loadClassLoader')); $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); if ($useStaticLoader) { require_once __DIR__ . '/autoload_static.php'; - call_user_func(\Composer\Autoload\ComposerStaticInitbf9b224cfc3165ead4e48be673284a7f::getInitializer($loader)); + call_user_func(\Composer\Autoload\ComposerStaticInit7b44678ec2aea793416a22dbbbba76ef::getInitializer($loader)); } else { $map = require __DIR__ . '/autoload_namespaces.php'; foreach ($map as $namespace => $path) { @@ -47,24 +47,6 @@ class ComposerAutoloaderInitbf9b224cfc3165ead4e48be673284a7f $loader->register(true); - if ($useStaticLoader) { - $includeFiles = Composer\Autoload\ComposerStaticInitbf9b224cfc3165ead4e48be673284a7f::$files; - } else { - $includeFiles = require __DIR__ . '/autoload_files.php'; - } - foreach ($includeFiles as $fileIdentifier => $file) { - composerRequirebf9b224cfc3165ead4e48be673284a7f($fileIdentifier, $file); - } - return $loader; } } - -function composerRequirebf9b224cfc3165ead4e48be673284a7f($fileIdentifier, $file) -{ - if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { - require $file; - - $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; - } -} diff --git a/framework/vendor/composer/autoload_static.php b/framework/vendor/composer/autoload_static.php index 7547383..66720b4 100644 --- a/framework/vendor/composer/autoload_static.php +++ b/framework/vendor/composer/autoload_static.php @@ -4,81 +4,27 @@ namespace Composer\Autoload; -class ComposerStaticInitbf9b224cfc3165ead4e48be673284a7f +class ComposerStaticInit7b44678ec2aea793416a22dbbbba76ef { - public static $files = array ( - '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php', - '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php', - ); - public static $prefixLengthsPsr4 = array ( - 'W' => + 'F' => array ( - 'Whoops\\' => 7, - ), - 'T' => - array ( - 'Twig\\' => 5, - ), - 'S' => - array ( - 'Symfony\\Polyfill\\Mbstring\\' => 26, - 'Symfony\\Polyfill\\Ctype\\' => 23, - ), - 'P' => - array ( - 'Psr\\Log\\' => 8, + 'Firebase\\JWT\\' => 13, ), ); public static $prefixDirsPsr4 = array ( - 'Whoops\\' => + 'Firebase\\JWT\\' => array ( - 0 => __DIR__ . '/..' . '/filp/whoops/src/Whoops', + 0 => __DIR__ . '/..' . '/firebase/php-jwt/src', ), - 'Twig\\' => - array ( - 0 => __DIR__ . '/..' . '/twig/twig/src', - ), - 'Symfony\\Polyfill\\Mbstring\\' => - array ( - 0 => __DIR__ . '/..' . '/symfony/polyfill-mbstring', - ), - 'Symfony\\Polyfill\\Ctype\\' => - array ( - 0 => __DIR__ . '/..' . '/symfony/polyfill-ctype', - ), - 'Psr\\Log\\' => - array ( - 0 => __DIR__ . '/..' . '/psr/log/Psr/Log', - ), - ); - - public static $prefixesPsr0 = array ( - 'T' => - array ( - 'Twig_' => - array ( - 0 => __DIR__ . '/..' . '/twig/twig/lib', - ), - ), - ); - - public static $classMap = array ( - 'Smarty' => __DIR__ . '/..' . '/smarty/smarty/libs/Smarty.class.php', - 'SmartyBC' => __DIR__ . '/..' . '/smarty/smarty/libs/SmartyBC.class.php', - 'SmartyCompilerException' => __DIR__ . '/..' . '/smarty/smarty/libs/Smarty.class.php', - 'SmartyException' => __DIR__ . '/..' . '/smarty/smarty/libs/Smarty.class.php', - 'Smarty_Security' => __DIR__ . '/..' . '/smarty/smarty/libs/sysplugins/smarty_security.php', ); public static function getInitializer(ClassLoader $loader) { return \Closure::bind(function () use ($loader) { - $loader->prefixLengthsPsr4 = ComposerStaticInitbf9b224cfc3165ead4e48be673284a7f::$prefixLengthsPsr4; - $loader->prefixDirsPsr4 = ComposerStaticInitbf9b224cfc3165ead4e48be673284a7f::$prefixDirsPsr4; - $loader->prefixesPsr0 = ComposerStaticInitbf9b224cfc3165ead4e48be673284a7f::$prefixesPsr0; - $loader->classMap = ComposerStaticInitbf9b224cfc3165ead4e48be673284a7f::$classMap; + $loader->prefixLengthsPsr4 = ComposerStaticInit7b44678ec2aea793416a22dbbbba76ef::$prefixLengthsPsr4; + $loader->prefixDirsPsr4 = ComposerStaticInit7b44678ec2aea793416a22dbbbba76ef::$prefixDirsPsr4; }, null, ClassLoader::class); } diff --git a/framework/vendor/composer/index.html b/framework/vendor/composer/index.html deleted file mode 100644 index e69de29..0000000 diff --git a/framework/vendor/composer/installed.json b/framework/vendor/composer/installed.json index 37e62c3..5b2924c 100644 --- a/framework/vendor/composer/installed.json +++ b/framework/vendor/composer/installed.json @@ -1,333 +1,31 @@ [ { - "name": "filp/whoops", - "version": "2.2.0", - "version_normalized": "2.2.0.0", + "name": "firebase/php-jwt", + "version": "v5.0.0", + "version_normalized": "5.0.0.0", "source": { "type": "git", - "url": "https://github.com/filp/whoops.git", - "reference": "181c4502d8f34db7aed7bfe88d4f87875b8e947a" + "url": "https://github.com/firebase/php-jwt.git", + "reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filp/whoops/zipball/181c4502d8f34db7aed7bfe88d4f87875b8e947a", - "reference": "181c4502d8f34db7aed7bfe88d4f87875b8e947a", - "shasum": "" - }, - "require": { - "php": "^5.5.9 || ^7.0", - "psr/log": "^1.0.1" - }, - "require-dev": { - "mockery/mockery": "^0.9 || ^1.0", - "phpunit/phpunit": "^4.8.35 || ^5.7", - "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0" - }, - "suggest": { - "symfony/var-dumper": "Pretty print complex values better with var-dumper available", - "whoops/soap": "Formats errors as SOAP responses" - }, - "time": "2018-03-03T17:56:25+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.1-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Whoops\\": "src/Whoops/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Filipe Dobreira", - "homepage": "https://github.com/filp", - "role": "Developer" - } - ], - "description": "php error handling for cool kids", - "homepage": "https://filp.github.io/whoops/", - "keywords": [ - "error", - "exception", - "handling", - "library", - "throwable", - "whoops" - ] - }, - { - "name": "psr/log", - "version": "1.1.0", - "version_normalized": "1.1.0.0", - "source": { - "type": "git", - "url": "https://github.com/php-fig/log.git", - "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd", - "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd", + "url": "https://api.github.com/repos/firebase/php-jwt/zipball/9984a4d3a32ae7673d6971ea00bae9d0a1abba0e", + "reference": "9984a4d3a32ae7673d6971ea00bae9d0a1abba0e", "shasum": "" }, "require": { "php": ">=5.3.0" }, - "time": "2018-11-20T15:27:04+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Psr\\Log\\": "Psr/Log/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" - } - ], - "description": "Common interface for logging libraries", - "homepage": "https://github.com/php-fig/log", - "keywords": [ - "log", - "psr", - "psr-3" - ] - }, - { - "name": "smarty/smarty", - "version": "v3.1.19", - "version_normalized": "3.1.19.0", - "source": { - "type": "git", - "url": "https://github.com/smarty-php/smarty.git", - "reference": "be0fd3186ceec57e4da9a44031f517c06ae2418a" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/smarty-php/smarty/zipball/be0fd3186ceec57e4da9a44031f517c06ae2418a", - "reference": "be0fd3186ceec57e4da9a44031f517c06ae2418a", - "shasum": "" - }, - "require": { - "php": ">=5.2" - }, - "time": "2014-10-31T01:29:14+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.1.x-dev" - } - }, - "installation-source": "dist", - "autoload": { - "classmap": [ - "libs/Smarty.class.php", - "libs/SmartyBC.class.php", - "libs/sysplugins/smarty_security.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "LGPL-3.0" - ], - "authors": [ - { - "name": "Monte Ohrt", - "email": "monte@ohrt.com" - }, - { - "name": "Uwe Tews", - "email": "uwe.tews@googlemail.com" - }, - { - "name": "Rodney Rehm", - "email": "rodney.rehm@medialize.de" - } - ], - "description": "Smarty - the compiling PHP template engine", - "homepage": "http://www.smarty.net", - "keywords": [ - "templating" - ] - }, - { - "name": "symfony/polyfill-ctype", - "version": "v1.11.0", - "version_normalized": "1.11.0.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "82ebae02209c21113908c229e9883c419720738a" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/82ebae02209c21113908c229e9883c419720738a", - "reference": "82ebae02209c21113908c229e9883c419720738a", - "shasum": "" - }, - "require": { - "php": ">=5.3.3" - }, - "suggest": { - "ext-ctype": "For best performance" - }, - "time": "2019-02-06T07:57:58+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.11-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Ctype\\": "" - }, - "files": [ - "bootstrap.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - }, - { - "name": "Gert de Pagter", - "email": "BackEndTea@gmail.com" - } - ], - "description": "Symfony polyfill for ctype functions", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "ctype", - "polyfill", - "portable" - ] - }, - { - "name": "symfony/polyfill-mbstring", - "version": "v1.11.0", - "version_normalized": "1.11.0.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "fe5e94c604826c35a32fa832f35bd036b6799609" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fe5e94c604826c35a32fa832f35bd036b6799609", - "reference": "fe5e94c604826c35a32fa832f35bd036b6799609", - "shasum": "" - }, - "require": { - "php": ">=5.3.3" - }, - "suggest": { - "ext-mbstring": "For best performance" - }, - "time": "2019-02-06T07:57:58+00:00", - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.11-dev" - } - }, - "installation-source": "dist", - "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Mbstring\\": "" - }, - "files": [ - "bootstrap.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Nicolas Grekas", - "email": "p@tchwork.com" - }, - { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" - } - ], - "description": "Symfony polyfill for the Mbstring extension", - "homepage": "https://symfony.com", - "keywords": [ - "compatibility", - "mbstring", - "polyfill", - "portable", - "shim" - ] - }, - { - "name": "twig/twig", - "version": "v2.9.0", - "version_normalized": "2.9.0.0", - "source": { - "type": "git", - "url": "https://github.com/twigphp/Twig.git", - "reference": "82a1c055c8ed4c4705023bfd0405f3c74db6e3ae" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/twigphp/Twig/zipball/82a1c055c8ed4c4705023bfd0405f3c74db6e3ae", - "reference": "82a1c055c8ed4c4705023bfd0405f3c74db6e3ae", - "shasum": "" - }, - "require": { - "php": "^7.0", - "symfony/polyfill-ctype": "^1.8", - "symfony/polyfill-mbstring": "^1.3" - }, "require-dev": { - "psr/container": "^1.0", - "symfony/debug": "^2.7", - "symfony/phpunit-bridge": "^3.4.19|^4.1.8" + "phpunit/phpunit": " 4.8.35" }, - "time": "2019-04-28T06:57:38+00:00", + "time": "2017-06-27T22:17:23+00:00", "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.9-dev" - } - }, "installation-source": "dist", "autoload": { - "psr-0": { - "Twig_": "lib/" - }, "psr-4": { - "Twig\\": "src/" + "Firebase\\JWT\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -336,26 +34,17 @@ ], "authors": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com", - "homepage": "http://fabien.potencier.org", - "role": "Lead Developer" + "name": "Neuman Vong", + "email": "neuman+pear@twilio.com", + "role": "Developer" }, { - "name": "Armin Ronacher", - "email": "armin.ronacher@active-4.com", - "role": "Project Founder" - }, - { - "name": "Twig Team", - "homepage": "https://twig.symfony.com/contributors", - "role": "Contributors" + "name": "Anant Narayanan", + "email": "anant@php.net", + "role": "Developer" } ], - "description": "Twig, the flexible, fast, and secure template language for PHP", - "homepage": "https://twig.symfony.com", - "keywords": [ - "templating" - ] + "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.", + "homepage": "https://github.com/firebase/php-jwt" } ] diff --git a/framework/vendor/filp/index.html b/framework/vendor/filp/index.html deleted file mode 100644 index e69de29..0000000 diff --git a/framework/vendor/filp/whoops/CHANGELOG.md b/framework/vendor/filp/whoops/CHANGELOG.md deleted file mode 100644 index 4bbd620..0000000 --- a/framework/vendor/filp/whoops/CHANGELOG.md +++ /dev/null @@ -1,13 +0,0 @@ -# 2.1.0 - -* Add a `SystemFacade` to allow clients to override Whoops behavior. -* Show frame arguments in `PrettyPageHandler`. -* Highlight the line with the error. -* Add icons to search on Google and Stack Overflow. - -# 2.0.0 - -Backwards compatibility breaking changes: - -* `Run` class is now `final`. If you inherited from `Run`, please now instead use a custom `SystemFacade` injected into the `Run` constructor, or contribute your changes to our core. -* PHP < 5.5 support dropped. diff --git a/framework/vendor/filp/whoops/LICENSE.md b/framework/vendor/filp/whoops/LICENSE.md deleted file mode 100644 index 80407e7..0000000 --- a/framework/vendor/filp/whoops/LICENSE.md +++ /dev/null @@ -1,19 +0,0 @@ -# The MIT License - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/framework/vendor/filp/whoops/composer.json b/framework/vendor/filp/whoops/composer.json deleted file mode 100644 index 7b2c3a6..0000000 --- a/framework/vendor/filp/whoops/composer.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "name": "filp/whoops", - "license": "MIT", - "description": "php error handling for cool kids", - "keywords": ["library", "error", "handling", "exception", "whoops", "throwable"], - "homepage": "https://filp.github.io/whoops/", - "authors": [ - { - "name": "Filipe Dobreira", - "homepage": "https://github.com/filp", - "role": "Developer" - } - ], - "require": { - "php": "^5.5.9 || ^7.0", - "psr/log": "^1.0.1" - }, - "require-dev": { - "phpunit/phpunit": "^4.8.35 || ^5.7", - "mockery/mockery": "^0.9 || ^1.0", - "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0" - }, - "suggest": { - "symfony/var-dumper": "Pretty print complex values better with var-dumper available", - "whoops/soap": "Formats errors as SOAP responses" - }, - "autoload": { - "psr-4": { - "Whoops\\": "src/Whoops/" - } - }, - "autoload-dev": { - "psr-4": { - "Whoops\\": "tests/Whoops/" - } - }, - "extra": { - "branch-alias": { - "dev-master": "2.1-dev" - } - } -} diff --git a/framework/vendor/filp/whoops/index.html b/framework/vendor/filp/whoops/index.html deleted file mode 100644 index e69de29..0000000 diff --git a/framework/vendor/filp/whoops/src/Whoops/Exception/ErrorException.php b/framework/vendor/filp/whoops/src/Whoops/Exception/ErrorException.php deleted file mode 100644 index d74e823..0000000 --- a/framework/vendor/filp/whoops/src/Whoops/Exception/ErrorException.php +++ /dev/null @@ -1,17 +0,0 @@ - - */ - -namespace Whoops\Exception; - -use ErrorException as BaseErrorException; - -/** - * Wraps ErrorException; mostly used for typing (at least now) - * to easily cleanup the stack trace of redundant info. - */ -class ErrorException extends BaseErrorException -{ -} diff --git a/framework/vendor/filp/whoops/src/Whoops/Exception/Formatter.php b/framework/vendor/filp/whoops/src/Whoops/Exception/Formatter.php deleted file mode 100644 index e467559..0000000 --- a/framework/vendor/filp/whoops/src/Whoops/Exception/Formatter.php +++ /dev/null @@ -1,73 +0,0 @@ - - */ - -namespace Whoops\Exception; - -class Formatter -{ - /** - * Returns all basic information about the exception in a simple array - * for further convertion to other languages - * @param Inspector $inspector - * @param bool $shouldAddTrace - * @return array - */ - public static function formatExceptionAsDataArray(Inspector $inspector, $shouldAddTrace) - { - $exception = $inspector->getException(); - $response = [ - 'type' => get_class($exception), - 'message' => $exception->getMessage(), - 'file' => $exception->getFile(), - 'line' => $exception->getLine(), - ]; - - if ($shouldAddTrace) { - $frames = $inspector->getFrames(); - $frameData = []; - - foreach ($frames as $frame) { - /** @var Frame $frame */ - $frameData[] = [ - 'file' => $frame->getFile(), - 'line' => $frame->getLine(), - 'function' => $frame->getFunction(), - 'class' => $frame->getClass(), - 'args' => $frame->getArgs(), - ]; - } - - $response['trace'] = $frameData; - } - - return $response; - } - - public static function formatExceptionPlain(Inspector $inspector) - { - $message = $inspector->getException()->getMessage(); - $frames = $inspector->getFrames(); - - $plain = $inspector->getExceptionName(); - $plain .= ' thrown with message "'; - $plain .= $message; - $plain .= '"'."\n\n"; - - $plain .= "Stacktrace:\n"; - foreach ($frames as $i => $frame) { - $plain .= "#". (count($frames) - $i - 1). " "; - $plain .= $frame->getClass() ?: ''; - $plain .= $frame->getClass() && $frame->getFunction() ? ":" : ""; - $plain .= $frame->getFunction() ?: ''; - $plain .= ' in '; - $plain .= ($frame->getFile() ?: '<#unknown>'); - $plain .= ':'; - $plain .= (int) $frame->getLine(). "\n"; - } - - return $plain; - } -} diff --git a/framework/vendor/filp/whoops/src/Whoops/Exception/Frame.php b/framework/vendor/filp/whoops/src/Whoops/Exception/Frame.php deleted file mode 100644 index 4383583..0000000 --- a/framework/vendor/filp/whoops/src/Whoops/Exception/Frame.php +++ /dev/null @@ -1,296 +0,0 @@ - - */ - -namespace Whoops\Exception; - -use InvalidArgumentException; -use Serializable; - -class Frame implements Serializable -{ - /** - * @var array - */ - protected $frame; - - /** - * @var string - */ - protected $fileContentsCache; - - /** - * @var array[] - */ - protected $comments = []; - - /** - * @var bool - */ - protected $application; - - /** - * @param array[] - */ - public function __construct(array $frame) - { - $this->frame = $frame; - } - - /** - * @param bool $shortened - * @return string|null - */ - public function getFile($shortened = false) - { - if (empty($this->frame['file'])) { - return null; - } - - $file = $this->frame['file']; - - // Check if this frame occurred within an eval(). - // @todo: This can be made more reliable by checking if we've entered - // eval() in a previous trace, but will need some more work on the upper - // trace collector(s). - if (preg_match('/^(.*)\((\d+)\) : (?:eval\(\)\'d|assert) code$/', $file, $matches)) { - $file = $this->frame['file'] = $matches[1]; - $this->frame['line'] = (int) $matches[2]; - } - - if ($shortened && is_string($file)) { - // Replace the part of the path that all frames have in common, and add 'soft hyphens' for smoother line-breaks. - $dirname = dirname(dirname(dirname(dirname(dirname(dirname(__DIR__)))))); - if ($dirname !== '/') { - $file = str_replace($dirname, "…", $file); - } - $file = str_replace("/", "/", $file); - } - - return $file; - } - - /** - * @return int|null - */ - public function getLine() - { - return isset($this->frame['line']) ? $this->frame['line'] : null; - } - - /** - * @return string|null - */ - public function getClass() - { - return isset($this->frame['class']) ? $this->frame['class'] : null; - } - - /** - * @return string|null - */ - public function getFunction() - { - return isset($this->frame['function']) ? $this->frame['function'] : null; - } - - /** - * @return array - */ - public function getArgs() - { - return isset($this->frame['args']) ? (array) $this->frame['args'] : []; - } - - /** - * Returns the full contents of the file for this frame, - * if it's known. - * @return string|null - */ - public function getFileContents() - { - if ($this->fileContentsCache === null && $filePath = $this->getFile()) { - // Leave the stage early when 'Unknown' is passed - // this would otherwise raise an exception when - // open_basedir is enabled. - if ($filePath === "Unknown") { - return null; - } - - // Return null if the file doesn't actually exist. - if (!is_file($filePath)) { - return null; - } - - $this->fileContentsCache = file_get_contents($filePath); - } - - return $this->fileContentsCache; - } - - /** - * Adds a comment to this frame, that can be received and - * used by other handlers. For example, the PrettyPage handler - * can attach these comments under the code for each frame. - * - * An interesting use for this would be, for example, code analysis - * & annotations. - * - * @param string $comment - * @param string $context Optional string identifying the origin of the comment - */ - public function addComment($comment, $context = 'global') - { - $this->comments[] = [ - 'comment' => $comment, - 'context' => $context, - ]; - } - - /** - * Returns all comments for this frame. Optionally allows - * a filter to only retrieve comments from a specific - * context. - * - * @param string $filter - * @return array[] - */ - public function getComments($filter = null) - { - $comments = $this->comments; - - if ($filter !== null) { - $comments = array_filter($comments, function ($c) use ($filter) { - return $c['context'] == $filter; - }); - } - - return $comments; - } - - /** - * Returns the array containing the raw frame data from which - * this Frame object was built - * - * @return array - */ - public function getRawFrame() - { - return $this->frame; - } - - /** - * Returns the contents of the file for this frame as an - * array of lines, and optionally as a clamped range of lines. - * - * NOTE: lines are 0-indexed - * - * @example - * Get all lines for this file - * $frame->getFileLines(); // => array( 0 => ' '...', ...) - * @example - * Get one line for this file, starting at line 10 (zero-indexed, remember!) - * $frame->getFileLines(9, 1); // array( 10 => '...', 11 => '...') - * - * @throws InvalidArgumentException if $length is less than or equal to 0 - * @param int $start - * @param int $length - * @return string[]|null - */ - public function getFileLines($start = 0, $length = null) - { - if (null !== ($contents = $this->getFileContents())) { - $lines = explode("\n", $contents); - - // Get a subset of lines from $start to $end - if ($length !== null) { - $start = (int) $start; - $length = (int) $length; - if ($start < 0) { - $start = 0; - } - - if ($length <= 0) { - throw new InvalidArgumentException( - "\$length($length) cannot be lower or equal to 0" - ); - } - - $lines = array_slice($lines, $start, $length, true); - } - - return $lines; - } - } - - /** - * Implements the Serializable interface, with special - * steps to also save the existing comments. - * - * @see Serializable::serialize - * @return string - */ - public function serialize() - { - $frame = $this->frame; - if (!empty($this->comments)) { - $frame['_comments'] = $this->comments; - } - - return serialize($frame); - } - - /** - * Unserializes the frame data, while also preserving - * any existing comment data. - * - * @see Serializable::unserialize - * @param string $serializedFrame - */ - public function unserialize($serializedFrame) - { - $frame = unserialize($serializedFrame); - - if (!empty($frame['_comments'])) { - $this->comments = $frame['_comments']; - unset($frame['_comments']); - } - - $this->frame = $frame; - } - - /** - * Compares Frame against one another - * @param Frame $frame - * @return bool - */ - public function equals(Frame $frame) - { - if (!$this->getFile() || $this->getFile() === 'Unknown' || !$this->getLine()) { - return false; - } - return $frame->getFile() === $this->getFile() && $frame->getLine() === $this->getLine(); - } - - /** - * Returns whether this frame belongs to the application or not. - * - * @return boolean - */ - public function isApplication() - { - return $this->application; - } - - /** - * Mark as an frame belonging to the application. - * - * @param boolean $application - */ - public function setApplication($application) - { - $this->application = $application; - } -} diff --git a/framework/vendor/filp/whoops/src/Whoops/Exception/FrameCollection.php b/framework/vendor/filp/whoops/src/Whoops/Exception/FrameCollection.php deleted file mode 100644 index b043a1c..0000000 --- a/framework/vendor/filp/whoops/src/Whoops/Exception/FrameCollection.php +++ /dev/null @@ -1,203 +0,0 @@ - - */ - -namespace Whoops\Exception; - -use ArrayAccess; -use ArrayIterator; -use Countable; -use IteratorAggregate; -use Serializable; -use UnexpectedValueException; - -/** - * Exposes a fluent interface for dealing with an ordered list - * of stack-trace frames. - */ -class FrameCollection implements ArrayAccess, IteratorAggregate, Serializable, Countable -{ - /** - * @var array[] - */ - private $frames; - - /** - * @param array $frames - */ - public function __construct(array $frames) - { - $this->frames = array_map(function ($frame) { - return new Frame($frame); - }, $frames); - } - - /** - * Filters frames using a callable, returns the same FrameCollection - * - * @param callable $callable - * @return FrameCollection - */ - public function filter($callable) - { - $this->frames = array_values(array_filter($this->frames, $callable)); - return $this; - } - - /** - * Map the collection of frames - * - * @param callable $callable - * @return FrameCollection - */ - public function map($callable) - { - // Contain the map within a higher-order callable - // that enforces type-correctness for the $callable - $this->frames = array_map(function ($frame) use ($callable) { - $frame = call_user_func($callable, $frame); - - if (!$frame instanceof Frame) { - throw new UnexpectedValueException( - "Callable to " . __METHOD__ . " must return a Frame object" - ); - } - - return $frame; - }, $this->frames); - - return $this; - } - - /** - * Returns an array with all frames, does not affect - * the internal array. - * - * @todo If this gets any more complex than this, - * have getIterator use this method. - * @see FrameCollection::getIterator - * @return array - */ - public function getArray() - { - return $this->frames; - } - - /** - * @see IteratorAggregate::getIterator - * @return ArrayIterator - */ - public function getIterator() - { - return new ArrayIterator($this->frames); - } - - /** - * @see ArrayAccess::offsetExists - * @param int $offset - */ - public function offsetExists($offset) - { - return isset($this->frames[$offset]); - } - - /** - * @see ArrayAccess::offsetGet - * @param int $offset - */ - public function offsetGet($offset) - { - return $this->frames[$offset]; - } - - /** - * @see ArrayAccess::offsetSet - * @param int $offset - */ - public function offsetSet($offset, $value) - { - throw new \Exception(__CLASS__ . ' is read only'); - } - - /** - * @see ArrayAccess::offsetUnset - * @param int $offset - */ - public function offsetUnset($offset) - { - throw new \Exception(__CLASS__ . ' is read only'); - } - - /** - * @see Countable::count - * @return int - */ - public function count() - { - return count($this->frames); - } - - /** - * Count the frames that belongs to the application. - * - * @return int - */ - public function countIsApplication() - { - return count(array_filter($this->frames, function (Frame $f) { - return $f->isApplication(); - })); - } - - /** - * @see Serializable::serialize - * @return string - */ - public function serialize() - { - return serialize($this->frames); - } - - /** - * @see Serializable::unserialize - * @param string $serializedFrames - */ - public function unserialize($serializedFrames) - { - $this->frames = unserialize($serializedFrames); - } - - /** - * @param Frame[] $frames Array of Frame instances, usually from $e->getPrevious() - */ - public function prependFrames(array $frames) - { - $this->frames = array_merge($frames, $this->frames); - } - - /** - * Gets the innermost part of stack trace that is not the same as that of outer exception - * - * @param FrameCollection $parentFrames Outer exception frames to compare tail against - * @return Frame[] - */ - public function topDiff(FrameCollection $parentFrames) - { - $diff = $this->frames; - - $parentFrames = $parentFrames->getArray(); - $p = count($parentFrames)-1; - - for ($i = count($diff)-1; $i >= 0 && $p >= 0; $i--) { - /** @var Frame $tailFrame */ - $tailFrame = $diff[$i]; - if ($tailFrame->equals($parentFrames[$p])) { - unset($diff[$i]); - } - $p--; - } - return $diff; - } -} diff --git a/framework/vendor/filp/whoops/src/Whoops/Exception/Inspector.php b/framework/vendor/filp/whoops/src/Whoops/Exception/Inspector.php deleted file mode 100644 index c88323b..0000000 --- a/framework/vendor/filp/whoops/src/Whoops/Exception/Inspector.php +++ /dev/null @@ -1,276 +0,0 @@ - - */ - -namespace Whoops\Exception; - -use Whoops\Util\Misc; - -class Inspector -{ - /** - * @var \Throwable - */ - private $exception; - - /** - * @var \Whoops\Exception\FrameCollection - */ - private $frames; - - /** - * @var \Whoops\Exception\Inspector - */ - private $previousExceptionInspector; - - /** - * @param \Throwable $exception The exception to inspect - */ - public function __construct($exception) - { - $this->exception = $exception; - } - - /** - * @return \Throwable - */ - public function getException() - { - return $this->exception; - } - - /** - * @return string - */ - public function getExceptionName() - { - return get_class($this->exception); - } - - /** - * @return string - */ - public function getExceptionMessage() - { - return $this->extractDocrefUrl($this->exception->getMessage())['message']; - } - - /** - * Returns a url to the php-manual related to the underlying error - when available. - * - * @return string|null - */ - public function getExceptionDocrefUrl() - { - return $this->extractDocrefUrl($this->exception->getMessage())['url']; - } - - private function extractDocrefUrl($message) - { - $docref = [ - 'message' => $message, - 'url' => null, - ]; - - // php embbeds urls to the manual into the Exception message with the following ini-settings defined - // http://php.net/manual/en/errorfunc.configuration.php#ini.docref-root - if (!ini_get('html_errors') || !ini_get('docref_root')) { - return $docref; - } - - $pattern = "/\[(?:[^<]+)<\/a>\]/"; - if (preg_match($pattern, $message, $matches)) { - // -> strip those automatically generated links from the exception message - $docref['message'] = preg_replace($pattern, '', $message, 1); - $docref['url'] = $matches[1]; - } - - return $docref; - } - - /** - * Does the wrapped Exception has a previous Exception? - * @return bool - */ - public function hasPreviousException() - { - return $this->previousExceptionInspector || $this->exception->getPrevious(); - } - - /** - * Returns an Inspector for a previous Exception, if any. - * @todo Clean this up a bit, cache stuff a bit better. - * @return Inspector - */ - public function getPreviousExceptionInspector() - { - if ($this->previousExceptionInspector === null) { - $previousException = $this->exception->getPrevious(); - - if ($previousException) { - $this->previousExceptionInspector = new Inspector($previousException); - } - } - - return $this->previousExceptionInspector; - } - - /** - * Returns an iterator for the inspected exception's - * frames. - * @return \Whoops\Exception\FrameCollection - */ - public function getFrames() - { - if ($this->frames === null) { - $frames = $this->getTrace($this->exception); - - // Fill empty line/file info for call_user_func_array usages (PHP Bug #44428) - foreach ($frames as $k => $frame) { - if (empty($frame['file'])) { - // Default values when file and line are missing - $file = '[internal]'; - $line = 0; - - $next_frame = !empty($frames[$k + 1]) ? $frames[$k + 1] : []; - - if ($this->isValidNextFrame($next_frame)) { - $file = $next_frame['file']; - $line = $next_frame['line']; - } - - $frames[$k]['file'] = $file; - $frames[$k]['line'] = $line; - } - } - - // Find latest non-error handling frame index ($i) used to remove error handling frames - $i = 0; - foreach ($frames as $k => $frame) { - if ($frame['file'] == $this->exception->getFile() && $frame['line'] == $this->exception->getLine()) { - $i = $k; - } - } - - // Remove error handling frames - if ($i > 0) { - array_splice($frames, 0, $i); - } - - $firstFrame = $this->getFrameFromException($this->exception); - array_unshift($frames, $firstFrame); - - $this->frames = new FrameCollection($frames); - - if ($previousInspector = $this->getPreviousExceptionInspector()) { - // Keep outer frame on top of the inner one - $outerFrames = $this->frames; - $newFrames = clone $previousInspector->getFrames(); - // I assume it will always be set, but let's be safe - if (isset($newFrames[0])) { - $newFrames[0]->addComment( - $previousInspector->getExceptionMessage(), - 'Exception message:' - ); - } - $newFrames->prependFrames($outerFrames->topDiff($newFrames)); - $this->frames = $newFrames; - } - } - - return $this->frames; - } - - /** - * Gets the backtrace from an exception. - * - * If xdebug is installed - * - * @param \Throwable $exception - * @return array - */ - protected function getTrace($e) - { - $traces = $e->getTrace(); - - // Get trace from xdebug if enabled, failure exceptions only trace to the shutdown handler by default - if (!$e instanceof \ErrorException) { - return $traces; - } - - if (!Misc::isLevelFatal($e->getSeverity())) { - return $traces; - } - - if (!extension_loaded('xdebug') || !xdebug_is_enabled()) { - return []; - } - - // Use xdebug to get the full stack trace and remove the shutdown handler stack trace - $stack = array_reverse(xdebug_get_function_stack()); - $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS); - $traces = array_diff_key($stack, $trace); - - return $traces; - } - - /** - * Given an exception, generates an array in the format - * generated by Exception::getTrace() - * @param \Throwable $exception - * @return array - */ - protected function getFrameFromException($exception) - { - return [ - 'file' => $exception->getFile(), - 'line' => $exception->getLine(), - 'class' => get_class($exception), - 'args' => [ - $exception->getMessage(), - ], - ]; - } - - /** - * Given an error, generates an array in the format - * generated by ErrorException - * @param ErrorException $exception - * @return array - */ - protected function getFrameFromError(ErrorException $exception) - { - return [ - 'file' => $exception->getFile(), - 'line' => $exception->getLine(), - 'class' => null, - 'args' => [], - ]; - } - - /** - * Determine if the frame can be used to fill in previous frame's missing info - * happens for call_user_func and call_user_func_array usages (PHP Bug #44428) - * - * @param array $frame - * @return bool - */ - protected function isValidNextFrame(array $frame) - { - if (empty($frame['file'])) { - return false; - } - - if (empty($frame['line'])) { - return false; - } - - if (empty($frame['function']) || !stristr($frame['function'], 'call_user_func')) { - return false; - } - - return true; - } -} diff --git a/framework/vendor/filp/whoops/src/Whoops/Exception/index.html b/framework/vendor/filp/whoops/src/Whoops/Exception/index.html deleted file mode 100644 index e69de29..0000000 diff --git a/framework/vendor/filp/whoops/src/Whoops/Handler/CallbackHandler.php b/framework/vendor/filp/whoops/src/Whoops/Handler/CallbackHandler.php deleted file mode 100644 index cc46e70..0000000 --- a/framework/vendor/filp/whoops/src/Whoops/Handler/CallbackHandler.php +++ /dev/null @@ -1,52 +0,0 @@ - - */ - -namespace Whoops\Handler; - -use InvalidArgumentException; - -/** - * Wrapper for Closures passed as handlers. Can be used - * directly, or will be instantiated automagically by Whoops\Run - * if passed to Run::pushHandler - */ -class CallbackHandler extends Handler -{ - /** - * @var callable - */ - protected $callable; - - /** - * @throws InvalidArgumentException If argument is not callable - * @param callable $callable - */ - public function __construct($callable) - { - if (!is_callable($callable)) { - throw new InvalidArgumentException( - 'Argument to ' . __METHOD__ . ' must be valid callable' - ); - } - - $this->callable = $callable; - } - - /** - * @return int|null - */ - public function handle() - { - $exception = $this->getException(); - $inspector = $this->getInspector(); - $run = $this->getRun(); - $callable = $this->callable; - - // invoke the callable directly, to get simpler stacktraces (in comparison to call_user_func). - // this assumes that $callable is a properly typed php-callable, which we check in __construct(). - return $callable($exception, $inspector, $run); - } -} diff --git a/framework/vendor/filp/whoops/src/Whoops/Handler/Handler.php b/framework/vendor/filp/whoops/src/Whoops/Handler/Handler.php deleted file mode 100644 index cf1f708..0000000 --- a/framework/vendor/filp/whoops/src/Whoops/Handler/Handler.php +++ /dev/null @@ -1,95 +0,0 @@ - - */ - -namespace Whoops\Handler; - -use Whoops\Exception\Inspector; -use Whoops\RunInterface; - -/** - * Abstract implementation of a Handler. - */ -abstract class Handler implements HandlerInterface -{ - /* - Return constants that can be returned from Handler::handle - to message the handler walker. - */ - const DONE = 0x10; // returning this is optional, only exists for - // semantic purposes - /** - * The Handler has handled the Throwable in some way, and wishes to skip any other Handler. - * Execution will continue. - */ - const LAST_HANDLER = 0x20; - /** - * The Handler has handled the Throwable in some way, and wishes to quit/stop execution - */ - const QUIT = 0x30; - - /** - * @var RunInterface - */ - private $run; - - /** - * @var Inspector $inspector - */ - private $inspector; - - /** - * @var \Throwable $exception - */ - private $exception; - - /** - * @param RunInterface $run - */ - public function setRun(RunInterface $run) - { - $this->run = $run; - } - - /** - * @return RunInterface - */ - protected function getRun() - { - return $this->run; - } - - /** - * @param Inspector $inspector - */ - public function setInspector(Inspector $inspector) - { - $this->inspector = $inspector; - } - - /** - * @return Inspector - */ - protected function getInspector() - { - return $this->inspector; - } - - /** - * @param \Throwable $exception - */ - public function setException($exception) - { - $this->exception = $exception; - } - - /** - * @return \Throwable - */ - protected function getException() - { - return $this->exception; - } -} diff --git a/framework/vendor/filp/whoops/src/Whoops/Handler/HandlerInterface.php b/framework/vendor/filp/whoops/src/Whoops/Handler/HandlerInterface.php deleted file mode 100644 index 0265a85..0000000 --- a/framework/vendor/filp/whoops/src/Whoops/Handler/HandlerInterface.php +++ /dev/null @@ -1,36 +0,0 @@ - - */ - -namespace Whoops\Handler; - -use Whoops\Exception\Inspector; -use Whoops\RunInterface; - -interface HandlerInterface -{ - /** - * @return int|null A handler may return nothing, or a Handler::HANDLE_* constant - */ - public function handle(); - - /** - * @param RunInterface $run - * @return void - */ - public function setRun(RunInterface $run); - - /** - * @param \Throwable $exception - * @return void - */ - public function setException($exception); - - /** - * @param Inspector $inspector - * @return void - */ - public function setInspector(Inspector $inspector); -} diff --git a/framework/vendor/filp/whoops/src/Whoops/Handler/JsonResponseHandler.php b/framework/vendor/filp/whoops/src/Whoops/Handler/JsonResponseHandler.php deleted file mode 100644 index fdd7ead..0000000 --- a/framework/vendor/filp/whoops/src/Whoops/Handler/JsonResponseHandler.php +++ /dev/null @@ -1,88 +0,0 @@ - - */ - -namespace Whoops\Handler; - -use Whoops\Exception\Formatter; - -/** - * Catches an exception and converts it to a JSON - * response. Additionally can also return exception - * frames for consumption by an API. - */ -class JsonResponseHandler extends Handler -{ - /** - * @var bool - */ - private $returnFrames = false; - - /** - * @var bool - */ - private $jsonApi = false; - - /** - * Returns errors[[]] instead of error[] to be in compliance with the json:api spec - * @param bool $jsonApi Default is false - * @return $this - */ - public function setJsonApi($jsonApi = false) - { - $this->jsonApi = (bool) $jsonApi; - return $this; - } - - /** - * @param bool|null $returnFrames - * @return bool|$this - */ - public function addTraceToOutput($returnFrames = null) - { - if (func_num_args() == 0) { - return $this->returnFrames; - } - - $this->returnFrames = (bool) $returnFrames; - return $this; - } - - /** - * @return int - */ - public function handle() - { - if ($this->jsonApi === true) { - $response = [ - 'errors' => [ - Formatter::formatExceptionAsDataArray( - $this->getInspector(), - $this->addTraceToOutput() - ), - ] - ]; - } else { - $response = [ - 'error' => Formatter::formatExceptionAsDataArray( - $this->getInspector(), - $this->addTraceToOutput() - ), - ]; - } - - echo json_encode($response, defined('JSON_PARTIAL_OUTPUT_ON_ERROR') ? JSON_PARTIAL_OUTPUT_ON_ERROR : 0); - - return Handler::QUIT; - } - - /** - * @return string - */ - public function contentType() - { - return 'application/json'; - } -} diff --git a/framework/vendor/filp/whoops/src/Whoops/Handler/PlainTextHandler.php b/framework/vendor/filp/whoops/src/Whoops/Handler/PlainTextHandler.php deleted file mode 100644 index 2f5be90..0000000 --- a/framework/vendor/filp/whoops/src/Whoops/Handler/PlainTextHandler.php +++ /dev/null @@ -1,314 +0,0 @@ - -* Plaintext handler for command line and logs. -* @author Pierre-Yves Landuré