You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

205 lines
5.0 KiB

import WeCropper from '../../we-cropper/dist/we-cropper.min.js'
const rich_message = "检测到所选的图片中有敏感内容,请选择其他图片";
const app = getApp();
Page({
data: {
},
touchStart(e) {
if(!this.mycropper)
return wx.showToast({
title: '请先选取图片',icon:"none"
})
this.mycropper.touchStart(e)
},
touchMove(e) {
this.mycropper.touchMove(e)
},
touchEnd(e) {
this.mycropper.touchEnd(e)
},
async _checkImg({path}){
let cloudPath = "images/avatars/"+ path.replace(/[\/\\:]/g, "_");
let res = await wx.cloud.uploadFile({
cloudPath,
filePath: path
});
let {fileID} = res;
return app.openapi("security.imgSecCheck")({fileID});
},
checkImg({path}){
if(this.promise&&path==this.tmp_path)
return this.promise;
let buffer = wx.getFileSystemManager().readFileSync(path);
this.promise = this._checkImg({path});
this.tmp_path = path;
this.promise.then(res=>{
console.log(res);
if(res.errCode==87014){
wx.showToast({
title:rich_message,icon: "none",duration:5000
})
}
});
return this.promise;
},
onConfirm(){
if(!this.mycropper||!this.mycropper.src)
return wx.showToast({
title: '请先选取图片',icon:"none"
})
let {src} = this.mycropper;
wx.showLoading({
title: '检查图片中...',
})
this.checkImg({path: src}).then(res=>{
if(res.errCode==0)
this.startUpload();
else if(res.errCode==87014){
wx.hideLoading();
wx.showModal({
content:rich_message,showCancel: false
})
}else{
wx.showToast({
title: '发生了未知错误',icon:"none"
});
wx.reportMonitor('2', 1);
global.realTimeLog.error("未知错误 checkImg1");
global.realTimeLog.setFilterMsg("unexpected");
}
}).catch(e=>{
wx.hideLoading();
app.showError(e);
wx.reportMonitor('2', 1);
global.realTimeLog.error("未知错误 checkImg2");
global.realTimeLog.setFilterMsg("unexpected");
})
},
uploadAvartar(filePath) {
return new Promise((resolve, reject) => {
wx.getFileSystemManager().readFile({
filePath,
encoding: "base64",
success: res => {
let image = "data:image/jpeg;base64," + res.data;
app.api("users.accounts.avatar")({ image }).then(resolve);
},
fail: reject
});
});
},
startUpload() {
this.mycropper.getCropperImage((avatar) => {
if (avatar) {
wx.showLoading({
title: '上传中',
});
this.uploadAvartar(avatar)
.then(res => {
wx.hideLoading();
wx.showToast({
title: '更改成功',
});
setTimeout(()=>{
wx.navigateBack({
delta: 1
});
},500);
}).catch(e => {
wx.showToast({
title: '上传失败',
icon: "none"
});
wx.hideLoading();
});
} else {
wx.showToast({
title: '图片截取失败',
icon: "none"
});
}
})
},
chooseImage({navback=0}={}) {
wx.chooseImage({
count: 1,
sizeType:["compressed"],
success:(res) =>{
let {path, size} = res.tempFiles[0];
if(!path&&navback){
wx.navigateBack({
delta:1
})
}
if(size>1e6){
// unexpected error
wx.reportMonitor('2', 1);
global.realTimeLog.error("头像超过大小",size);
global.realTimeLog.setFilterMsg("avatar");
wx.showToast({
title: '对不起,图片过大,请重新选择',icon:"none", duration:3000
});
return;
}
if(!this.mycropper)
this.initCanvas(path);
else{
this.mycropper.pushOrign(path)
}
},fail:e=>{
console.log(e);
if(navback)
wx.navigateBack({
delta:1
})
}
})
},
initCanvas(src) {
const { cropperOpt } = this.data;
Object.assign(cropperOpt, { src });
this.mycropper = new WeCropper(cropperOpt);
this.mycropper
.on('beforeImageLoad', (ctx) => {
wx.showLoading({title: '上传中'})
})
.on('imageLoad', (ctx) => {
let {src} = this.mycropper;
this.checkImg({path:src});
wx.hideLoading();
})
.updateCanvas();
},
setCanvasOptions:function(){
let device = wx.getSystemInfoSync();
let width = device.windowWidth;
let height = device.windowHeight - 42;
let cropperOpt = {
id: 'cropper',
scale: 3.2,
zoom: 8,
width,
height,
cut: {
x: (width - 300) / 2,
y: (height - 300) / 2,
width: 300,
height: 300
}
}
this.setData({ cropperOpt});
},
onLoad(option) {
this.setCanvasOptions();
const { src } = option;
if (src) {
this.initCanvas(src);
} else {
this.chooseImage({navback:1})
}
}
})