mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
更新同步插件代码
This commit is contained in:
parent
2e15451544
commit
d2cfa2575e
@ -81,77 +81,82 @@ class Upload extends Controller
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 文件上传检查
|
* 文件上传检查
|
||||||
* @throws \think\admin\Exception
|
|
||||||
*/
|
*/
|
||||||
public function state()
|
public function state()
|
||||||
{
|
{
|
||||||
[$uuid, $unid] = $this->initUnid();
|
try {
|
||||||
[$name, $safe] = [input('name'), $this->getSafe()];
|
[$uuid, $unid] = $this->initUnid();
|
||||||
$data = ['uptype' => $this->getType(), 'safe' => intval($safe), 'key' => input('key')];
|
[$name, $safe] = [input('name'), $this->getSafe()];
|
||||||
$file = SystemFile::mk()->data($this->_vali([
|
$data = ['uptype' => $this->getType(), 'safe' => intval($safe), 'key' => input('key')];
|
||||||
'xkey.value' => $data['key'],
|
$file = SystemFile::mk()->data($this->_vali([
|
||||||
'type.value' => $this->getType(),
|
'xkey.value' => $data['key'],
|
||||||
'uuid.value' => $uuid,
|
'type.value' => $this->getType(),
|
||||||
'unid.value' => $unid,
|
'uuid.value' => $uuid,
|
||||||
'name.require' => '名称不能为空!',
|
'unid.value' => $unid,
|
||||||
'hash.require' => '哈希不能为空!',
|
'name.require' => '名称不能为空!',
|
||||||
'xext.require' => '后缀不能为空!',
|
'hash.require' => '哈希不能为空!',
|
||||||
'size.require' => '大小不能为空!',
|
'xext.require' => '后缀不能为空!',
|
||||||
'mime.default' => '',
|
'size.require' => '大小不能为空!',
|
||||||
'status.value' => 1,
|
'mime.default' => '',
|
||||||
]));
|
'status.value' => 1,
|
||||||
$mime = $file->getAttr('mime');
|
]));
|
||||||
if (empty($mime)) $file->setAttr('mime', Storage::mime($file->getAttr('xext')));
|
$mime = $file->getAttr('mime');
|
||||||
$info = Storage::instance($data['uptype'])->info($data['key'], $safe, $name);
|
if (empty($mime)) $file->setAttr('mime', Storage::mime($file->getAttr('xext')));
|
||||||
if (isset($info['url']) && isset($info['key'])) {
|
$info = Storage::instance($data['uptype'])->info($data['key'], $safe, $name);
|
||||||
$file->save(['xurl' => $info['url'], 'isfast' => 1, 'issafe' => $data['safe']]);
|
if (isset($info['url']) && isset($info['key'])) {
|
||||||
$extr = ['id' => $file->id ?? 0, 'url' => $info['url'], 'key' => $info['key']];
|
$file->save(['xurl' => $info['url'], 'isfast' => 1, 'issafe' => $data['safe']]);
|
||||||
$this->success('文件已经上传', array_merge($data, $extr), 200);
|
$extr = ['id' => $file->id ?? 0, 'url' => $info['url'], 'key' => $info['key']];
|
||||||
} elseif ('local' === $data['uptype']) {
|
$this->success('文件已经上传', array_merge($data, $extr), 200);
|
||||||
$local = LocalStorage::instance();
|
} elseif ('local' === $data['uptype']) {
|
||||||
$data['url'] = $local->url($data['key'], $safe, $name);
|
$local = LocalStorage::instance();
|
||||||
$data['server'] = $local->upload();
|
$data['url'] = $local->url($data['key'], $safe, $name);
|
||||||
} elseif ('qiniu' === $data['uptype']) {
|
$data['server'] = $local->upload();
|
||||||
$qiniu = QiniuStorage::instance();
|
} elseif ('qiniu' === $data['uptype']) {
|
||||||
$data['url'] = $qiniu->url($data['key'], $safe, $name);
|
$qiniu = QiniuStorage::instance();
|
||||||
$data['token'] = $qiniu->token($data['key'], 3600, $name);
|
$data['url'] = $qiniu->url($data['key'], $safe, $name);
|
||||||
$data['server'] = $qiniu->upload();
|
$data['token'] = $qiniu->token($data['key'], 3600, $name);
|
||||||
} elseif ('alioss' === $data['uptype']) {
|
$data['server'] = $qiniu->upload();
|
||||||
$alioss = AliossStorage::instance();
|
} elseif ('alioss' === $data['uptype']) {
|
||||||
$token = $alioss->token($data['key'], 3600, $name);
|
$alioss = AliossStorage::instance();
|
||||||
$data['url'] = $token['siteurl'];
|
$token = $alioss->token($data['key'], 3600, $name);
|
||||||
$data['policy'] = $token['policy'];
|
$data['url'] = $token['siteurl'];
|
||||||
$data['signature'] = $token['signature'];
|
$data['policy'] = $token['policy'];
|
||||||
$data['OSSAccessKeyId'] = $token['keyid'];
|
$data['signature'] = $token['signature'];
|
||||||
$data['server'] = $alioss->upload();
|
$data['OSSAccessKeyId'] = $token['keyid'];
|
||||||
} elseif ('txcos' === $data['uptype']) {
|
$data['server'] = $alioss->upload();
|
||||||
$txcos = TxcosStorage::instance();
|
} elseif ('txcos' === $data['uptype']) {
|
||||||
$token = $txcos->token($data['key'], 3600, $name);
|
$txcos = TxcosStorage::instance();
|
||||||
$data['url'] = $token['siteurl'];
|
$token = $txcos->token($data['key'], 3600, $name);
|
||||||
$data['q-ak'] = $token['q-ak'];
|
$data['url'] = $token['siteurl'];
|
||||||
$data['policy'] = $token['policy'];
|
$data['q-ak'] = $token['q-ak'];
|
||||||
$data['q-key-time'] = $token['q-key-time'];
|
$data['policy'] = $token['policy'];
|
||||||
$data['q-signature'] = $token['q-signature'];
|
$data['q-key-time'] = $token['q-key-time'];
|
||||||
$data['q-sign-algorithm'] = $token['q-sign-algorithm'];
|
$data['q-signature'] = $token['q-signature'];
|
||||||
$data['server'] = $txcos->upload();
|
$data['q-sign-algorithm'] = $token['q-sign-algorithm'];
|
||||||
} elseif ('upyun' === $data['uptype']) {
|
$data['server'] = $txcos->upload();
|
||||||
$upyun = UpyunStorage::instance();
|
} elseif ('upyun' === $data['uptype']) {
|
||||||
$token = $upyun->token($data['key'], 3600, $name, input('hash', ''));
|
$upyun = UpyunStorage::instance();
|
||||||
$data['url'] = $token['siteurl'];
|
$token = $upyun->token($data['key'], 3600, $name, input('hash', ''));
|
||||||
$data['policy'] = $token['policy'];
|
$data['url'] = $token['siteurl'];
|
||||||
$data['server'] = $upyun->upload();
|
$data['policy'] = $token['policy'];
|
||||||
$data['authorization'] = $token['authorization'];
|
$data['server'] = $upyun->upload();
|
||||||
} elseif ('alist' === $data['uptype']) {
|
$data['authorization'] = $token['authorization'];
|
||||||
$alist = AlistStorage::instance();
|
} elseif ('alist' === $data['uptype']) {
|
||||||
$data['url'] = $alist->url($data['key']);
|
$alist = AlistStorage::instance();
|
||||||
$data['server'] = $alist->upload();
|
$data['url'] = $alist->url($data['key']);
|
||||||
$data['filepath'] = $alist->real($data['key'], true);
|
$data['server'] = $alist->upload();
|
||||||
$data['authorization'] = $alist->token();
|
$data['filepath'] = $alist->real($data['key'], true);
|
||||||
} else {
|
$data['authorization'] = $alist->token();
|
||||||
$this->error('未知的存储引擎!');
|
} else {
|
||||||
|
$this->error('未知的存储引擎!');
|
||||||
|
}
|
||||||
|
$file->save(['xurl' => $data['url'], 'isfast' => 0, 'issafe' => $data['safe']]);
|
||||||
|
$this->success('获取上传授权参数', array_merge($data, ['id' => $file->id ?? 0]), 404);
|
||||||
|
} catch (HttpResponseException $exception) {
|
||||||
|
throw $exception;
|
||||||
|
} catch (\Exception $exception) {
|
||||||
|
$this->error($exception->getMessage());
|
||||||
}
|
}
|
||||||
$file->save(['xurl' => $data['url'], 'isfast' => 0, 'issafe' => $data['safe']]);
|
|
||||||
$this->success('获取上传授权参数', array_merge($data, ['id' => $file->id ?? 0]), 404);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -39,12 +39,12 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="layui-form-item">
|
<div class="layui-form-item">
|
||||||
<label class="layui-form-label" for="storage.alist_userpath">
|
<label class="layui-form-label" for="storage.alist_savepath">
|
||||||
<b class="color-green">存储目录</b><br><span class="nowrap color-desc">Directory</span>
|
<b class="color-green">存储目录</b><br><span class="nowrap color-desc">Directory</span>
|
||||||
</label>
|
</label>
|
||||||
<div class="layui-input-block">
|
<div class="layui-input-block">
|
||||||
<input id="storage.alist_userpath" type="text" name="storage.alist_userpath" value="{:sysconf('storage.alist_userpath')}" required vali-name="存储目录" placeholder="请输入 Alist 存储存储目录" class="layui-input">
|
<input id="storage.alist_savepath" type="text" name="storage.alist_savepath" value="{:sysconf('storage.alist_savepath')}" required vali-name="存储目录" placeholder="请输入 Alist 存储目录" class="layui-input">
|
||||||
<p class="help-block">请填写 Alist 存储目录 ( 如:/uploads ),填写 / 表示根目录( 需要拥有读写权限 )</p>
|
<p class="help-block">请填写 Alist 用户基本目录的相对存储位置,填写 / 表示用户基本目录( 需要拥有读写权限 )</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -33,12 +33,15 @@
|
|||||||
{
|
{
|
||||||
field: 'xurl', title: '查看文件', width: '7%', align: 'center', templet: function (d) {
|
field: 'xurl', title: '查看文件', width: '7%', align: 'center', templet: function (d) {
|
||||||
if (typeof d.mime === 'string' && /^image\//.test(d.mime)) {
|
if (typeof d.mime === 'string' && /^image\//.test(d.mime)) {
|
||||||
return laytpl('<div><a target="_blank" data-tips-hover data-tips-image="{{d.xurl}}"><i class="layui-icon layui-icon-eye"></i></a></div>').render(d)
|
return laytpl('<div><a target="_blank" data-tips-hover data-tips-image="{{d.xurl}}"><i class="layui-icon layui-icon-picture"></i></a></div>').render(d)
|
||||||
} else if (typeof d.mime === 'string' && /^(video|audio)\//.test(d.mime)) {
|
|
||||||
return laytpl('<div><a target="_blank" data-iframe="{{d.xurl}}" data-title="查看媒体">查看</a></div>').render(d);
|
|
||||||
} else {
|
|
||||||
return laytpl('<div><a target="_blank" href="{{d.xurl}}">查看</a></div>').render(d);
|
|
||||||
}
|
}
|
||||||
|
if (typeof d.mime === 'string' && /^video\//.test(d.mime)) {
|
||||||
|
return laytpl('<div><a target="_blank" data-video-player="{{d.xurl}}" data-tips-text="播放视频"><i class="layui-icon layui-icon-video"></i></a></div>').render(d);
|
||||||
|
}
|
||||||
|
if (typeof d.mime === 'string' && /^audio\//.test(d.mime)) {
|
||||||
|
return laytpl('<div><a target="_blank" data-video-player="{{d.xurl}}" data-tips-text="播放音频"><i class="layui-icon layui-icon-headset"></i></a></div>').render(d);
|
||||||
|
}
|
||||||
|
return laytpl('<div><a target="_blank" href="{{d.xurl}}" data-tips-text="查看下载"><i class="layui-icon layui-icon-file"></i></a></div>').render(d);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -50,6 +50,7 @@ require.config({
|
|||||||
'echarts': ['plugs/echarts/echarts.min'],
|
'echarts': ['plugs/echarts/echarts.min'],
|
||||||
'ckeditor4': ['plugs/ckeditor4/ckeditor'],
|
'ckeditor4': ['plugs/ckeditor4/ckeditor'],
|
||||||
'ckeditor5': ['plugs/ckeditor5/ckeditor'],
|
'ckeditor5': ['plugs/ckeditor5/ckeditor'],
|
||||||
|
'artplayer': ['plugs/jquery/artplayer.min'],
|
||||||
'filesaver': ['plugs/jquery/filesaver.min'],
|
'filesaver': ['plugs/jquery/filesaver.min'],
|
||||||
'websocket': ['plugs/socket/websocket'],
|
'websocket': ['plugs/socket/websocket'],
|
||||||
'compressor': ['plugs/jquery/compressor.min'],
|
'compressor': ['plugs/jquery/compressor.min'],
|
||||||
@ -908,6 +909,25 @@ $(function () {
|
|||||||
})
|
})
|
||||||
});
|
});
|
||||||
|
|
||||||
|
/*! 注册 data-video-player 事件行为 */
|
||||||
|
onEvent('click', '[data-video-player]', function () {
|
||||||
|
let idx = $.msg.loading(), url = this.dataset.videoPlayer, name = this.dataset.title || '媒体播放器', payer;
|
||||||
|
require(['artplayer'], function () {
|
||||||
|
layer.open({
|
||||||
|
title: name, type: 1, fixed: true, maxmin: false, content: '<div class="data-play-video" style="width:800px;height:450px"></div>',
|
||||||
|
end: () => payer.destroy(), success: ($ele) => {
|
||||||
|
payer = new Artplayer({
|
||||||
|
url: url, container: $ele.selector + ' .data-play-video', controls: [
|
||||||
|
{html: '全屏播放', position: 'right', click: () => payer.fullscreen = !payer.fullscreen},
|
||||||
|
],
|
||||||
|
});
|
||||||
|
payer.on('ready', () => (payer.autoHeight = payer.autoSize = true) && payer.play());
|
||||||
|
$.msg.close(idx);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
/*! 注册 data-icon 事件行为 */
|
/*! 注册 data-icon 事件行为 */
|
||||||
onEvent('click', '[data-icon]', function () {
|
onEvent('click', '[data-icon]', function () {
|
||||||
var location = tapiRoot + '/api.plugs/icon', field = this.dataset.icon || this.dataset.field || 'icon';
|
var location = tapiRoot + '/api.plugs/icon', field = this.dataset.icon || this.dataset.field || 'icon';
|
||||||
|
11
public/static/plugs/jquery/artplayer.min.js
vendored
Normal file
11
public/static/plugs/jquery/artplayer.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@ -887,10 +887,12 @@ input:not(.layui-hide,[type=hidden]) {
|
|||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
|
|
||||||
> div {
|
> div {
|
||||||
right: 0;
|
top: 4px;
|
||||||
|
left: 50%;
|
||||||
display: none;
|
display: none;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
text-align: right;
|
white-space: nowrap;
|
||||||
|
margin-left: -33px;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: #EEE;
|
color: #EEE;
|
||||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user