ComposerUpdate

This commit is contained in:
Anyon 2020-04-16 14:07:38 +08:00
parent b2caeaa99c
commit 1cc1b50306
6 changed files with 39 additions and 41 deletions

11
composer.lock generated
View File

@ -909,12 +909,12 @@
"source": {
"type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "544aec71b8d65168a9633db8ab4088c8be95d0ce"
"reference": "b7d389ebc8fa2b14c652c1f42786bf1461c17799"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/544aec71b8d65168a9633db8ab4088c8be95d0ce",
"reference": "544aec71b8d65168a9633db8ab4088c8be95d0ce",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/b7d389ebc8fa2b14c652c1f42786bf1461c17799",
"reference": "b7d389ebc8fa2b14c652c1f42786bf1461c17799",
"shasum": "",
"mirrors": [
{
@ -958,7 +958,7 @@
],
"description": "ThinkPHP v6.0 Development Library",
"homepage": "http://framework.thinkadmin.top",
"time": "2020-04-16T05:21:38+00:00"
"time": "2020-04-16T05:51:49+00:00"
},
{
"name": "zoujingli/wechat-developer",
@ -1044,6 +1044,5 @@
"ext-openssl": "*",
"ext-mbstring": "*"
},
"platform-dev": [],
"plugin-api-version": "1.1.0"
"platform-dev": []
}

View File

