mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
ComposerUpdate & 调整登录
This commit is contained in:
parent
3c7079f9c3
commit
df40389b36
@ -18,6 +18,7 @@ namespace app\admin\controller;
|
||||
use think\admin\Controller;
|
||||
use think\admin\service\AuthService;
|
||||
use think\admin\service\CaptchaService;
|
||||
use think\admin\service\SystemService;
|
||||
|
||||
/**
|
||||
* 用户登录管理
|
||||
@ -36,43 +37,46 @@ class Login extends Controller
|
||||
{
|
||||
if ($this->app->request->isGet()) {
|
||||
if (AuthService::instance()->isLogin()) {
|
||||
$this->redirect(url('@admin')->suffix(false)->build());
|
||||
$this->redirect(url('@admin')->build());
|
||||
} else {
|
||||
$this->title = '系统登录';
|
||||
$this->domain = $this->app->request->host(true);
|
||||
$this->devmode = in_array($this->domain, ['127.0.0.1', 'localhost']);
|
||||
$this->devmode = $this->devmode ?: is_numeric(stripos($this->domain, 'thinkadmin.top'));
|
||||
$this->captcha = CaptchaService::instance();
|
||||
$this->captcha = CaptchaService::instance()->getAttrs();
|
||||
$this->devmode = SystemService::instance()->checkRunMode('dev');
|
||||
$this->fetch();
|
||||
}
|
||||
} elseif ($this->app->request->isPost()) {
|
||||
$data = ['username' => input('username'), 'password' => input('password')];
|
||||
if (empty($data['username'])) $this->error('登录账号不能为空!');
|
||||
if (empty($data['password'])) $this->error('登录密码不能为空!');
|
||||
if (!CaptchaService::instance()->check(input('verify'), input('uniqid'))) {
|
||||
$this->error('图形验证码验证失败,请重新输入!');
|
||||
}
|
||||
// 用户信息验证
|
||||
$map = ['username' => $data['username'], 'is_deleted' => '0'];
|
||||
$user = $this->app->db->name('SystemUser')->where($map)->order('id desc')->find();
|
||||
if (empty($user)) {
|
||||
$this->error('登录账号或密码错误,请重新输入!');
|
||||
}
|
||||
if (md5("{$user['password']}{$user['username']}") !== $data['password']) {
|
||||
$this->error('登录账号或密码错误,请重新输入!');
|
||||
}
|
||||
if (empty($user['status'])) {
|
||||
$this->error('账号已经被禁用,请联系管理员!');
|
||||
}
|
||||
$this->app->db->name('SystemUser')->where(['id' => $user['id']])->update([
|
||||
'login_ip' => $this->app->request->ip(),
|
||||
'login_at' => $this->app->db->raw('now()'),
|
||||
'login_num' => $this->app->db->raw('login_num+1'),
|
||||
]);
|
||||
$this->app->session->set('user', $user);
|
||||
sysoplog('用户登录', "用户登录系统后台成功");
|
||||
$this->success('登录成功', url('@admin')->build());
|
||||
}
|
||||
$data = $this->_vali([
|
||||
'username.require' => '登录账号不能为空!',
|
||||
'username.min:4' => '登录账号长度不能少于4位有效字符!',
|
||||
'password.require' => '登录密码不能为空!',
|
||||
'password.min:4' => '登录密码长度不能少于4位有效字符!',
|
||||
'verify.require' => '图形验证码不能为空!',
|
||||
'uniqid.require' => '图形验证标识不能为空!'
|
||||
]);
|
||||
if (!CaptchaService::instance()->check($data['verify'], $data['uniqid'])) {
|
||||
$this->error('图形验证码验证失败,请重新输入!');
|
||||
}
|
||||
// 用户信息验证
|
||||
$map = ['username' => $data['username'], 'is_deleted' => '0'];
|
||||
$user = $this->app->db->name('SystemUser')->where($map)->order('id desc')->find();
|
||||
if (empty($user)) {
|
||||
$this->error('登录账号或密码错误,请重新输入!');
|
||||
}
|
||||
if (md5("{$user['password']}{$data['uniqid']}") !== $data['password']) {
|
||||
$this->error('登录账号或密码错误,请重新输入!');
|
||||
}
|
||||
if (empty($user['status'])) {
|
||||
$this->error('账号已经被禁用,请联系管理员!');
|
||||
}
|
||||
$this->app->db->name('SystemUser')->where(['id' => $user['id']])->update([
|
||||
'login_ip' => $this->app->request->ip(),
|
||||
'login_at' => $this->app->db->raw('now()'),
|
||||
'login_num' => $this->app->db->raw('login_num+1'),
|
||||
]);
|
||||
$this->app->session->set('user', $user);
|
||||
sysoplog('用户登录', "用户登录系统后台成功");
|
||||
$this->success('登录成功', url('@admin')->build());
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -28,10 +28,10 @@
|
||||
<li class="verify layui-hide">
|
||||
<label class="inline-block relative">
|
||||
<i class="layui-icon layui-icon-picture-fine"></i>
|
||||
<input class="layui-input" required pattern="^\S{4,}$" name="verify" value="{$captcha->getCode()}" maxlength="4" autocomplete="off" placeholder="验证码" title="请输入验证码">
|
||||
<input class="layui-input" required pattern="^\S{4,}$" name="verify" value="{$captcha.code|default=''}" maxlength="4" autocomplete="off" placeholder="验证码" title="请输入验证码">
|
||||
</label>
|
||||
<img data-captcha alt="img" src="{$captcha->getData()}">
|
||||
<input type="hidden" name="uniqid" value="{$captcha->getUniqid()}">
|
||||
<img data-captcha alt="img" src="{$captcha.data|default=''}">
|
||||
<input type="hidden" name="uniqid" value="{$captcha.uniqid|default=''}">
|
||||
</li>
|
||||
<li class="text-center padding-top-20">
|
||||
<button type="submit" class="layui-btn layui-disabled full-width" data-form-loaded="立即登入">正在载入</button>
|
||||
|
@ -38,5 +38,11 @@
|
||||
"@php think service:discover",
|
||||
"@php think vendor:publish"
|
||||
]
|
||||
},
|
||||
"repositories": {
|
||||
"packagist": {
|
||||
"type": "composer",
|
||||
"url": "https://mirrors.aliyun.com/composer"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
130
composer.lock
generated
130
composer.lock
generated
@ -4,7 +4,7 @@
|
||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"content-hash": "25a15eb2c8beff5d87d174b5d6f25052",
|
||||
"content-hash": "44a6bc247971794be9edd9df4f3dd0b9",
|
||||
"packages": [
|
||||
{
|
||||
"name": "league/flysystem",
|
||||
@ -18,7 +18,13 @@
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a",
|
||||
"reference": "0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a",
|
||||
"shasum": ""
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"ext-fileinfo": "*",
|
||||
@ -102,7 +108,13 @@
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/08ef74e9be88100807a3b92cc9048a312bf01d6f",
|
||||
"reference": "08ef74e9be88100807a3b92cc9048a312bf01d6f",
|
||||
"shasum": ""
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"league/flysystem": "~1.0",
|
||||
@ -149,7 +161,13 @@
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/opis/closure/zipball/e79f851749c3caa836d7ccc01ede5828feb762c7",
|
||||
"reference": "e79f851749c3caa836d7ccc01ede5828feb762c7",
|
||||
"shasum": ""
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"php": "^5.4 || ^7.0"
|
||||
@ -210,7 +228,13 @@
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
|
||||
"reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
|
||||
"shasum": ""
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.3.0"
|
||||
@ -256,7 +280,13 @@
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
|
||||
"reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
|
||||
"shasum": ""
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.3.0"
|
||||
@ -305,7 +335,13 @@
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801",
|
||||
"reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801",
|
||||
"shasum": ""
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.3.0"
|
||||
@ -352,7 +388,13 @@
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
|
||||
"reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
|
||||
"shasum": ""
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.3.0"
|
||||
@ -400,7 +442,13 @@
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/top-think/framework/zipball/79c555aab0313d1a33ddcdb3c395f2c47f37f597",
|
||||
"reference": "79c555aab0313d1a33ddcdb3c395f2c47f37f597",
|
||||
"shasum": ""
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"ext-json": "*",
|
||||
@ -462,7 +510,13 @@
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/top-think/think-helper/zipball/4d85dfd3778623bbb1de3648f1dcd0c82f4439f4",
|
||||
"reference": "4d85dfd3778623bbb1de3648f1dcd0c82f4439f4",
|
||||
"shasum": ""
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.1.0"
|
||||
@ -501,7 +555,13 @@
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/top-think/think-multi-app/zipball/215f4a6bb88e53ad41b448c61957336eb55ce6f9",
|
||||
"reference": "215f4a6bb88e53ad41b448c61957336eb55ce6f9",
|
||||
"shasum": ""
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.1.0",
|
||||
@ -545,7 +605,13 @@
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/top-think/think-orm/zipball/ff5f112f5559497222f2716385b5a709ab82741b",
|
||||
"reference": "ff5f112f5559497222f2716385b5a709ab82741b",
|
||||
"shasum": ""
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"ext-json": "*",
|
||||
@ -590,7 +656,13 @@
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/top-think/think-template/zipball/e98bdbb4a4c94b442f17dfceba81e0134d4fbd19",
|
||||
"reference": "e98bdbb4a4c94b442f17dfceba81e0134d4fbd19",
|
||||
"shasum": ""
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.1.0",
|
||||
@ -627,7 +699,13 @@
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/top-think/think-view/zipball/90803b73f781db5d42619082c4597afc58b2d4c5",
|
||||
"reference": "90803b73f781db5d42619082c4597afc58b2d4c5",
|
||||
"shasum": ""
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.1.0",
|
||||
@ -664,7 +742,13 @@
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/zoujingli/ip2region/zipball/f898a7d90cfacd54433de4028190c336164f2ae4",
|
||||
"reference": "f898a7d90cfacd54433de4028190c336164f2ae4",
|
||||
"shasum": ""
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.3"
|
||||
@ -699,13 +783,19 @@
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/zoujingli/ThinkLibrary.git",
|
||||
"reference": "00fe6b75407a6dbde28add584886ad7e48abc604"
|
||||
"reference": "f4227bd9d2d2d1634bd749cf47642f61a43c507e"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/00fe6b75407a6dbde28add584886ad7e48abc604",
|
||||
"reference": "00fe6b75407a6dbde28add584886ad7e48abc604",
|
||||
"shasum": ""
|
||||
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/f4227bd9d2d2d1634bd749cf47642f61a43c507e",
|
||||
"reference": "f4227bd9d2d2d1634bd749cf47642f61a43c507e",
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"ext-curl": "*",
|
||||
@ -742,7 +832,7 @@
|
||||
],
|
||||
"description": "ThinkPHP v6.0 Development Library",
|
||||
"homepage": "http://framework.thinkadmin.top",
|
||||
"time": "2019-11-22T02:07:09+00:00"
|
||||
"time": "2019-11-23T08:36:34+00:00"
|
||||
}
|
||||
],
|
||||
"packages-dev": [],
|
||||
|
@ -18,8 +18,7 @@ $(function () {
|
||||
that = this;
|
||||
require(["md5"], function (md5) {
|
||||
$("form").vali(function (data) {
|
||||
data['password'] = md5.hash(md5.hash(data['password']) + data['username']);
|
||||
if (data['skey']) delete data['skey'];
|
||||
data['password'] = md5.hash(md5.hash(data['password']) + data['uniqid']);
|
||||
$.form.load(location.href, data, "post", function (ret) {
|
||||
if (parseInt(ret.code) !== 1) {
|
||||
$(that).find('.verify.layui-hide').removeClass('layui-hide');
|
||||
|
128
vendor/composer/installed.json
vendored
128
vendor/composer/installed.json
vendored
@ -12,7 +12,13 @@
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a",
|
||||
"reference": "0e9db7f0b96b9f12dcf6f65bc34b72b1a30ea55a",
|
||||
"shasum": ""
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"ext-fileinfo": "*",
|
||||
@ -98,7 +104,13 @@
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/08ef74e9be88100807a3b92cc9048a312bf01d6f",
|
||||
"reference": "08ef74e9be88100807a3b92cc9048a312bf01d6f",
|
||||
"shasum": ""
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"league/flysystem": "~1.0",
|
||||
@ -147,7 +159,13 @@
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/opis/closure/zipball/e79f851749c3caa836d7ccc01ede5828feb762c7",
|
||||
"reference": "e79f851749c3caa836d7ccc01ede5828feb762c7",
|
||||
"shasum": ""
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"php": "^5.4 || ^7.0"
|
||||
@ -210,7 +228,13 @@
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
|
||||
"reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
|
||||
"shasum": ""
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.3.0"
|
||||
@ -258,7 +282,13 @@
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/php-fig/container/zipball/b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
|
||||
"reference": "b7ce3b176482dbbc1245ebf52b181af44c2cf55f",
|
||||
"shasum": ""
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.3.0"
|
||||
@ -309,7 +339,13 @@
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801",
|
||||
"reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801",
|
||||
"shasum": ""
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.3.0"
|
||||
@ -358,7 +394,13 @@
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
|
||||
"reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
|
||||
"shasum": ""
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.3.0"
|
||||
@ -408,7 +450,13 @@
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/top-think/framework/zipball/79c555aab0313d1a33ddcdb3c395f2c47f37f597",
|
||||
"reference": "79c555aab0313d1a33ddcdb3c395f2c47f37f597",
|
||||
"shasum": ""
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"ext-json": "*",
|
||||
@ -472,7 +520,13 @@
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/top-think/think-helper/zipball/4d85dfd3778623bbb1de3648f1dcd0c82f4439f4",
|
||||
"reference": "4d85dfd3778623bbb1de3648f1dcd0c82f4439f4",
|
||||
"shasum": ""
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.1.0"
|
||||
@ -513,7 +567,13 @@
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/top-think/think-multi-app/zipball/215f4a6bb88e53ad41b448c61957336eb55ce6f9",
|
||||
"reference": "215f4a6bb88e53ad41b448c61957336eb55ce6f9",
|
||||
"shasum": ""
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.1.0",
|
||||
@ -559,7 +619,13 @@
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/top-think/think-orm/zipball/ff5f112f5559497222f2716385b5a709ab82741b",
|
||||
"reference": "ff5f112f5559497222f2716385b5a709ab82741b",
|
||||
"shasum": ""
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"ext-json": "*",
|
||||
@ -606,7 +672,13 @@
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/top-think/think-template/zipball/e98bdbb4a4c94b442f17dfceba81e0134d4fbd19",
|
||||
"reference": "e98bdbb4a4c94b442f17dfceba81e0134d4fbd19",
|
||||
"shasum": ""
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.1.0",
|
||||
@ -645,7 +717,13 @@
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/top-think/think-view/zipball/90803b73f781db5d42619082c4597afc58b2d4c5",
|
||||
"reference": "90803b73f781db5d42619082c4597afc58b2d4c5",
|
||||
"shasum": ""
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.1.0",
|
||||
@ -684,7 +762,13 @@
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/zoujingli/ip2region/zipball/f898a7d90cfacd54433de4028190c336164f2ae4",
|
||||
"reference": "f898a7d90cfacd54433de4028190c336164f2ae4",
|
||||
"shasum": ""
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.3"
|
||||
@ -721,13 +805,19 @@
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/zoujingli/ThinkLibrary.git",
|
||||
"reference": "00fe6b75407a6dbde28add584886ad7e48abc604"
|
||||
"reference": "f4227bd9d2d2d1634bd749cf47642f61a43c507e"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/00fe6b75407a6dbde28add584886ad7e48abc604",
|
||||
"reference": "00fe6b75407a6dbde28add584886ad7e48abc604",
|
||||
"shasum": ""
|
||||
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/f4227bd9d2d2d1634bd749cf47642f61a43c507e",
|
||||
"reference": "f4227bd9d2d2d1634bd749cf47642f61a43c507e",
|
||||
"shasum": "",
|
||||
"mirrors": [
|
||||
{
|
||||
"url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
|
||||
"preferred": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"ext-curl": "*",
|
||||
@ -736,7 +826,7 @@
|
||||
"ext-json": "*",
|
||||
"topthink/framework": "^6.0"
|
||||
},
|
||||
"time": "2019-11-22T02:07:09+00:00",
|
||||
"time": "2019-11-23T08:36:34+00:00",
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"think": {
|
||||
|
2
vendor/services.php
vendored
2
vendor/services.php
vendored
@ -1,5 +1,5 @@
|
||||
<?php
|
||||
// This file is automatically generated at:2019-11-22 10:10:27
|
||||
// This file is automatically generated at:2019-11-23 16:43:02
|
||||
declare (strict_types = 1);
|
||||
return array (
|
||||
0 => 'think\\app\\Service',
|
||||
|
@ -70,7 +70,7 @@ class Controller extends \stdClass
|
||||
$this->app = $app;
|
||||
$this->request = $app->request;
|
||||
$this->app->bind('think\admin\Controller', $this);
|
||||
if (in_array($this->app->request->action(), get_class_methods(__CLASS__))) {
|
||||
if (in_array($this->request->action(), get_class_methods(__CLASS__))) {
|
||||
$this->error('Access without permission.');
|
||||
}
|
||||
$this->initialize();
|
||||
@ -218,6 +218,37 @@ class Controller extends \stdClass
|
||||
return FormHelper::instance()->init($dbQuery, $template, $field, $where, $data);
|
||||
}
|
||||
|
||||
/**
|
||||
* 快捷输入并验证( 支持 规则 # 别名 )
|
||||
* @param array $rules 验证规则( 验证信息数组 )
|
||||
* @param string $type 输入方式 ( post. 或 get. )
|
||||
* @return array
|
||||
*/
|
||||
protected function _vali(array $rules, $type = '')
|
||||
{
|
||||
list($data, $rule, $info) = [[], [], []];
|
||||
foreach ($rules as $name => $message) {
|
||||
if (stripos($name, '#') !== false) {
|
||||
list($name, $alias) = explode('#', $name);
|
||||
}
|
||||
if (stripos($name, '.') === false) {
|
||||
$data[$name] = empty($alias) ? $name : $alias;
|
||||
} else {
|
||||
list($_rgx) = explode(':', $name);
|
||||
list($_key, $_rule) = explode('.', $name);
|
||||
$info[$_rgx] = $message;
|
||||
$data[$_key] = empty($alias) ? $_key : $alias;
|
||||
$rule[$_key] = empty($rule[$_key]) ? $_rule : "{$rule[$_key]}|{$_rule}";
|
||||
}
|
||||
}
|
||||
foreach ($data as $key => $name) $data[$key] = input("{$type}{$name}");
|
||||
if ($this->app->validate->rule($rule)->message($info)->check($data)) {
|
||||
return $data;
|
||||
} else {
|
||||
$this->error($this->app->validate->getError());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 快捷更新逻辑器
|
||||
* @param string|Query $dbQuery
|
||||
|
@ -37,9 +37,7 @@ abstract class Service
|
||||
*/
|
||||
public function __construct(App $app)
|
||||
{
|
||||
|
||||
$this->app = $app;
|
||||
$this->initialize();
|
||||
}
|
||||
|
||||
/**
|
||||
@ -55,6 +53,8 @@ abstract class Service
|
||||
*/
|
||||
public static function instance()
|
||||
{
|
||||
return Container::getInstance()->make(static::class);
|
||||
$service = Container::getInstance()->make(static::class);
|
||||
$service->initialize();
|
||||
return $service;
|
||||
}
|
||||
}
|
@ -21,7 +21,7 @@ use think\console\Input;
|
||||
use think\console\Output;
|
||||
|
||||
/**
|
||||
* 启动监听异步任务守护的主进程
|
||||
* 启动监听任务的主进程
|
||||
* Class ListenQueue
|
||||
* @package think\admin\queue
|
||||
*/
|
||||
|
@ -21,7 +21,7 @@ use think\console\Input;
|
||||
use think\console\Output;
|
||||
|
||||
/**
|
||||
* 查询正在执行中的进程PID信息
|
||||
* 查询正在执行的进程PID
|
||||
* Class QueryQueue
|
||||
* @package think\admin\queue
|
||||
*/
|
||||
|
@ -21,7 +21,7 @@ use think\console\Input;
|
||||
use think\console\Output;
|
||||
|
||||
/**
|
||||
* 查看异步任务监听的主进程状态
|
||||
* 查看任务监听的主进程状态
|
||||
* Class StateQueue
|
||||
* @package think\admin\queue
|
||||
*/
|
||||
|
@ -21,7 +21,7 @@ use think\console\Input;
|
||||
use think\console\Output;
|
||||
|
||||
/**
|
||||
* 平滑停止异步任务守护的主进程
|
||||
* 平滑停止任务的所有进程
|
||||
* Class StopQueue
|
||||
* @package think\admin\queue
|
||||
*/
|
||||
|
@ -83,6 +83,19 @@ class CaptchaService extends Service
|
||||
return $this->uniqid;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取验证码数据
|
||||
* @return array
|
||||
*/
|
||||
public function getAttrs()
|
||||
{
|
||||
return [
|
||||
'code' => $this->getCode(),
|
||||
'data' => $this->getData(),
|
||||
'uniqid' => $this->getUniqid(),
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* 检查验证码是否正确
|
||||
* @param string $code 需要验证的值
|
||||
|
@ -176,4 +176,20 @@ class SystemService extends Service
|
||||
$new ? file_put_contents($file, $str) : file_put_contents($file, $str, FILE_APPEND);
|
||||
}
|
||||
|
||||
/**
|
||||
* 判断运行环境
|
||||
* @param string $type 运行模式(dev|demo|local)
|
||||
* @return boolean
|
||||
*/
|
||||
public function checkRunMode($type = 'dev')
|
||||
{
|
||||
$domain = $this->app->request->host(true);
|
||||
$isDemo = is_numeric(stripos($domain, 'thinkadmin.top'));
|
||||
$isLocal = in_array($domain, ['127.0.0.1', 'localhost']);
|
||||
if ($type === 'dev') return $isLocal || $isDemo;
|
||||
if ($type === 'demo') return $isDemo;
|
||||
if ($type === 'local') return $isLocal;
|
||||
return true;
|
||||
}
|
||||
|
||||
}
|
@ -997,4 +997,5 @@ return [
|
||||
'movie' => 'video/x-sgi-movie',
|
||||
'smv' => 'video/x-smv',
|
||||
'ice' => 'x-conference/x-cooltalk',
|
||||
'pem' => 'application/x-pem-file',
|
||||
];
|
Loading…
x
Reference in New Issue
Block a user