mirror of
https://gitlab.com/MrFry/mrfrys-node-server
synced 2025-04-01 20:24:18 +02:00
Date string update, midnight timer update, other stuff
This commit is contained in:
@@ -11,15 +11,6 @@ let authDB
|
||||
console.clear()
|
||||
CreateDB()
|
||||
|
||||
// authDB.backup(usersDBPath)
|
||||
// .then(() => {
|
||||
// logger.Log('backup complete!')
|
||||
// })
|
||||
// .catch((err) => {
|
||||
// logger.Log('backup failed!', logger.GetColor('redbg'))
|
||||
// console.log(err)
|
||||
// })
|
||||
|
||||
authDB.close()
|
||||
|
||||
function CreateDB () {
|
||||
@@ -44,7 +35,7 @@ function CreateDB () {
|
||||
pw: uuidv4(),
|
||||
oldCID: cid,
|
||||
avaiblePWRequests: 4,
|
||||
created: new Date().toString()
|
||||
created: utils.GetDateString()
|
||||
})
|
||||
} catch (e) {
|
||||
logger.Log('Error during inserting', logger.GetColor('redbg'))
|
||||
@@ -55,7 +46,7 @@ function CreateDB () {
|
||||
console.error(e)
|
||||
}
|
||||
|
||||
const dir = `./dbSetupResult/${GetDateString().replace(/ /g, '_')}`
|
||||
const dir = `./dbSetupResult/${utils.GetDateString().replace(/ /g, '_')}`
|
||||
utils.CreatePath(dir)
|
||||
Object.keys(dbStruct).forEach((key) => {
|
||||
const path = `${dir}/${key}.json`
|
||||
@@ -68,14 +59,3 @@ function CreateDB () {
|
||||
|
||||
logger.Log('Done')
|
||||
}
|
||||
|
||||
function GetDateString () {
|
||||
const m = new Date()
|
||||
const d = m.getFullYear() + '-' +
|
||||
('0' + (m.getMonth() + 1)).slice(-2) + '-' +
|
||||
('0' + m.getDate()).slice(-2) + ' ' +
|
||||
('0' + m.getHours()).slice(-2) + ':' +
|
||||
('0' + m.getMinutes()).slice(-2) + ':' +
|
||||
('0' + m.getSeconds()).slice(-2)
|
||||
return d
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user