mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
142 lines
8.7 KiB
PHP
142 lines
8.7 KiB
PHP
define(['md5'], function (SparkMD5, allowMime) {
|
|
allowMime = JSON.parse('{$exts|raw}');
|
|
return function (element, callable, completeCallable) {
|
|
/*! 初始化变量 */
|
|
var opt = {element: $(element), exts: [], mimes: [], files: {}, cache: {}, load: 0};
|
|
opt.count = {total: 0, uploaded: 0}, opt.size = opt.element.data('size') || 0;
|
|
opt.safe = opt.element.data('safe') ? 1 : 0, opt.hload = opt.element.data('hide-load') ? 1 : 0;
|
|
opt.field = opt.element.data('field') || 'file', opt.input = $('input[name="' + opt.field + '"]:not([type=file])');
|
|
opt.uptype = opt.safe ? 'local' : opt.element.attr('data-uptype') || '', opt.multiple = opt.element.data('multiple') > 0;
|
|
/*! 文件选择筛选 */
|
|
$((opt.element.data('type') || '').split(',')).map(function (i, ext) {
|
|
if (allowMime[ext]) opt.exts.push(ext), opt.mimes.push(allowMime[ext]);
|
|
});
|
|
/*! 初始化上传组件 */
|
|
opt.uploader = layui.upload.render({
|
|
url: '{:url("admin/api.upload/file")}',
|
|
auto: false, elem: element, accept: 'file', multiple: opt.multiple,
|
|
exts: opt.exts.join('|'), acceptMime: opt.mimes.join(','), choose: function (object) {
|
|
opt.element.triggerHandler('upload.choose', opt.files = object.pushFile());
|
|
opt.uploader.config.elem.next().val(''), layui.each(opt.files, function (index, file) {
|
|
if (opt.size > 0 && file.size > opt.size) {
|
|
return delete opt.files[index], $.msg.tips('文件大小超出上传限制!');
|
|
}
|
|
opt.load = opt.hload || $.msg.loading('上传进度 <span data-upload-progress>0%</span>');
|
|
opt.count.total++, file.index = index, opt.cache[index] = file, delete opt.files[index];
|
|
md5file(file).then(function (file) {
|
|
opt.element.triggerHandler('upload.hash', file);
|
|
jQuery.ajax("{:url('admin/api.upload/state')}", {
|
|
data: {key: file.xkey, uptype: opt.uptype, safe: opt.safe, name: file.name}, method: 'post', success: function (ret) {
|
|
if (parseInt(ret.code) === 404) {
|
|
file.xurl = ret.data.url;
|
|
opt.uploader.config.url = ret.data.server;
|
|
opt.uploader.config.data.key = ret.data.key;
|
|
opt.uploader.config.data.safe = ret.data.safe;
|
|
opt.uploader.config.data.uptype = ret.data.uptype;
|
|
if (ret.data.uptype === 'qiniu') {
|
|
opt.uploader.config.data.token = ret.data.token;
|
|
} else if (ret.data.uptype === 'alioss') {
|
|
opt.uploader.config.data['policy'] = ret.data.policy;
|
|
opt.uploader.config.data['signature'] = ret.data.signature;
|
|
opt.uploader.config.data['OSSAccessKeyId'] = ret.data.OSSAccessKeyId;
|
|
opt.uploader.config.data['success_action_status'] = 200;
|
|
opt.uploader.config.data['Content-Disposition'] = 'inline;filename=' + encodeURIComponent(file.name);
|
|
} else if (ret.data.uptype === 'txcos') {
|
|
opt.uploader.config.data['q-ak'] = ret.data['q-ak'];
|
|
opt.uploader.config.data['policy'] = ret.data.policy;
|
|
opt.uploader.config.data['q-key-time'] = ret.data['q-key-time'];
|
|
opt.uploader.config.data['q-signature'] = ret.data['q-signature'];
|
|
opt.uploader.config.data['q-sign-algorithm'] = ret.data['q-sign-algorithm'];
|
|
opt.uploader.config.data['success_action_status'] = 200;
|
|
opt.uploader.config.data['Content-Disposition'] = 'inline;filename=' + encodeURIComponent(file.name);
|
|
}
|
|
object.upload(file.index, file);
|
|
} else if (parseInt(ret.code) === 200) {
|
|
file.xurl = ret.data.url;
|
|
opt.uploader.config.done({code: 1, url: file.xurl, info: '文件秒传成功!'}, file.index);
|
|
} else {
|
|
$.msg.tips(ret.info || ret.error.message || '文件上传出错!');
|
|
}
|
|
}
|
|
});
|
|
});
|
|
});
|
|
}, progress: function (number) {
|
|
$('[data-upload-progress]').html(number + '%');
|
|
opt.element.triggerHandler('upload.progress', {
|
|
number: number, event: arguments[2], file: arguments[3]
|
|
});
|
|
}, done: function (ret, idx) {
|
|
|
|
/*! 检查单个文件上传返回的结果 */
|
|
if (ret.code < 1) return $.msg.tips(ret.info || '文件上传失败!');
|
|
if (typeof opt.cache[idx].xurl !== 'string') return $.msg.tips('无效的文件上传对象!');
|
|
|
|
/*! 单个文件上传成功结果处理 */
|
|
if (typeof callable === 'function') {
|
|
callable.call(opt.element, opt.cache[idx].xurl, opt.cache['id']);
|
|
} else {
|
|
opt.multiple < 1 && opt.input.val(opt.cache[idx].xurl).trigger('change');
|
|
}
|
|
|
|
(opt.hload || $.msg.close(opt.load)), opt.element.html(opt.element.data('html'));
|
|
opt.element.triggerHandler('upload.done', {file: opt.cache[idx], data: ret});
|
|
|
|
/*! 所有文件上传完成后结果处理 */
|
|
if (++opt.count.uploaded >= opt.count.total) {
|
|
if (opt.multiple > 0) {
|
|
var urls = [];
|
|
for (var i in opt.cache) urls.push(opt.cache[i].xurl)
|
|
opt.input.val(urls.join('|')).trigger('change');
|
|
}
|
|
opt.element.triggerHandler('upload.complete', {file: opt.cache});
|
|
(opt.cache = [], opt.files = []), opt.uploader.reload();
|
|
}
|
|
}
|
|
});
|
|
};
|
|
|
|
function md5file(file) {
|
|
var deferred = jQuery.Deferred();
|
|
file.xext = file.name.indexOf('.') > -1 ? file.name.split('.').pop() : 'tmp';
|
|
|
|
/*! 兼容不能计算文件 HASH 的情况 */
|
|
if (!window.FileReader) return jQuery.when((function (date, chars) {
|
|
date = new Date(), chars = 'abcdefhijkmnprstwxyz0123456789';
|
|
this.xmd5 = '' + date.getFullYear() + (date.getMonth() + 1) + date.getDay() + date.getHours() + date.getMinutes() + date.getSeconds();
|
|
while (this.xmd5.length < 32) this.xmd5 += chars.charAt(Math.floor(Math.random() * chars.length));
|
|
return setFileXdata(file, this.xmd5), deferred.resolve(file, file.xmd5, file.xkey), deferred;
|
|
}).call(this));
|
|
|
|
/*! 读取文件并计算 HASH 值 */
|
|
var spark = new SparkMD5.ArrayBuffer();
|
|
var slice = File.prototype.slice || File.prototype.mozSlice || File.prototype.webkitSlice;
|
|
file.chunkIdx = 0, file.chunkSize = 2097152, file.chunkTotal = Math.ceil(this.size / this.chunkSize);
|
|
return jQuery.when(loadNextChunk(file));
|
|
|
|
function setFileXdata(file, xmd5) {
|
|
file.xmd5 = xmd5, file.xkey = file.xmd5.substr(0, 2) + '/' + file.xmd5.substr(2, 30) + '.' + file.xext;
|
|
return delete file.chunkIdx, delete file.chunkSize, delete file.chunkTotal, file;
|
|
}
|
|
|
|
function loadNextChunk(file) {
|
|
this.reader = new FileReader();
|
|
this.reader.onload = function (event) {
|
|
spark.append(event.target.result);
|
|
if (++file.chunkIdx < file.chunkTotal) {
|
|
loadNextChunk(file);
|
|
} else {
|
|
setFileXdata(file, spark.end());
|
|
deferred.resolve(file, file.xmd5, file.xkey);
|
|
}
|
|
};
|
|
this.reader.onerror = function () {
|
|
deferred.reject();
|
|
};
|
|
this.start = file.chunkIdx * file.chunkSize;
|
|
this.loaded = (this.start + file.chunkSize >= file.size) ? file.size : this.start + file.chunkSize;
|
|
this.reader.readAsArrayBuffer(slice.call(file, this.start, this.loaded));
|
|
return deferred.notify(file, (this.loaded / file.size * 100).toFixed(2)), deferred;
|
|
}
|
|
}
|
|
}); |