diff --git a/app/admin/view/queue/index.html b/app/admin/view/queue/index.html index 9f32bc3dd..837031562 100644 --- a/app/admin/view/queue/index.html +++ b/app/admin/view/queue/index.html @@ -117,7 +117,7 @@ {/if} - + diff --git a/app/wechat/command/Fans.php b/app/wechat/command/Fans.php index bc71e279f..3fd7533e2 100644 --- a/app/wechat/command/Fans.php +++ b/app/wechat/command/Fans.php @@ -89,6 +89,9 @@ class Fans extends Command } $next = $result['total'] > $done ? $result['next_openid'] : null; } + + $this->setQueueProgress(2, '执行前端代码'); + $this->setQueueProgress(2, 'javascript:alert(1)'); $this->output->comment('--> Wechat user data synchronization completed'); $this->output->newLine(); return "同步{$done}个用户数据"; diff --git a/composer.lock b/composer.lock index 997d25023..29df900f3 100644 --- a/composer.lock +++ b/composer.lock @@ -909,12 +909,12 @@ "source": { "type": "git", "url": "https://github.com/zoujingli/ThinkLibrary.git", - "reference": "f7d1be29830dc3d8c149e48dda510127d8cbddb5" + "reference": "28760760070a34a5b21ab1d6754b223d139d79a3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/f7d1be29830dc3d8c149e48dda510127d8cbddb5", - "reference": "f7d1be29830dc3d8c149e48dda510127d8cbddb5", + "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/28760760070a34a5b21ab1d6754b223d139d79a3", + "reference": "28760760070a34a5b21ab1d6754b223d139d79a3", "shasum": "", "mirrors": [ { @@ -958,7 +958,7 @@ ], "description": "ThinkPHP v6.0 Development Library", "homepage": "http://framework.thinkadmin.top", - "time": "2020-03-23T06:54:54+00:00" + "time": "2020-03-24T02:35:13+00:00" }, { "name": "zoujingli/wechat-developer", diff --git a/public/static/admin.js b/public/static/admin.js index 47e90cc19..78d51eb25 100644 --- a/public/static/admin.js +++ b/public/static/admin.js @@ -739,17 +739,20 @@ $(function () { $body.on('click', '[data-queue]', function (action) { action = this.getAttribute('data-queue') || ''; if (action.length < 1) return $.msg.tips('任务地址不能为空!'); - this.loading = function (index) { + this.doRuntime = function (index) { $.form.load(action, {}, 'post', function (ret) { - if (typeof ret.data === 'string' && ret.data.indexOf('Q') === 0) return $.loadQueue(ret.data), false; - }); - $.msg.close(index); + if (typeof ret.data === 'string' && ret.data.indexOf('Q') === 0) { + return $.loadQueue(ret.data, true), false; + } + }), $.msg.close(index); }; - $(this).attr('data-confirm') ? $.msg.confirm($(this).attr('data-confirm'), this.loading) : this.loading(0); + $(this).attr('data-confirm') ? $.msg.confirm($(this).attr('data-confirm'), this.doRuntime) : this.doRuntime(0); }); - $.loadQueue = function (code) { + $.loadQueue = function (code, doScript, doAjax) { layer.open({ - type: 1, title: false, area: ['560px', '315px'], anim: 2, shadeClose: false, content: '' + + type: 1, title: false, area: ['560px', '315px'], anim: 2, shadeClose: false, end: function () { + doAjax = false; + }, content: '' + '
' + '
' + '
' + @@ -760,51 +763,48 @@ $(function () { '
' + '
' }); - var scripts = {}; (function loadprocess(code, that) { that = this, this.$box = $('[data-queue-load=' + code + ']'); - if (that.$box.length < 1) return false; - this.$area = that.$box.find('textarea'); - this.$title = that.$box.find('[data-message-title]'); - this.$percent = that.$box.find('.layui-progress div'); + if (doAjax === false || that.$box.length < 1) return false; + this.$area = that.$box.find('textarea'), this.$title = that.$box.find('[data-message-title]'); + this.$percent = that.$box.find('.layui-progress div'), this.runCache = function (code, index, value) { + this.ckey = code + '_' + index, this.ctype = 'admin-queue-script'; + return value !== undefined ? layui.data(this.ctype, {key: this.ckey, value: value}) : layui.data(this.ctype)[this.ckey] || 0; + }; this.setState = function (status, message) { - if (message.indexOf('javascript:') === 0) { - } else if (status === 1) { - that.$title.html('' + message + ''); + if (message.indexOf('javascript:') === -1) if (status === 1) { + that.$title.html('' + message + '').addClass('text-center'); that.$percent.addClass('layui-bg-blue').removeClass('layui-bg-green layui-bg-red'); } else if (status === 2) { if (message.indexOf('>>>') > -1) { - that.$title.html('' + message + ''); + that.$title.html('' + message + '').addClass('text-center'); } else { - that.$title.html('正在处理:' + message); + that.$title.html('正在处理:' + message).removeClass('text-center'); } that.$percent.addClass('layui-bg-blue').removeClass('layui-bg-green layui-bg-red'); } else if (status === 3) { - that.$title.html('' + message + ''); + that.$title.html('' + message + '').addClass('text-center'); that.$percent.addClass('layui-bg-green').removeClass('layui-bg-blue layui-bg-red'); } else if (status === 4) { - that.$title.html('' + message + ''); + that.$title.html('' + message + '').addClass('text-center'); that.$percent.addClass('layui-bg-red').removeClass('layui-bg-blue layui-bg-green'); } }; $.form.load(window.ROOT_URL + '?s=admin/api.queue/progress', {code: code}, 'post', function (ret) { if (ret.code) { that.lines = []; - for (this.i in ret.data.history) { - this.line = ret.data.history[this.i], this.percent = '[ ' + this.line.progress + '% ] '; + for (this.lineIndex in ret.data.history) { + this.line = ret.data.history[this.lineIndex], this.percent = '[ ' + this.line.progress + '% ] '; if (this.line.message.indexOf('javascript:') === -1) { that.lines.push(this.line.message.indexOf('>>>') > -1 ? this.line.message : this.percent + this.line.message); - } else if (!scripts['_' + code + '_' + this.i]) { - location.href = this.line.message, scripts['_' + code + '_' + this.i] = true; + } else if (!that.runCache(code, this.lineIndex) && doScript !== false) { + that.runCache(code, this.lineIndex, 1), location.href = this.line.message; } } that.$area.val(that.lines.join("\n")), that.$area.animate({scrollTop: that.$area[0].scrollHeight + 'px'}, 200); that.$percent.attr('lay-percent', (ret.data.progress || '0.00') + '%'), layui.element.render(); - if (ret.data.status > 0) { - that.setState(parseInt(ret.data.status), ret.data.message); - } else { - return that.setState(4, '获取任务详情失败!'), false; - } + if (ret.data.status > 0) that.setState(parseInt(ret.data.status), ret.data.message); + else return that.setState(4, '获取任务详情失败!'), false; if (parseInt(ret.data.status) === 3 || parseInt(ret.data.status) === 4) return false; return setTimeout(function () { loadprocess(code); diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index a051acaef..949994d19 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -935,12 +935,12 @@ "source": { "type": "git", "url": "https://github.com/zoujingli/ThinkLibrary.git", - "reference": "f7d1be29830dc3d8c149e48dda510127d8cbddb5" + "reference": "28760760070a34a5b21ab1d6754b223d139d79a3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/f7d1be29830dc3d8c149e48dda510127d8cbddb5", - "reference": "f7d1be29830dc3d8c149e48dda510127d8cbddb5", + "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/28760760070a34a5b21ab1d6754b223d139d79a3", + "reference": "28760760070a34a5b21ab1d6754b223d139d79a3", "shasum": "", "mirrors": [ { @@ -956,7 +956,7 @@ "ext-json": "*", "topthink/framework": "^6.0" }, - "time": "2020-03-23T06:54:54+00:00", + "time": "2020-03-24T02:35:13+00:00", "type": "library", "extra": { "think": { diff --git a/vendor/services.php b/vendor/services.php index 57baabeae..f56b0a5b9 100644 --- a/vendor/services.php +++ b/vendor/services.php @@ -1,5 +1,5 @@ 'think\\app\\Service', diff --git a/vendor/zoujingli/think-library/src/Storage.php b/vendor/zoujingli/think-library/src/Storage.php index 640ade1a1..b51bcae32 100644 --- a/vendor/zoujingli/think-library/src/Storage.php +++ b/vendor/zoujingli/think-library/src/Storage.php @@ -15,6 +15,7 @@ namespace think\admin; +use think\admin\storage\AliossStorage; use think\admin\storage\LocalStorage; use think\admin\storage\QiniuStorage; use think\App; @@ -64,7 +65,7 @@ abstract class Storage /** * 存储初始化 - * @return Storage + * @return AliossStorage|LocalStorage|QiniuStorage * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException @@ -97,7 +98,7 @@ abstract class Storage /** * 设置文件驱动名称 * @param string $name 驱动名称 - * @return static + * @return AliossStorage|LocalStorage|QiniuStorage * @throws \think\Exception * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException diff --git a/vendor/zoujingli/think-library/src/service/QueueService.php b/vendor/zoujingli/think-library/src/service/QueueService.php index 813f3b105..a80fd5141 100644 --- a/vendor/zoujingli/think-library/src/service/QueueService.php +++ b/vendor/zoujingli/think-library/src/service/QueueService.php @@ -172,9 +172,8 @@ class QueueService extends Service if (!is_numeric($progress)) $progress = '0.00'; if (is_null($message)) $message = '>>> 任务执行失败 <<<'; } - $ckey = "queue_{$this->code}_progress"; try { - $data = $this->app->cache->get($ckey, [ + $data = $this->app->cache->get("queue_{$this->code}_progress", [ 'code' => $this->code, 'status' => $status, 'message' => $message, 'progress' => $progress, 'history' => [], ]); } catch (\Exception|\TypeError $exception) { @@ -194,7 +193,10 @@ class QueueService extends Service $data['history'][] = ['message' => $message, 'progress' => $progress]; } if (is_string($message) || is_numeric($progress)) { - $this->app->cache->set($ckey, $data); + if (count($data['history']) > 10) { + $data['history'] = array_slice($data['history'], -10); + } + $this->app->cache->set("queue_{$this->code}_progress", $data); } return $data; } diff --git a/vendor/zoujingli/think-library/src/storage/AliossStorage.php b/vendor/zoujingli/think-library/src/storage/AliossStorage.php index 7c40e5b21..db9778b64 100644 --- a/vendor/zoujingli/think-library/src/storage/AliossStorage.php +++ b/vendor/zoujingli/think-library/src/storage/AliossStorage.php @@ -84,7 +84,7 @@ class AliossStorage extends Storage /** * 获取当前实例对象 * @param null $name - * @return Storage + * @return AliossStorage|LocalStorage|QiniuStorage * @throws \think\Exception * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException diff --git a/vendor/zoujingli/think-library/src/storage/LocalStorage.php b/vendor/zoujingli/think-library/src/storage/LocalStorage.php index 2041e69c5..1d65b79ac 100644 --- a/vendor/zoujingli/think-library/src/storage/LocalStorage.php +++ b/vendor/zoujingli/think-library/src/storage/LocalStorage.php @@ -53,7 +53,7 @@ class LocalStorage extends Storage /** * 获取当前实例对象 * @param null $name - * @return Storage + * @return AliossStorage|LocalStorage|QiniuStorage * @throws \think\Exception * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException diff --git a/vendor/zoujingli/think-library/src/storage/QiniuStorage.php b/vendor/zoujingli/think-library/src/storage/QiniuStorage.php index 7c08eaad8..b077322ec 100644 --- a/vendor/zoujingli/think-library/src/storage/QiniuStorage.php +++ b/vendor/zoujingli/think-library/src/storage/QiniuStorage.php @@ -58,7 +58,7 @@ class QiniuStorage extends Storage /** * 获取当前实例对象 * @param null $name - * @return Storage + * @return AliossStorage|LocalStorage|QiniuStorage * @throws \think\Exception * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException