index.js 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. 'use strict';
  2. const coreClass = require("../../core");
  3. const mongoose = require('mongoose');
  4. const config = require('config');
  5. const regex = {
  6. azAZ09_: /^[A-Za-z0-9_]+$/,
  7. az09_: /^[a-z0-9_]+$/,
  8. emailSimple: /^[\x00-\x7F]+@[a-z0-9]+\.[a-z0-9]+(\.[a-z0-9]+)?$/,
  9. password: /^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[$@$!%*?&])[A-Za-z\d$@$!%*?&]/,
  10. ascii: /^[\x00-\x7F]+$/
  11. };
  12. const isLength = (string, min, max) => {
  13. return !(typeof string !== 'string' || string.length < min || string.length > max);
  14. }
  15. const bluebird = require('bluebird');
  16. mongoose.Promise = bluebird;
  17. module.exports = class extends coreClass {
  18. initialize() {
  19. return new Promise((resolve, reject) => {
  20. this.setStage(1);
  21. this.schemas = {};
  22. this.models = {};
  23. const mongoUrl = config.get("mongo").url;
  24. mongoose.connect(mongoUrl, {
  25. useNewUrlParser: true,
  26. useCreateIndex: true,
  27. reconnectInterval: 3000,
  28. reconnectTries: 10
  29. })
  30. .then(() => {
  31. this.schemas = {
  32. song: new mongoose.Schema(require(`./schemas/song`)),
  33. queueSong: new mongoose.Schema(require(`./schemas/queueSong`)),
  34. station: new mongoose.Schema(require(`./schemas/station`)),
  35. user: new mongoose.Schema(require(`./schemas/user`)),
  36. playlist: new mongoose.Schema(require(`./schemas/playlist`)),
  37. news: new mongoose.Schema(require(`./schemas/news`)),
  38. report: new mongoose.Schema(require(`./schemas/report`)),
  39. punishment: new mongoose.Schema(require(`./schemas/punishment`))
  40. };
  41. this.models = {
  42. song: mongoose.model('song', this.schemas.song),
  43. queueSong: mongoose.model('queueSong', this.schemas.queueSong),
  44. station: mongoose.model('station', this.schemas.station),
  45. user: mongoose.model('user', this.schemas.user),
  46. playlist: mongoose.model('playlist', this.schemas.playlist),
  47. news: mongoose.model('news', this.schemas.news),
  48. report: mongoose.model('report', this.schemas.report),
  49. punishment: mongoose.model('punishment', this.schemas.punishment)
  50. };
  51. mongoose.connection.on('error', err => {
  52. this.logger.error("DB_MODULE", err);
  53. });
  54. mongoose.connection.on('disconnected', () => {
  55. this.logger.error("DB_MODULE", "Disconnected, going to try to reconnect...");
  56. this.setState("RECONNECTING");
  57. });
  58. mongoose.connection.on('reconnected', () => {
  59. this.logger.success("DB_MODULE", "Reconnected.");
  60. this.setState("INITIALIZED");
  61. });
  62. mongoose.connection.on('reconnectFailed', () => {
  63. this.logger.error("DB_MODULE", "Reconnect failed, stopping reconnecting.");
  64. this.failed = true;
  65. this._lockdown();
  66. });
  67. // this.schemas.user.path('username').validate((username) => {
  68. // return (isLength(username, 2, 32) && regex.azAZ09_.test(username));
  69. // }, 'Invalid username.');
  70. this.schemas.user.path('email.address').validate((email) => {
  71. if (!isLength(email, 3, 254)) return false;
  72. if (email.indexOf('@') !== email.lastIndexOf('@')) return false;
  73. return regex.emailSimple.test(email);
  74. }, 'Invalid email.');
  75. this.schemas.station.path('name').validate((id) => {
  76. return (isLength(id, 2, 16) && regex.az09_.test(id));
  77. }, 'Invalid station name.');
  78. this.schemas.station.path('displayName').validate((displayName) => {
  79. return (isLength(displayName, 2, 32) && regex.azAZ09_.test(displayName));
  80. }, 'Invalid display name.');
  81. this.schemas.station.path('description').validate((description) => {
  82. if (!isLength(description, 2, 200)) return false;
  83. let characters = description.split("");
  84. return characters.filter((character) => {
  85. return character.charCodeAt(0) === 21328;
  86. }).length === 0;
  87. }, 'Invalid display name.');
  88. this.schemas.station.path('owner').validate({
  89. isAsync: true,
  90. validator: (owner, callback) => {
  91. this.models.station.countDocuments({ owner: owner }, (err, c) => {
  92. callback(!(err || c >= 3))
  93. });
  94. },
  95. message: 'User already has 3 stations.'
  96. });
  97. /*
  98. this.schemas.station.path('queue').validate((queue, callback) => { //Callback no longer works, see station max count
  99. let totalDuration = 0;
  100. queue.forEach((song) => {
  101. totalDuration += song.duration;
  102. });
  103. return callback(totalDuration <= 3600 * 3);
  104. }, 'The max length of the queue is 3 hours.');
  105. this.schemas.station.path('queue').validate((queue, callback) => { //Callback no longer works, see station max count
  106. if (queue.length === 0) return callback(true);
  107. let totalDuration = 0;
  108. const userId = queue[queue.length - 1].requestedBy;
  109. queue.forEach((song) => {
  110. if (userId === song.requestedBy) {
  111. totalDuration += song.duration;
  112. }
  113. });
  114. return callback(totalDuration <= 900);
  115. }, 'The max length of songs per user is 15 minutes.');
  116. this.schemas.station.path('queue').validate((queue, callback) => { //Callback no longer works, see station max count
  117. if (queue.length === 0) return callback(true);
  118. let totalSongs = 0;
  119. const userId = queue[queue.length - 1].requestedBy;
  120. queue.forEach((song) => {
  121. if (userId === song.requestedBy) {
  122. totalSongs++;
  123. }
  124. });
  125. if (totalSongs <= 2) return callback(true);
  126. if (totalSongs > 3) return callback(false);
  127. if (queue[queue.length - 2].requestedBy !== userId || queue[queue.length - 3] !== userId) return callback(true);
  128. return callback(false);
  129. }, 'The max amount of songs per user is 3, and only 2 in a row is allowed.');
  130. */
  131. let songTitle = (title) => {
  132. return isLength(title, 1, 100);
  133. };
  134. this.schemas.song.path('title').validate(songTitle, 'Invalid title.');
  135. this.schemas.queueSong.path('title').validate(songTitle, 'Invalid title.');
  136. this.schemas.song.path('artists').validate((artists) => {
  137. return !(artists.length < 1 || artists.length > 10);
  138. }, 'Invalid artists.');
  139. this.schemas.queueSong.path('artists').validate((artists) => {
  140. return !(artists.length < 0 || artists.length > 10);
  141. }, 'Invalid artists.');
  142. let songArtists = (artists) => {
  143. return artists.filter((artist) => {
  144. return (isLength(artist, 1, 32) && regex.ascii.test(artist) && artist !== "NONE");
  145. }).length === artists.length;
  146. };
  147. this.schemas.song.path('artists').validate(songArtists, 'Invalid artists.');
  148. this.schemas.queueSong.path('artists').validate(songArtists, 'Invalid artists.');
  149. /*let songGenres = (genres) => {
  150. return genres.filter((genre) => {
  151. return (isLength(genre, 1, 16) && regex.azAZ09_.test(genre));
  152. }).length === genres.length;
  153. };
  154. this.schemas.song.path('genres').validate(songGenres, 'Invalid genres.');
  155. this.schemas.queueSong.path('genres').validate(songGenres, 'Invalid genres.');*/
  156. this.schemas.song.path('thumbnail').validate((thumbnail) => {
  157. return isLength(thumbnail, 8, 256);
  158. }, 'Invalid thumbnail.');
  159. this.schemas.queueSong.path('thumbnail').validate((thumbnail) => {
  160. return isLength(thumbnail, 0, 256);
  161. }, 'Invalid thumbnail.');
  162. this.schemas.playlist.path('displayName').validate((displayName) => {
  163. return (isLength(displayName, 1, 16) && regex.ascii.test(displayName));
  164. }, 'Invalid display name.');
  165. this.schemas.playlist.path('createdBy').validate((createdBy) => {
  166. this.models.playlist.countDocuments({ createdBy: createdBy }, (err, c) => {
  167. return !(err || c >= 10);
  168. });
  169. }, 'Max 10 playlists per user.');
  170. this.schemas.playlist.path('songs').validate((songs) => {
  171. return songs.length <= 2000;
  172. }, 'Max 2000 songs per playlist.');
  173. this.schemas.playlist.path('songs').validate((songs) => {
  174. if (songs.length === 0) return true;
  175. return songs[0].duration <= 10800;
  176. }, 'Max 3 hours per song.');
  177. this.schemas.report.path('description').validate((description) => {
  178. return (!description || (isLength(description, 0, 400) && regex.ascii.test(description)));
  179. }, 'Invalid description.');
  180. resolve();
  181. })
  182. .catch(err => {
  183. this.logger.error("DB_MODULE", err);
  184. reject(err);
  185. });
  186. })
  187. }
  188. passwordValid(password) {
  189. if (!isLength(password, 6, 200)) return false;
  190. return regex.password.test(password);
  191. }
  192. }