mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-25 01:33:51 +02:00
324 lines
10 KiB
Vue
324 lines
10 KiB
Vue
<template>
|
|
<el-dialog
|
|
class="x-dialog"
|
|
:model-value="changeWorldImageDialogVisible"
|
|
:title="t('dialog.change_content_image.world')"
|
|
width="850px"
|
|
append-to-body
|
|
@close="closeDialog">
|
|
<div>
|
|
<input
|
|
id="WorldImageUploadButton"
|
|
type="file"
|
|
accept="image/*"
|
|
style="display: none"
|
|
@change="onFileChangeWorldImage" />
|
|
<el-progress
|
|
v-if="changeWorldImageDialogLoading"
|
|
:show-text="false"
|
|
:indeterminate="true"
|
|
:percentage="100"
|
|
:stroke-width="3"
|
|
style="margin-bottom: 12px" />
|
|
<span>{{ t('dialog.change_content_image.description') }}</span>
|
|
<br />
|
|
<el-button-group style="padding-bottom: 10px; padding-top: 10px">
|
|
<el-button
|
|
type="default"
|
|
size="small"
|
|
:icon="Upload"
|
|
:loading="changeWorldImageDialogLoading"
|
|
:disabled="changeWorldImageDialogLoading"
|
|
@click="uploadWorldImage">
|
|
{{ t('dialog.change_content_image.upload') }}
|
|
</el-button>
|
|
</el-button-group>
|
|
<br />
|
|
<div class="x-change-image-item">
|
|
<img :src="previousImageUrl" class="img-size" loading="lazy" />
|
|
</div>
|
|
</div>
|
|
</el-dialog>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ElMessage } from 'element-plus';
|
|
import { Upload } from '@element-plus/icons-vue';
|
|
import { storeToRefs } from 'pinia';
|
|
import { ref } from 'vue';
|
|
import { useI18n } from 'vue-i18n';
|
|
import { worldRequest, imageRequest } from '../../../api';
|
|
import { handleImageUploadInput } from '../../../shared/utils/imageUpload';
|
|
import { useWorldStore } from '../../../stores';
|
|
import { $throw } from '../../../service/request';
|
|
import { AppDebug } from '../../../service/appConfig';
|
|
import { extractFileId } from '../../../shared/utils';
|
|
|
|
const { t } = useI18n();
|
|
|
|
const { worldDialog } = storeToRefs(useWorldStore());
|
|
const { applyWorld } = useWorldStore();
|
|
|
|
defineProps({
|
|
changeWorldImageDialogVisible: {
|
|
type: Boolean,
|
|
required: true
|
|
},
|
|
previousImageUrl: {
|
|
type: String,
|
|
default: ''
|
|
}
|
|
});
|
|
|
|
const changeWorldImageDialogLoading = ref(false);
|
|
const worldImage = ref({
|
|
base64File: '',
|
|
fileMd5: '',
|
|
base64SignatureFile: '',
|
|
signatureMd5: '',
|
|
fileId: '',
|
|
worldId: ''
|
|
});
|
|
|
|
const emit = defineEmits(['update:changeWorldImageDialogVisible', 'update:previousImageUrl']);
|
|
|
|
function closeDialog() {
|
|
emit('update:changeWorldImageDialogVisible', false);
|
|
}
|
|
|
|
async function resizeImageToFitLimits(file) {
|
|
const response = await AppApi.ResizeImageToFitLimits(file);
|
|
return response;
|
|
}
|
|
|
|
function onFileChangeWorldImage(e) {
|
|
const { file, clearInput } = handleImageUploadInput(e, {
|
|
inputSelector: '#WorldImageUploadButton',
|
|
tooLargeMessage: () => t('message.file.too_large'),
|
|
invalidTypeMessage: () => t('message.file.not_image')
|
|
});
|
|
if (!file) {
|
|
return;
|
|
}
|
|
if (!worldDialog.value.visible || worldDialog.value.loading) {
|
|
clearInput();
|
|
return;
|
|
}
|
|
|
|
const r = new FileReader();
|
|
const finalize = () => {
|
|
changeWorldImageDialogLoading.value = false;
|
|
clearInput();
|
|
};
|
|
r.onerror = finalize;
|
|
r.onabort = finalize;
|
|
r.onload = async function () {
|
|
try {
|
|
const base64File = await resizeImageToFitLimits(btoa(r.result.toString()));
|
|
// 10MB
|
|
await initiateUploadLegacy(base64File, file);
|
|
// await initiateUpload(base64File);
|
|
} catch (error) {
|
|
console.error('World image upload process failed:', error);
|
|
} finally {
|
|
finalize();
|
|
}
|
|
};
|
|
|
|
changeWorldImageDialogLoading.value = true;
|
|
try {
|
|
r.readAsBinaryString(file);
|
|
} catch (error) {
|
|
console.error('Failed to read file', error);
|
|
finalize();
|
|
}
|
|
}
|
|
|
|
async function initiateUploadLegacy(base64File, file) {
|
|
const fileMd5 = await AppApi.MD5File(base64File);
|
|
const fileSizeInBytes = parseInt(file.size, 10);
|
|
const base64SignatureFile = await AppApi.SignFile(base64File);
|
|
const signatureMd5 = await AppApi.MD5File(base64SignatureFile);
|
|
const signatureSizeInBytes = parseInt(await AppApi.FileLength(base64SignatureFile), 10);
|
|
const worldId = worldDialog.value.id;
|
|
const { imageUrl } = worldDialog.value.ref;
|
|
const fileId = extractFileId(imageUrl);
|
|
worldImage.value = {
|
|
base64File,
|
|
fileMd5,
|
|
base64SignatureFile,
|
|
signatureMd5,
|
|
fileId,
|
|
worldId
|
|
};
|
|
const params = {
|
|
fileMd5,
|
|
fileSizeInBytes,
|
|
signatureMd5,
|
|
signatureSizeInBytes
|
|
};
|
|
const res = await imageRequest.uploadWorldImage(params, fileId);
|
|
return worldImageInit(res);
|
|
}
|
|
|
|
async function worldImageInit(args) {
|
|
const fileId = args.json.id;
|
|
const fileVersion = args.json.versions[args.json.versions.length - 1].version;
|
|
const params = {
|
|
fileId,
|
|
fileVersion
|
|
};
|
|
const res = await imageRequest.uploadWorldImageFileStart(params);
|
|
return worldImageFileStart(res);
|
|
}
|
|
|
|
async function worldImageFileStart(args) {
|
|
const { url } = args.json;
|
|
const { fileId, fileVersion } = args.params;
|
|
const params = {
|
|
url,
|
|
fileId,
|
|
fileVersion
|
|
};
|
|
return uploadWorldImageFileAWS(params);
|
|
}
|
|
|
|
async function uploadWorldImageFileAWS(params) {
|
|
const json = await webApiService.execute({
|
|
url: params.url,
|
|
uploadFilePUT: true,
|
|
fileData: worldImage.value.base64File,
|
|
fileMIME: 'image/png',
|
|
headers: {
|
|
'Content-MD5': worldImage.value.fileMd5
|
|
}
|
|
});
|
|
|
|
if (json.status !== 200) {
|
|
changeWorldImageDialogLoading.value = false;
|
|
$throw(json.status, 'World image upload failed', params.url);
|
|
}
|
|
const args = {
|
|
json,
|
|
params
|
|
};
|
|
return worldImageFileAWS(args);
|
|
}
|
|
|
|
async function worldImageFileAWS(args) {
|
|
const { fileId, fileVersion } = args.params;
|
|
const params = {
|
|
fileId,
|
|
fileVersion
|
|
};
|
|
const res = await imageRequest.uploadWorldImageFileFinish(params);
|
|
return worldImageFileFinish(res);
|
|
}
|
|
|
|
async function worldImageFileFinish(args) {
|
|
const { fileId, fileVersion } = args.params;
|
|
const params = {
|
|
fileId,
|
|
fileVersion
|
|
};
|
|
const res = await imageRequest.uploadWorldImageSigStart(params);
|
|
return worldImageSigStart(res);
|
|
}
|
|
|
|
async function worldImageSigStart(args) {
|
|
const { url } = args.json;
|
|
const { fileId, fileVersion } = args.params;
|
|
const params = {
|
|
url,
|
|
fileId,
|
|
fileVersion
|
|
};
|
|
return uploadWorldImageSigAWS(params);
|
|
}
|
|
|
|
async function uploadWorldImageSigAWS(params) {
|
|
const json = await webApiService.execute({
|
|
url: params.url,
|
|
uploadFilePUT: true,
|
|
fileData: worldImage.value.base64SignatureFile,
|
|
fileMIME: 'application/x-rsync-signature',
|
|
headers: {
|
|
'Content-MD5': worldImage.value.signatureMd5
|
|
}
|
|
});
|
|
|
|
if (json.status !== 200) {
|
|
changeWorldImageDialogLoading.value = false;
|
|
$throw(json.status, 'World image upload failed', params.url);
|
|
}
|
|
const args = {
|
|
json,
|
|
params
|
|
};
|
|
return worldImageSigAWS(args);
|
|
}
|
|
|
|
async function worldImageSigAWS(args) {
|
|
const { fileId, fileVersion } = args.params;
|
|
const params = {
|
|
fileId,
|
|
fileVersion
|
|
};
|
|
const res = await imageRequest.uploadWorldImageSigFinish(params);
|
|
return worldImageSigFinish(res);
|
|
}
|
|
async function worldImageSigFinish(args) {
|
|
const { fileId, fileVersion } = args.params;
|
|
const params = {
|
|
id: worldImage.value.worldId,
|
|
imageUrl: `${AppDebug.endpointDomain}/file/${fileId}/${fileVersion}/file`
|
|
};
|
|
const res = await imageRequest.setWorldImage(params);
|
|
return worldImageSet(res);
|
|
}
|
|
|
|
function worldImageSet(args) {
|
|
changeWorldImageDialogLoading.value = false;
|
|
if (args.json.imageUrl === args.params.imageUrl) {
|
|
ElMessage({
|
|
message: t('message.world.image_changed'),
|
|
type: 'success'
|
|
});
|
|
emit('update:previousImageUrl', args.json.imageUrl);
|
|
} else {
|
|
$throw(0, 'World image change failed', args.params.imageUrl);
|
|
}
|
|
}
|
|
|
|
// ------------ Upload Process End ------------
|
|
|
|
async function initiateUpload(base64File) {
|
|
const args = await worldRequest.uploadWorldImage(base64File);
|
|
const fileUrl = args.json.versions[args.json.versions.length - 1].file.url;
|
|
const worldArgs = await worldRequest.saveWorld({
|
|
id: worldDialog.value.id,
|
|
imageUrl: fileUrl
|
|
});
|
|
const ref = applyWorld(worldArgs.json);
|
|
changeWorldImageDialogLoading.value = false;
|
|
emit('update:previousImageUrl', ref.imageUrl);
|
|
ElMessage({
|
|
message: t('message.world.image_changed'),
|
|
type: 'success'
|
|
});
|
|
|
|
// closeDialog();
|
|
}
|
|
|
|
function uploadWorldImage() {
|
|
document.getElementById('WorldImageUploadButton').click();
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.img-size {
|
|
width: 500px;
|
|
height: 375px;
|
|
}
|
|
</style>
|