db.js 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. let init = function(db, config){
  2. // Create the tables we need to store galleries and files
  3. db.schema.createTableIfNotExists('albums', function (table) {
  4. table.increments()
  5. table.string('name')
  6. table.integer('enabled')
  7. table.integer('timestamp')
  8. }).then(() => {})
  9. db.schema.createTableIfNotExists('files', function (table) {
  10. table.increments()
  11. table.string('name')
  12. table.string('original')
  13. table.string('type')
  14. table.string('size')
  15. table.string('hash')
  16. table.string('ip')
  17. table.integer('albumid')
  18. table.integer('timestamp')
  19. }).then(() => {})
  20. db.schema.createTableIfNotExists('tokens', function (table) {
  21. table.string('name')
  22. table.string('value')
  23. table.integer('timestamp')
  24. }).then(() => {
  25. // == Generate a 1 time token == //
  26. db.table('tokens').then((tokens) => {
  27. if(tokens.length !== 0) return printAndSave(config, tokens[0].value, tokens[1].value)
  28. // This is the first launch of the app
  29. let clientToken = require('randomstring').generate()
  30. let adminToken = require('randomstring').generate()
  31. let now = Math.floor(Date.now() / 1000)
  32. db.table('tokens').insert(
  33. [
  34. {
  35. name: 'client',
  36. value: clientToken,
  37. timestamp: now
  38. },
  39. {
  40. name: 'admin',
  41. value: adminToken,
  42. timestamp: now
  43. }
  44. ]
  45. ).then(() => {
  46. printAndSave(config, clientToken, adminToken)
  47. }).catch(function(error) { console.log(error) })
  48. }).catch(function(error) { console.log(error) })
  49. })
  50. }
  51. function printAndSave(config, clientToken, adminToken){
  52. console.log('Your client token is: ' + clientToken)
  53. console.log('Your admin token is: ' + adminToken)
  54. config.clientToken = clientToken
  55. config.adminToken = adminToken
  56. }
  57. module.exports = init