mirror of
https://github.com/janishutz/libreevent.git
synced 2025-11-25 05:14:23 +00:00
clean up some todos
This commit is contained in:
@@ -15,8 +15,9 @@ const bodyParser = require( 'body-parser' );
|
||||
const cookieParser = require( 'cookie-parser' );
|
||||
const http = require( 'http' );
|
||||
const fs = require( 'fs' );
|
||||
const pm = require( './backend/plugins/manager.js' );
|
||||
const pluginManager = new pm();
|
||||
const token = require( './backend/token.js' );
|
||||
// const pm = require( './backend/plugins/manager.js' );
|
||||
// const pluginManager = new pm();
|
||||
|
||||
|
||||
console.log( `
|
||||
@@ -59,11 +60,10 @@ if ( settings.init ) {
|
||||
app.use( express.static( '../webapp/setup/dist' ) );
|
||||
}
|
||||
|
||||
console.log( '[ Server ] loading and initializing middlewares' );
|
||||
// initialise express with middlewares
|
||||
// TODO: Generate random secret
|
||||
console.log( '[ Server ] loading and initializing middlewares' );
|
||||
app.use( expressSession( {
|
||||
secret: 'gaoevgoawefgo083tq2rfvöfaf0p8',
|
||||
secret: token.generateToken( 60 ),
|
||||
resave: false,
|
||||
saveUninitialized: true,
|
||||
cookie: {
|
||||
|
||||
0
src/server/backend/db/data/tickets.json
Normal file
0
src/server/backend/db/data/tickets.json
Normal file
@@ -9,19 +9,27 @@
|
||||
|
||||
|
||||
const pdfme = require( '@pdfme/generator' );
|
||||
const db = require( '../db/db.js' );
|
||||
|
||||
class TicketGenerator {
|
||||
constructor () {
|
||||
this.ticketQueue = {};
|
||||
}
|
||||
|
||||
generateTicket ( ) {
|
||||
generateTicket ( data ) {
|
||||
|
||||
}
|
||||
|
||||
ticketGenerator () {
|
||||
ticketGenerator ( event, data ) {
|
||||
return new Promise( ( resolve, reject ) => {
|
||||
|
||||
db.getJSONDataSimple( event ).then( template => {
|
||||
pdfme.generate( { template, data } ).then( pdf => {
|
||||
resolve( pdf );
|
||||
// TODO: Maybe write to disk
|
||||
} ).catch( error => {
|
||||
reject( error );
|
||||
} );
|
||||
} );
|
||||
} );
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,7 +9,6 @@
|
||||
|
||||
<template>
|
||||
<div id="window">
|
||||
<!-- TODO: Add additional div with v-if to check if a location has been selected and warn if not so. -->
|
||||
<properties class="properties" v-model:draggables="draggables" @updated="handleUpdate" :scale-factor="scaleFactor" :active="active" :history-pos="historyPos" :zoom-factor="zoomFactor" v-model:general-settings="generalSettings"></properties>
|
||||
<div class="parent" id="parent">
|
||||
<div class="content-parent">
|
||||
@@ -80,6 +79,7 @@
|
||||
historyPos: 0,
|
||||
generalSettings: { 'namingScheme': 'numeric' },
|
||||
seatCountInfo: { 'data': {}, 'count': 0 },
|
||||
autoSave: null,
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
@@ -93,6 +93,9 @@
|
||||
reliably according to testing done.
|
||||
*/
|
||||
runHook () {
|
||||
if ( !sessionStorage.getItem( 'locationID' ) ) {
|
||||
this.$router.push( '/admin/events' );
|
||||
}
|
||||
let self = this;
|
||||
this.zoomFactor = sessionStorage.getItem( 'zoom' ) ? parseFloat( sessionStorage.getItem( 'zoom' ) ) : 1;
|
||||
|
||||
@@ -128,7 +131,8 @@
|
||||
}
|
||||
};
|
||||
|
||||
// TODO: Create 1min interval saving
|
||||
// Auto save every 60s (60K ms)
|
||||
this.autoSave = setInterval( this.saveDraft(), 60000 );
|
||||
|
||||
/*
|
||||
Calculate scale factor (this adds support for differently sized screens)
|
||||
@@ -165,7 +169,7 @@
|
||||
} );
|
||||
|
||||
if ( !sessionStorage.getItem( 'seatplan-history' ) ) {
|
||||
sessionStorage.setItem( 'seatplan-history', JSON.stringify( { '1': this.scaleDown( this.draggables ) } ) );
|
||||
sessionStorage.setItem( 'seatplaTODO:n-history', JSON.stringify( { '1': this.scaleDown( this.draggables ) } ) );
|
||||
}
|
||||
|
||||
let history = sessionStorage.getItem( 'seatplan-history' ) ? JSON.parse( sessionStorage.getItem( 'seatplan-history' ) ) : {};
|
||||
@@ -407,6 +411,7 @@
|
||||
},
|
||||
unmounted() {
|
||||
clearInterval( this.sizePoll );
|
||||
clearInterval( this.autoSave );
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
@@ -25,7 +25,8 @@
|
||||
},
|
||||
data () {
|
||||
return {
|
||||
code: { '1': '', '2': '' }
|
||||
code: { '1': '', '2': '' },
|
||||
serverPing: null,
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
@@ -61,14 +62,37 @@
|
||||
}, false)
|
||||
}, 300 );
|
||||
} else {
|
||||
// TODO: Add ping method (pings every 5 sec)
|
||||
setTimeout( () => {
|
||||
this.$refs.notification.createNotification( 'Unsupported browser detected. Redirection might take longer to occur!', 20, 'warning', 'normal' );
|
||||
}, 300 );
|
||||
// ping server every 5s to check if logged in
|
||||
this.serverPing = setInterval( () => {
|
||||
fetch( '/user/2fa/ping' ).then( res => {
|
||||
if ( res.status === 200 ) {
|
||||
res.json().then( data => {
|
||||
if ( data ) {
|
||||
if ( data.status === 'ok' ) {
|
||||
this.userStore.setUserAuth( true );
|
||||
this.$router.push( sessionStorage.getItem( 'redirect' ) ?? '/account' );
|
||||
}
|
||||
}
|
||||
} );
|
||||
} else {
|
||||
console.error( 'Request failed' );
|
||||
this.$refs.notification.createNotification( 'We are sorry, but an error occurred. You will not be redirected automatically', 300, 'error', 'normal' );
|
||||
}
|
||||
} ).catch( error => {
|
||||
console.error( error );
|
||||
this.$refs.notification.createNotification( 'We are sorry, but an error occurred. You will not be redirected automatically', 300, 'error', 'normal' );
|
||||
} );
|
||||
}, 5000 );
|
||||
}
|
||||
let code = sessionStorage.getItem( '2faCode' ) ? sessionStorage.getItem( '2faCode' ) : '';
|
||||
this.code = { '1': code.slice( 0, 3 ), '2': code.substring( 3 ) };
|
||||
},
|
||||
unmounted() {
|
||||
clearInterval( this.serverPing );
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
0
website/dist/templates/default/index.html
vendored
Normal file
0
website/dist/templates/default/index.html
vendored
Normal file
0
website/dist/templates/rounded/index.html
vendored
Normal file
0
website/dist/templates/rounded/index.html
vendored
Normal file
0
website/dist/templates/simple/index.html
vendored
Normal file
0
website/dist/templates/simple/index.html
vendored
Normal file
Reference in New Issue
Block a user