v3.0.0/database/db.js

68 lines
1.7 KiB
JavaScript
Raw Normal View History

2017-01-14 09:50:18 +01:00
2017-01-16 08:37:42 +01:00
let init = function(db, config){
2017-01-14 09:50:18 +01:00
// Create the tables we need to store galleries and files
2017-01-17 23:05:00 +01:00
db.schema.createTableIfNotExists('albums', function (table) {
2017-01-14 09:50:18 +01:00
table.increments()
table.string('name')
table.integer('enabled')
2017-01-18 06:40:14 +01:00
table.integer('timestamp')
2017-01-14 09:50:18 +01:00
}).then(() => {})
db.schema.createTableIfNotExists('files', function (table) {
table.increments()
table.string('name')
table.string('original')
table.string('type')
table.string('size')
2017-01-19 07:34:48 +01:00
table.string('hash')
table.string('ip')
2017-01-17 23:05:00 +01:00
table.integer('albumid')
2017-01-18 06:40:14 +01:00
table.integer('timestamp')
2017-01-14 09:50:18 +01:00
}).then(() => {})
2017-01-16 08:37:42 +01:00
db.schema.createTableIfNotExists('tokens', function (table) {
table.string('name')
table.string('value')
2017-01-18 06:40:14 +01:00
table.integer('timestamp')
2017-01-16 08:37:42 +01:00
}).then(() => {
// == Generate a 1 time token == //
db.table('tokens').then((tokens) => {
2017-01-16 08:45:29 +01:00
if(tokens.length !== 0) return printAndSave(config, tokens[0].value, tokens[1].value)
// This is the first launch of the app
let clientToken = require('randomstring').generate()
let adminToken = require('randomstring').generate()
2017-01-18 06:40:14 +01:00
let now = Math.floor(Date.now() / 1000)
2017-01-16 08:45:29 +01:00
db.table('tokens').insert(
[
{
name: 'client',
2017-01-18 06:40:14 +01:00
value: clientToken,
timestamp: now
2017-01-16 08:45:29 +01:00
},
{
name: 'admin',
2017-01-18 06:40:14 +01:00
value: adminToken,
timestamp: now
2017-01-16 08:45:29 +01:00
}
]
).then(() => {
printAndSave(config, clientToken, adminToken)
}).catch(function(error) { console.log(error) })
}).catch(function(error) { console.log(error) })
2017-01-16 08:37:42 +01:00
})
2017-01-14 09:50:18 +01:00
}
2017-01-16 08:45:29 +01:00
function printAndSave(config, clientToken, adminToken){
console.log('Your client token is: ' + clientToken)
console.log('Your admin token is: ' + adminToken)
config.clientToken = clientToken
config.adminToken = adminToken
}
2017-01-14 09:50:18 +01:00
module.exports = init