mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2024-12-13 16:06:21 +00:00
61 lines
1.3 KiB
JavaScript
61 lines
1.3 KiB
JavaScript
|
|
let init = function(db, config){
|
|
|
|
// Create the tables we need to store galleries and files
|
|
db.schema.createTableIfNotExists('gallery', function (table) {
|
|
table.increments()
|
|
table.string('name')
|
|
table.timestamps()
|
|
}).then(() => {})
|
|
|
|
db.schema.createTableIfNotExists('files', function (table) {
|
|
table.increments()
|
|
table.string('file')
|
|
table.string('original')
|
|
table.string('type')
|
|
table.string('size')
|
|
table.string('ip')
|
|
table.integer('galleryid')
|
|
table.timestamps()
|
|
}).then(() => {})
|
|
|
|
db.schema.createTableIfNotExists('tokens', function (table) {
|
|
table.string('name')
|
|
table.string('value')
|
|
table.timestamps()
|
|
}).then(() => {
|
|
|
|
// == Generate a 1 time token == //
|
|
db.table('tokens').then((tokens) => {
|
|
if(tokens.length === 0){
|
|
|
|
// This is the first launch of the app
|
|
let clientToken = require('randomstring').generate()
|
|
let adminToken = require('randomstring').generate()
|
|
|
|
db.table('tokens').insert(
|
|
[
|
|
{
|
|
name: 'client',
|
|
value: clientToken
|
|
},
|
|
{
|
|
name: 'admin',
|
|
value: adminToken
|
|
}
|
|
]
|
|
).then(() => {
|
|
console.log('Your client token is: ' + clientToken)
|
|
console.log('Your admin token is: ' + adminToken)
|
|
config.clientToken = clientToken
|
|
config.adminToken = adminToken
|
|
})
|
|
|
|
}
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
module.exports = init |