@ -29,7 +29,7 @@ return [
// 默认时区
'default_timezone' => 'Asia/Shanghai',
// 应用映射(自动多应用模式有效)
'app_map' => ['system' => 'admin'],
'app_map' => [],
// 域名绑定(自动多应用模式有效)
'domain_bind' => [],
// 禁止URL访问的应用列表自动多应用模式有效

View File

@ -13,9 +13,6 @@ class ComposerAutoloaderInit4ceee63a2cdf20349907f5909444af96
}
}
/**
* @return \Composer\Autoload\ClassLoader
*/
public static function getLoader()
{
if (null !== self::$loader) {

View File

@ -935,12 +935,12 @@
"source": {
"type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "544aec71b8d65168a9633db8ab4088c8be95d0ce"
"reference": "b7d389ebc8fa2b14c652c1f42786bf1461c17799"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/544aec71b8d65168a9633db8ab4088c8be95d0ce",
"reference": "544aec71b8d65168a9633db8ab4088c8be95d0ce",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/b7d389ebc8fa2b14c652c1f42786bf1461c17799",
"reference": "b7d389ebc8fa2b14c652c1f42786bf1461c17799",
"shasum": "",
"mirrors": [
{
@ -956,7 +956,7 @@
"ext-json": "*",
"topthink/framework": "^6.0"
},
"time": "2020-04-16T05:21:38+00:00",
"time": "2020-04-16T05:51:49+00:00",
"type": "library",
"extra": {
"think": {

2
vendor/services.php vendored
View File

@ -1,5 +1,5 @@
<?php
// This file is automatically generated at:2020-04-16 13:27:36
// This file is automatically generated at:2020-04-16 14:06:32
declare (strict_types = 1);
return array (
0 => 'think\\app\\Service',

View File

@ -43,7 +43,7 @@ class SystemService extends Service
*/
public function set($name, $value = '')
{
list($type, $field) = $this->parse($name);
[$type, $field] = $this->parse($name);
if (is_array($value)) {
foreach ($value as $k => $v) $this->set("{$field}.{$k}", $v);
} else {
@ -64,7 +64,7 @@ class SystemService extends Service
*/
public function get($name)
{
list($type, $field, $outer) = $this->parse($name);
[$type, $field, $outer] = $this->parse($name);
if (empty($this->data)) foreach ($this->app->db->name('SystemConfig')->select() as $vo) {
$this->data[$vo['type']][$vo['name']] = $vo['value'];
}
@ -93,7 +93,7 @@ class SystemService extends Service
public function save($dbQuery, $data, $key = 'id', $where = [])
{
$db = is_string($dbQuery) ? $this->app->db->name($dbQuery) : $dbQuery;
list($table, $value) = [$db->getTable(), isset($data[$key]) ? $data[$key] : null];
[$table, $value] = [$db->getTable(), isset($data[$key]) ? $data[$key] : null];
$map = isset($where[$key]) ? [] : (is_string($value) ? [[$key, 'in', explode(',', $value)]] : [$key => $value]);
if (is_array($info = $this->app->db->table($table)->master()->where($where)->where($map)->find()) && !empty($info)) {
if ($this->app->db->table($table)->strict(false)->where($where)->where($map)->update($data) !== false) {
@ -115,9 +115,9 @@ class SystemService extends Service
private function parse($rule, $type = 'base')
{
if (stripos($rule, '.') !== false) {
list($type, $rule) = explode('.', $rule);
[$type, $rule] = explode('.', $rule);
}
list($field, $outer) = explode('|', "{$rule}|");
[$field, $outer] = explode('|', "{$rule}|");
return [$type, $field, strtolower($outer)];
}
@ -207,7 +207,7 @@ class SystemService extends Service
if (is_null($state)) {
$this->app->debug($this->getRuntime('app_run') !== 'product');
} else {
$this->setRuntime($state ? 'product' : 'developoer');
$this->setRuntime([], $state ? 'product' : 'developoer');
$this->app->debug(empty($state));
}
return !$this->app->isDebug();
@ -215,25 +215,33 @@ class SystemService extends Service
/**
* 设置实时运行配置
* @param string $run 支持模式
* @param array $map 应用映射
* @param array|null $map 应用映射
* @param string|null $run 支持模式
* @return boolean
*/
public function setRuntime($run = null, $map = [])
public function setRuntime($map = [], $run = null)
{
$data = [];
if (file_exists($file = "{$this->app->getRootPath()}runtime/config.json")) {
$data = json_decode(file_get_contents($file), true);
if (!is_array($data)) $data = [];
}
if (empty($data['app_map']) || !is_array($data['app_map'])) {
$data['app_map'] = [];
}
$data = $this->__Runtime();
$file = "{$this->app->getRootPath()}runtime/config.json";
$data['app_run'] = is_null($run) ? $data['app_run'] : $run;
$data['app_map'] = is_null($map) ? [] : array_merge($data['app_map'], $map);
$data['app_run'] = is_null($run) && isset($data['app_run']) ? $data['app_run'] : $run;
return file_put_contents($file, json_encode($data, JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT));
}
/**
* 读取原数据
* @return array
*/
private function __Runtime()
{
$file = "{$this->app->getRootPath()}runtime/config.json";
$data = file_exists($file) ? json_decode(file_get_contents($file), true) : [];
if (empty($data) || !is_array($data)) $data = [];
if (empty($data['app_map']) || !is_array($data['app_map'])) $data['app_map'] = [];
if (empty($data['app_run']) || !is_string($data['app_run'])) $data['app_run'] = 'developer';
return $data;
}
/**
* 获取实时运行配置
* @param null|string $key
@ -241,13 +249,7 @@ class SystemService extends Service
*/
public function getRuntime($key = null)
{
$file = "{$this->app->getRootPath()}runtime/config.json";
if (file_exists($file) && is_array($data = json_decode(file_get_contents($file), true))) {
if (empty($data['app_run'])) $data['app_run'] = 'developoer';
if (empty($data['app_map']) || !is_array($data['app_map'])) $data['app_map'] = [];
} else {
$data = ['app_run' => 'developoer', 'app_map' => []];
}
$data = $this->__Runtime();
return is_null($key) ? $data : (isset($data[$key]) ? $data[$key] : null);
}
@ -277,7 +279,7 @@ class SystemService extends Service
public function sysuri($url = '', array $vars = [], $suffix = false, $domain = false)
{
$location = $this->app->route->buildUrl($url, $vars)->suffix($suffix)->domain($domain)->build();
list($d1, $d2, $d3) = [$this->app->config->get('app.default_app'), $this->app->config->get('route.default_controller'), $this->app->config->get('route.default_action'),];
[$d1, $d2, $d3] = [$this->app->config->get('app.default_app'), $this->app->config->get('route.default_controller'), $this->app->config->get('route.default_action'),];
return preg_replace(["|^/{$d1}/{$d2}/{$d3}(\.html)?$|i", "|/{$d2}/{$d3}(\.html)?$|i", "|/{$d3}(\.html)?$|i"], '', $location);
}