mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
306ff3d919
Closes #3321.
244 lines
8.5 KiB
Plaintext
244 lines
8.5 KiB
Plaintext
@inject BTCPayServer.Security.ContentSecurityPolicies csp
|
|
@{
|
|
csp.Add("worker-src", "blob:");
|
|
}
|
|
|
|
<template id="camera-qr-scanner-wrap">
|
|
<div v-if="modalId" :id="modalId" class="modal fade" data-bs-backdrop="static">
|
|
<div class="modal-dialog" role="document">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title">
|
|
{{title}}
|
|
<span v-if="workload.length > 0">Animated QR detected: {{workload.length}} / {{workload[0].total}} scanned</span>
|
|
<span v-if="decoder">Animated QR detected: {{decoder.processedPartsCount()}} / {{decoder.expectedPartCount()}} scanned</span>
|
|
</h5>
|
|
<button type="button" class="btn-close" aria-label="Close" v-on:click="close">
|
|
<vc:icon symbol="close"/>
|
|
</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<slot/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div v-else>
|
|
<slot></slot>
|
|
<div v-if="workload.length > 0">Animated QR detected: {{workload.length}} / {{workload[0].total}} scanned</div>
|
|
</div>
|
|
</template>
|
|
|
|
<div id="camera-qr-scanner-modal-app" v-cloak class="only-for-js">
|
|
<scanner-wrap v-bind="$data" v-on:close="close">
|
|
<div class="d-flex justify-content-center align-items-center" :class="{'border border-secondary': !isModal}">
|
|
<div class="spinner-border text-secondary position-absolute" role="status"></div>
|
|
<qrcode-drop-zone v-on:decode="onDecode" v-on:init="logErrors">
|
|
<qrcode-stream v-on:decode="onDecode" v-on:init="onInit" :camera="cameraOff? 'off': cameras[camera]" :device-id="cameras[camera]" :track="paint"/>
|
|
</qrcode-drop-zone>
|
|
<qrcode-capture v-if="noStreamApiSupport" v-on:decode="onDecode" :camera="cameraOff? 'off': cameras[camera]" :device-id="cameras[camera]"/>
|
|
|
|
</div>
|
|
<div v-if="isLoaded && requestInput && cameras.length > 2" class="d-flex justify-content-center align-items-center mt-3">
|
|
<button class="btn btn-secondary text-center" v-on:click="nextCamera">Switch camera</button>
|
|
</div>
|
|
<div v-else-if="qrData || errorMessage">
|
|
<div v-if="errorMessage" class="alert alert-danger" role="alert">
|
|
{{errorMessage}}
|
|
</div>
|
|
<div v-if="qrData" class="font-monospace mt-3" style="overflow:hidden;text-overflow:ellipsis;">
|
|
{{qrData}}
|
|
</div>
|
|
<div class="mt-3">
|
|
<button type="button" class="btn btn-primary me-1" v-if="qrData" v-on:click="submitData">Submit</button>
|
|
<button type="button" class="btn btn-secondary me-1" v-on:click="retry">Retry</button>
|
|
<button type="button" class="btn btn-outline-secondary" v-if="isModal" v-on:click="close">Cancel</button>
|
|
</div>
|
|
</div>
|
|
</scanner-wrap>
|
|
</div>
|
|
|
|
<script>
|
|
function initCameraScanningApp(title, onDataSubmit, modalId, submitOnScan = false) {
|
|
const isModal = !!modalId;
|
|
|
|
Vue.component('scanner-wrap', {
|
|
props: ["modalId", "title", "workload", "decoder"],
|
|
template: "#camera-qr-scanner-wrap",
|
|
methods: {
|
|
close() {
|
|
this.$emit('close');
|
|
}
|
|
}
|
|
});
|
|
|
|
const app = new Vue({
|
|
el: '#camera-qr-scanner-modal-app',
|
|
data() {
|
|
return {
|
|
isModal,
|
|
isLoaded: !isModal,
|
|
title: title,
|
|
modalId: modalId,
|
|
noStreamApiSupport: false,
|
|
qrData: null,
|
|
errorMessage: null,
|
|
workload: [],
|
|
camera: 0,
|
|
cameraOff: true,
|
|
cameras: ["auto"],
|
|
decoder: null,
|
|
submitOnScan
|
|
}
|
|
},
|
|
mounted() {
|
|
if (this.isModal) {
|
|
const modal = document.getElementById(this.modalId);
|
|
modal.addEventListener('shown.bs.modal', () => { this.isLoaded = true; this.cameraOff = false; });
|
|
modal.addEventListener('hide.bs.modal', () => { this.isLoaded = false; this.cameraOff = true; });
|
|
} else {
|
|
this.isLoaded = true;
|
|
this.cameraOff = false;
|
|
}
|
|
},
|
|
computed: {
|
|
requestInput() {
|
|
return !this.cameraOff && this.errorMessage === null;
|
|
}
|
|
},
|
|
methods: {
|
|
nextCamera: function (){
|
|
if (this.camera === 0){
|
|
this.camera++;
|
|
} else if (this.camera == this.cameras.length -1) {
|
|
this.camera = 0;
|
|
} else {
|
|
this.camera++;
|
|
}
|
|
},
|
|
setQrData (qrData) {
|
|
this.qrData = qrData;
|
|
this.cameraOff = !!qrData;
|
|
if (this.qrData && this.submitOnScan) {
|
|
this.submitData();
|
|
}
|
|
},
|
|
retry() {
|
|
this.cameraOff = true;
|
|
this.$nextTick(this.reset);
|
|
},
|
|
reset() {
|
|
this.setQrData(null);
|
|
this.errorMessage = null;
|
|
this.workload = [];
|
|
this.decoder = null;
|
|
},
|
|
close() {
|
|
if (this.modalId) {
|
|
const modal = bootstrap.Modal.getInstance(document.getElementById(this.modalId));
|
|
modal.hide();
|
|
}
|
|
this.reset();
|
|
},
|
|
onDecode(content) {
|
|
if (this.qrData) return;
|
|
|
|
if (!content.toLowerCase().startsWith("ur:")) {
|
|
this.setQrData(content);
|
|
this.workload = [];
|
|
} else {
|
|
if (this.workload.length == 0){
|
|
const d = this.decoder || new window.URlib.URRegistryDecoder();
|
|
if (d.receivePart(content)){
|
|
this.decoder = d;
|
|
if (d.isComplete()){
|
|
if (!this.decoder.isSuccess()){
|
|
this.errorMessage = this.decoder.resultError();
|
|
}else{
|
|
this.setQrData(this.decoder.resultRegistryType().toString());
|
|
}
|
|
}
|
|
}
|
|
if (this.decoder != null){
|
|
return;
|
|
}
|
|
}
|
|
const [index, total] = window.bcur.extractSingleWorkload(content);
|
|
if (this.workload.length > 0) {
|
|
const currentTotal = this.workload[0].total;
|
|
if (total !== currentTotal) {
|
|
this.workload = [];
|
|
}
|
|
}
|
|
if (!this.workload.find(i => i.index === index)) {
|
|
this.workload.push({
|
|
index,
|
|
total,
|
|
data: content,
|
|
});
|
|
if (this.workload.length === total) {
|
|
const decoded = window.bcur.decodeUR(this.workload.map(i => i.data));
|
|
this.setQrData(decoded);
|
|
}
|
|
}
|
|
}
|
|
},
|
|
submitData() {
|
|
if (onDataSubmit) {
|
|
onDataSubmit(this.qrData);
|
|
}
|
|
this.close();
|
|
},
|
|
logErrors(promise) {
|
|
promise.catch(console.error)
|
|
},
|
|
paint(detectedCodes, ctx) {
|
|
for (const detectedCode of detectedCodes) {
|
|
const [ firstPoint, ...otherPoints ] = detectedCode.cornerPoints
|
|
ctx.strokeStyle = "#51b13e";
|
|
ctx.beginPath();
|
|
ctx.moveTo(firstPoint.x, firstPoint.y);
|
|
for (const { x, y } of otherPoints) {
|
|
ctx.lineTo(x, y);
|
|
}
|
|
ctx.lineTo(firstPoint.x, firstPoint.y);
|
|
ctx.closePath();
|
|
ctx.stroke();
|
|
}
|
|
},
|
|
onInit(promise) {
|
|
promise.then(() => {
|
|
this.errorMessage = null;
|
|
if (app.cameras.length === 1)
|
|
{
|
|
navigator.mediaDevices.enumerateDevices().then(function (devices) {
|
|
for (const device of devices) {
|
|
if (device.kind == "videoinput"){
|
|
app.cameras.push( device.deviceId)
|
|
}
|
|
}
|
|
});
|
|
}
|
|
}).catch(error => {
|
|
if (error.name === 'StreamApiNotSupportedError') {
|
|
this.noStreamApiSupport = true;
|
|
} else if (error.name === 'NotAllowedError') {
|
|
this.errorMessage = 'A permission to the camera is needed to scan the QR code. Please grant the browser access and then retry.'
|
|
} else if (error.name === 'NotFoundError') {
|
|
this.errorMessage = 'A camera was not detected on your device.'
|
|
} else if (error.name === 'NotSupportedError') {
|
|
this.errorMessage = 'This page is served in non-secure context (HTTPS, localhost or file://)'
|
|
} else if (error.name === 'NotReadableError') {
|
|
this.errorMessage = 'Couldn\'t access your camera. Is it already in use?'
|
|
} else if (error.name === 'OverconstrainedError') {
|
|
this.errorMessage = 'Constraints don\'t match any installed camera.'
|
|
} else {
|
|
this.errorMessage = 'UNKNOWN ERROR: ' + error.message
|
|
}
|
|
})
|
|
}
|
|
}
|
|
});
|
|
}
|
|
</script>
|