diff --git a/vendor/composer/autoload_classmap.php b/vendor/composer/autoload_classmap.php index b5a370b67..2cfeb686f 100644 --- a/vendor/composer/autoload_classmap.php +++ b/vendor/composer/autoload_classmap.php @@ -217,6 +217,8 @@ return array( 'library\\queue\\WorkQueue' => $vendorDir . '/zoujingli/think-library/src/queue/WorkQueue.php', 'library\\service\\AdminService' => $vendorDir . '/zoujingli/think-library/src/service/AdminService.php', 'library\\service\\CaptchaService' => $vendorDir . '/zoujingli/think-library/src/service/CaptchaService.php', + 'library\\service\\JsonRpcClientService' => $vendorDir . '/zoujingli/think-library/src/service/JsonRpcClientService.php', + 'library\\service\\JsonRpcServerService' => $vendorDir . '/zoujingli/think-library/src/service/JsonRpcServerService.php', 'library\\service\\MenuService' => $vendorDir . '/zoujingli/think-library/src/service/MenuService.php', 'library\\service\\NodeService' => $vendorDir . '/zoujingli/think-library/src/service/NodeService.php', 'library\\service\\ProcessService' => $vendorDir . '/zoujingli/think-library/src/service/ProcessService.php', diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index 16e899f1c..0a679f0bb 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -318,6 +318,8 @@ class ComposerStaticInitbf5dd43c242f2a86b1513b16fb281176 'library\\queue\\WorkQueue' => __DIR__ . '/..' . '/zoujingli/think-library/src/queue/WorkQueue.php', 'library\\service\\AdminService' => __DIR__ . '/..' . '/zoujingli/think-library/src/service/AdminService.php', 'library\\service\\CaptchaService' => __DIR__ . '/..' . '/zoujingli/think-library/src/service/CaptchaService.php', + 'library\\service\\JsonRpcClientService' => __DIR__ . '/..' . '/zoujingli/think-library/src/service/JsonRpcClientService.php', + 'library\\service\\JsonRpcServerService' => __DIR__ . '/..' . '/zoujingli/think-library/src/service/JsonRpcServerService.php', 'library\\service\\MenuService' => __DIR__ . '/..' . '/zoujingli/think-library/src/service/MenuService.php', 'library\\service\\NodeService' => __DIR__ . '/..' . '/zoujingli/think-library/src/service/NodeService.php', 'library\\service\\ProcessService' => __DIR__ . '/..' . '/zoujingli/think-library/src/service/ProcessService.php', diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 6d80cf815..cee5c64e2 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -177,8 +177,8 @@ }, { "name": "symfony/options-resolver", - "version": "v3.4.35", - "version_normalized": "3.4.35.0", + "version": "v3.4.36", + "version_normalized": "3.4.36.0", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", @@ -502,12 +502,12 @@ "source": { "type": "git", "url": "https://github.com/zoujingli/ThinkLibrary.git", - "reference": "133208dd758a04629de74e740878fa94a71bf4ec" + "reference": "bc3a7d6203955f36f401e8286884a9aa7e6a4133" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/133208dd758a04629de74e740878fa94a71bf4ec", - "reference": "133208dd758a04629de74e740878fa94a71bf4ec", + "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/bc3a7d6203955f36f401e8286884a9aa7e6a4133", + "reference": "bc3a7d6203955f36f401e8286884a9aa7e6a4133", "shasum": "", "mirrors": [ { @@ -527,7 +527,7 @@ "qiniu/php-sdk": "^7.2", "topthink/framework": "5.1.*" }, - "time": "2019-11-29T02:10:05+00:00", + "time": "2019-12-30T09:51:14+00:00", "type": "library", "installation-source": "dist", "autoload": { diff --git a/vendor/zoujingli/think-library/LICENSE b/vendor/zoujingli/think-library/LICENSE new file mode 100644 index 000000000..e19cbbdf9 --- /dev/null +++ b/vendor/zoujingli/think-library/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2019 邹景立 + +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/vendor/zoujingli/think-library/src/Controller.php b/vendor/zoujingli/think-library/src/Controller.php index ad3293156..56026d99a 100644 --- a/vendor/zoujingli/think-library/src/Controller.php +++ b/vendor/zoujingli/think-library/src/Controller.php @@ -59,7 +59,7 @@ abstract class Controller extends \stdClass * 表单CSRF验证失败提示消息 * @var string */ - public $csrf_message = '表单令牌验证失败,请刷新页面再试!'; + public $csrf_message = ''; /** * Controller constructor. @@ -114,6 +114,9 @@ abstract class Controller extends \stdClass */ protected function initialize() { + if (empty($this->csrf_message)) { + $this->csrf_message = lang('think_library_csrf_error'); + } } /** diff --git a/vendor/zoujingli/think-library/src/Service.php b/vendor/zoujingli/think-library/src/Service.php index dfc3bf254..daf00e5ce 100644 --- a/vendor/zoujingli/think-library/src/Service.php +++ b/vendor/zoujingli/think-library/src/Service.php @@ -47,24 +47,25 @@ abstract class Service { $this->app = $app; $this->request = $request; + $this->initialize(); } /** * 初始化服务 * @return $this */ - public function initialize() + protected function initialize() { return $this; } /** * 静态实例对象 - * @return $this + * @return static */ public static function instance() { - return Container::getInstance()->make(static::class)->initialize(); + return Container::getInstance()->make(static::class); } } \ No newline at end of file diff --git a/vendor/zoujingli/think-library/src/common.php b/vendor/zoujingli/think-library/src/common.php index 02c40d52d..8055c9e31 100644 --- a/vendor/zoujingli/think-library/src/common.php +++ b/vendor/zoujingli/think-library/src/common.php @@ -13,16 +13,16 @@ // | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary // +---------------------------------------------------------------------- +use library\service\TokenService; use library\tools\Crypt; -use library\tools\Csrf; use library\tools\Data; use library\tools\Emoji; use library\tools\Http; -use library\tools\Node; use think\Console; use think\Db; use think\db\Query; use think\facade\Cache; +use think\facade\Lang; use think\facade\Middleware; use think\Request; @@ -105,7 +105,7 @@ if (!function_exists('systoken')) { */ function systoken($node = null) { - $csrf = Csrf::buildFormToken(Node::get($node)); + $csrf = TokenService::instance()->buildFormToken($node); return $csrf['token']; } } @@ -270,6 +270,10 @@ if (class_exists('think\Console')) { ]); } +// 加载对应的语言包 +Lang::load(__DIR__ . '/lang/zh-cn.php', 'zh-cn'); +Lang::load(__DIR__ . '/lang/en-us.php', 'en-us'); + // 动态加载模块配置 if (function_exists('think\__include_file')) { $root = rtrim(str_replace('\\', '/', env('app_path')), '/'); diff --git a/vendor/zoujingli/think-library/src/driver/Local.php b/vendor/zoujingli/think-library/src/driver/Local.php index 7ad625d67..b155589d1 100644 --- a/vendor/zoujingli/think-library/src/driver/Local.php +++ b/vendor/zoujingli/think-library/src/driver/Local.php @@ -123,8 +123,9 @@ class Local extends File { if ($this->has($name, $safe) && is_string($file = $this->path($name, $safe))) { return ['file' => $file, 'hash' => md5_file($file), 'url' => $this->base($name), 'key' => "upload/{$name}"]; + } else { + return null; } - return null; } /** @@ -137,8 +138,9 @@ class Local extends File { if ($this->has($name, $safe) && is_string($file = $this->path($name, $safe))) { return @unlink($file); + } else { + return true; } - return true; } } diff --git a/vendor/zoujingli/think-library/src/helper/DeleteHelper.php b/vendor/zoujingli/think-library/src/helper/DeleteHelper.php index 440b09118..12aa95a94 100644 --- a/vendor/zoujingli/think-library/src/helper/DeleteHelper.php +++ b/vendor/zoujingli/think-library/src/helper/DeleteHelper.php @@ -78,9 +78,9 @@ class DeleteHelper extends Helper } // 回复前端结果 if ($result !== false) { - $this->controller->success('数据删除成功!', ''); + $this->controller->success(lang('think_library_delete_success'), ''); } else { - $this->controller->error('数据删除失败, 请稍候再试!'); + $this->controller->error(lang('think_library_delete_error')); } } } \ No newline at end of file diff --git a/vendor/zoujingli/think-library/src/helper/FormHelper.php b/vendor/zoujingli/think-library/src/helper/FormHelper.php index 9dccaf729..c7ac30f07 100644 --- a/vendor/zoujingli/think-library/src/helper/FormHelper.php +++ b/vendor/zoujingli/think-library/src/helper/FormHelper.php @@ -62,7 +62,7 @@ class FormHelper extends Helper * @param string $field 指定数据主键 * @param array $where 额外更新条件 * @param array $data 表单扩展数据 - * @return array|boolean + * @return array|mixed * @throws \think\Exception * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException @@ -84,8 +84,9 @@ class FormHelper extends Helper $data = array_merge($data, $this->data); if (false !== $this->controller->callback('_form_filter', $data)) { return $this->controller->fetch($this->template, ['vo' => $data]); + } else { + return $data; } - return $data; } // POST请求, 数据自动存库处理 if ($this->app->request->isPost()) { @@ -93,8 +94,11 @@ class FormHelper extends Helper if (false !== $this->controller->callback('_form_filter', $data, $this->where)) { $result = data_save($this->query, $data, $this->field, $this->where); if (false !== $this->controller->callback('_form_result', $result, $data)) { - if ($result !== false) $this->controller->success('恭喜, 数据保存成功!', ''); - $this->controller->error('数据保存失败, 请稍候再试!'); + if ($result !== false) { + $this->controller->success(lang('think_library_form_success'), ''); + } else { + $this->controller->error(lang('think_library_form_error')); + } } return $result; } diff --git a/vendor/zoujingli/think-library/src/helper/PageHelper.php b/vendor/zoujingli/think-library/src/helper/PageHelper.php index 9f0c77e33..3818d1c6a 100644 --- a/vendor/zoujingli/think-library/src/helper/PageHelper.php +++ b/vendor/zoujingli/think-library/src/helper/PageHelper.php @@ -57,7 +57,7 @@ class PageHelper extends Helper * @param boolean $display 是否渲染模板 * @param boolean $total 集合分页记录数 * @param integer $limit 集合每页记录数 - * @return array + * @return array|mixed * @throws \think\Exception * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException @@ -90,17 +90,19 @@ class PageHelper extends Helper $url = url('@admin') . '#' . $this->controller->request->baseUrl() . '?' . urldecode(http_build_query($query)); array_push($rows, ""); } - $select = ""; - $html = "
method {$method}()
"; + } + } else { + // Reads the input data + $request = json_decode(file_get_contents('php://input'), true); + if (empty($request)) { + $error = ['code' => '-32700', 'message' => '语法解析错误', 'meaning' => '服务端接收到无效的JSON']; + $response = ['jsonrpc' => '2.0', 'id' => $request['id'], 'result' => null, 'error' => $error]; + } elseif (!isset($request['id']) || !isset($request['method']) || !isset($request['params'])) { + $error = ['code' => '-32600', 'message' => '无效的请求', 'meaning' => '发送的JSON不是一个有效的请求对象']; + $response = ['jsonrpc' => '2.0', 'id' => $request['id'], 'result' => null, 'error' => $error]; + } else try { + // Executes the task on local object + if ($result = @call_user_func_array([$object, $request['method']], $request['params'])) { + $response = ['jsonrpc' => '2.0', 'id' => $request['id'], 'result' => $result, 'error' => null]; + } else { + $error = ['code' => '-32601', 'message' => '找不到方法', 'meaning' => '该方法不存在或无效']; + $response = ['jsonrpc' => '2.0', 'id' => $request['id'], 'result' => null, 'error' => $error]; + } + } catch (\Exception $e) { + $error = ['code' => $e->getCode(), 'message' => $e->getMessage()]; + $response = ['jsonrpc' => '2.0', 'id' => $request['id'], 'result' => null, 'error' => $error]; + } + // Output the response + throw new HttpResponseException(json($response)->contentType('text/javascript')); + } + } + +} \ No newline at end of file diff --git a/vendor/zoujingli/think-library/src/service/NodeService.php b/vendor/zoujingli/think-library/src/service/NodeService.php index 888090f4d..a9d1b582d 100644 --- a/vendor/zoujingli/think-library/src/service/NodeService.php +++ b/vendor/zoujingli/think-library/src/service/NodeService.php @@ -49,7 +49,7 @@ class NodeService extends Service $prefix = $this->request->module(); $middle = '\\' . $this->nameTolower($this->app->request->controller()); $suffix = ($type === 'controller') ? '' : ('\\' . $this->app->request->action()); - return strtr($prefix . $middle . $suffix, '\\', '/'); + return strtolower(strtr($prefix . $middle . $suffix, '\\', '/')); } /** @@ -61,10 +61,10 @@ class NodeService extends Service { if (empty($node)) return $this->getCurrent(); if (count($attrs = explode('/', $node)) === 1) { - return $this->getCurrent('controller') . "/{$node}"; + return strtolower($this->getCurrent('controller') . "/{$node}"); } else { $attrs[1] = $this->nameTolower($attrs[1]); - return join('/', $attrs); + return strtolower(join('/', $attrs)); } } diff --git a/vendor/zoujingli/think-library/src/service/ProcessService.php b/vendor/zoujingli/think-library/src/service/ProcessService.php index 5fa8f5a6e..7f431b589 100644 --- a/vendor/zoujingli/think-library/src/service/ProcessService.php +++ b/vendor/zoujingli/think-library/src/service/ProcessService.php @@ -48,7 +48,7 @@ class ProcessService extends Service /** * 创建异步进程 * @param string $command 任务指令 - * @return ProcessService + * @return $this */ public function create($command) { diff --git a/vendor/zoujingli/think-library/src/service/TokenService.php b/vendor/zoujingli/think-library/src/service/TokenService.php index bff07a845..1b4ef2b35 100644 --- a/vendor/zoujingli/think-library/src/service/TokenService.php +++ b/vendor/zoujingli/think-library/src/service/TokenService.php @@ -30,7 +30,7 @@ class TokenService extends Service */ public function getInputToken() { - return $this->app->request->header('User-Token-Csrf', input('_token_', '')); + return $this->app->request->header('user-token-csrf', input('_token_', '')); } /** @@ -53,7 +53,7 @@ class TokenService extends Service /** * 清理表单CSRF信息 * @param string $token - * @return TokenService + * @return $this */ public function clearFormToken($token = null) {