wizard.js 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. const randomstring = require('randomstring');
  2. const jetpack = require('fs-jetpack');
  3. const qoa = require('qoa');
  4. qoa.config({
  5. prefix: '>',
  6. underlineQuery: false
  7. });
  8. async function start() {
  9. console.log();
  10. console.log('You can manually edit .env file after the wizard to edit values');
  11. console.log();
  12. const wizard = [
  13. {
  14. type: 'input',
  15. query: 'Port to run the API in:',
  16. handle: 'SERVER_PORT'
  17. },
  18. {
  19. type: 'input',
  20. query: 'Port to run the Website in:',
  21. handle: 'WEBSITE_PORT'
  22. },
  23. {
  24. type: 'input',
  25. query: 'Full domain this instance is gonna be running on (Ex: https://lolisafe.moe):',
  26. handle: 'DOMAIN'
  27. },
  28. {
  29. type: 'input',
  30. query: 'Name of the service? (Ex: lolisafe):',
  31. handle: 'SERVICE_NAME'
  32. },
  33. {
  34. type: 'input',
  35. query: 'Maximum allowed upload file size in MB (Ex: 100):',
  36. handle: 'MAX_SIZE'
  37. },
  38. {
  39. type: 'confirm',
  40. query: 'Generate thumbnails for images/videos? (Requires ffmpeg installed and in your PATH)',
  41. handle: 'GENERATE_THUMBNAILS',
  42. accept: 'y',
  43. deny: 'n'
  44. },
  45. {
  46. type: 'confirm',
  47. query: 'Allow users to download entire albums in ZIP format?',
  48. handle: 'GENERATE_ZIPS',
  49. accept: 'y',
  50. deny: 'n'
  51. },
  52. {
  53. type: 'confirm',
  54. query: 'Strip EXIF information from uploaded images if possible?',
  55. handle: 'STRIP_EXIF',
  56. accept: 'y',
  57. deny: 'n'
  58. },
  59. {
  60. type: 'confirm',
  61. query: 'Serve files with node?',
  62. handle: 'SERVE_WITH_NODE',
  63. accept: 'y',
  64. deny: 'n'
  65. },
  66. {
  67. type: 'input',
  68. query: 'Base number of characters for generated file URLs (12 should be good enough):',
  69. handle: 'GENERATED_FILENAME_LENGTH'
  70. },
  71. {
  72. type: 'input',
  73. query: 'Base number of characters for generated album URLs (6 should be enough):',
  74. handle: 'GENERATED_ALBUM_LENGTH'
  75. },
  76. {
  77. type: 'confirm',
  78. query: 'Run lolisafe in public mode? (People will be able to upload without an account)',
  79. handle: 'PUBLIC_MODE',
  80. accept: 'y',
  81. deny: 'n'
  82. },
  83. {
  84. type: 'confirm',
  85. query: 'Enable user signup for new accounts?',
  86. handle: 'USER_ACCOUNTS',
  87. accept: 'y',
  88. deny: 'n'
  89. },
  90. {
  91. type: 'input',
  92. query: 'Name of the admin account?',
  93. handle: 'ADMIN_ACCOUNT'
  94. },
  95. {
  96. type: 'secure',
  97. query: 'Type a secure password for the admin account:',
  98. handle: 'ADMIN_PASSWORD'
  99. },
  100. {
  101. type: 'interactive',
  102. query: 'Which predefined database do you want to use?',
  103. handle: 'DB_CLIENT',
  104. symbol: '>',
  105. menu: [
  106. 'pg',
  107. 'sqlite3'
  108. ]
  109. },
  110. {
  111. type: 'input',
  112. query: 'Database host (Ignore if you selected sqlite3):',
  113. handle: 'DB_HOST'
  114. },
  115. {
  116. type: 'input',
  117. query: 'Database user (Ignore if you selected sqlite3):',
  118. handle: 'DB_USER'
  119. },
  120. {
  121. type: 'input',
  122. query: 'Database password (Ignore if you selected sqlite3):',
  123. handle: 'DB_PASSWORD'
  124. },
  125. {
  126. type: 'input',
  127. query: 'Database name (Ignore if you selected sqlite3):',
  128. handle: 'DB_DATABASE'
  129. }
  130. ];
  131. const response = await qoa.prompt(wizard);
  132. let envfile = '';
  133. const defaultSettings = {
  134. CHUNK_SIZE: 90,
  135. ROUTE_PREFIX: '/api',
  136. RATE_LIMIT_WINDOW: 2,
  137. RATE_LIMIT_MAX: 5,
  138. BLOCKED_EXTENSIONS: ['.jar', '.exe', '.msi', '.com', '.bat', '.cmd', '.scr', '.ps1', '.sh'],
  139. UPLOAD_FOLDER: 'uploads',
  140. SECRET: randomstring.generate(64),
  141. MAX_LINKS_PER_ALBUM: 5,
  142. META_THEME_COLOR: '#20222b',
  143. META_DESCRIPTION: 'Blazing fast file uploader and bunker written in node! 🚀',
  144. META_KEYWORDS: 'lolisafe,upload,uploader,file,vue,images,ssr,file uploader,free',
  145. META_TWITTER_HANDLE: '@its_pitu'
  146. };
  147. const allSettings = Object.assign(defaultSettings, response);
  148. const keys = Object.keys(allSettings);
  149. for (const item of keys) {
  150. envfile += `${item}=${allSettings[item]}\n`;
  151. }
  152. jetpack.write('.env', envfile);
  153. console.log();
  154. console.log('=============================================');
  155. console.log('== .env file generated successfully. ==');
  156. console.log('=============================================');
  157. console.log('== Run `yarn migrate` and `yarn seed` next ==');
  158. console.log('=============================================');
  159. console.log();
  160. }
  161. start();