index.js 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. const jwtSecret = 'AjnjLhjxM'
  2. const express = require('express');
  3. const express_graphql = require('express-graphql');
  4. const { buildSchema, printSchema } = require('graphql');
  5. const expand = require('mm-graphql/expand')
  6. const fs = require('fs')
  7. const uploadPath = `${__dirname}/public/images/`;
  8. const upload = require('multer')({ dest: uploadPath })
  9. const uploadTrackPath = `${__dirname}/public/track/`;
  10. const uploadTrack = require('multer')({ dest: uploadTrackPath, fieldSize: 1024*1024*128 })
  11. ;(async () => {
  12. const {Savable, slice, getModels} = await require('./models.js')()
  13. const { jwtGQL, jwtCheck } = require('mm-graphql/jwt')
  14. const {anonSchema, anonResolvers} = require('./anon')({Savable, secret: jwtSecret})
  15. let schema = buildSchema(`
  16. type User {
  17. _id: String
  18. createdAt: String
  19. login: String
  20. nick : String
  21. avatar: Image
  22. }
  23. input UserInput {
  24. _id: String
  25. login: String
  26. nick : String
  27. avatar: ImageInput
  28. }
  29. type Image {
  30. _id: ID,
  31. text: String,
  32. url: String,
  33. originalFileName: String,
  34. userAvatar: User,
  35. owner: User
  36. }
  37. input ImageInput {
  38. _id: ID,
  39. text: String,
  40. userAvatar: UserInput,
  41. }
  42. type Track {
  43. _id: ID,
  44. url: String,
  45. originalFileName: String,
  46. owner: User
  47. id3: ID3
  48. playlists: [Playlist]
  49. }
  50. type ID3 {
  51. title: String
  52. artist: String
  53. album: String
  54. year: String
  55. genre: String
  56. trackNumber: String
  57. }
  58. input TrackInput {
  59. _id: ID,
  60. playlists: [PlaylistInput]
  61. }
  62. type Playlist {
  63. _id: ID,
  64. owner: User
  65. name: String
  66. description: String
  67. tracks: [Track]
  68. }
  69. input PlaylistInput {
  70. _id: ID,
  71. name: String
  72. description: String
  73. tracks: [TrackInput]
  74. }
  75. `);
  76. schema = expand(schema)
  77. console.log(printSchema(schema))
  78. const app = express();
  79. app.use(express.static('public'));
  80. app.use('/graphql', express_graphql(jwtGQL({anonSchema, anonResolvers, schema, createContext: getModels, graphiql: true, secret: jwtSecret})))
  81. app.post('/upload', upload.single('photo'), async (req, res, next) => {
  82. let decoded;
  83. console.log('wtf')
  84. if (decoded = jwtCheck(req, jwtSecret)){
  85. console.log('SOME UPLOAD', decoded, req.file)
  86. let {models: {Image }} = await getModels(decoded.sub)
  87. let image = await Image.fromFileData(req.file)
  88. res.end(JSON.stringify({_id: image._id, url: image.url}))
  89. }
  90. else {
  91. res.status(503).send('permission denied')
  92. }
  93. })
  94. app.post('/track', uploadTrack.single('track'), async (req, res, next) => {
  95. let decoded;
  96. console.log('wtf')
  97. if (decoded = jwtCheck(req, jwtSecret)){
  98. console.log('SOME UPLOAD OF TRACK', decoded, req.file)
  99. let {models: { Track }} = await getModels(decoded.sub)
  100. let track = await Track.fromFileData(req.file)
  101. res.end(JSON.stringify({_id: track._id, url: track.url}))
  102. }
  103. else {
  104. res.status(503).send('permission denied')
  105. }
  106. })
  107. app.use(express.static('public'));
  108. let socketPath = "/home/asmer/node_hosts/player"
  109. app.listen(socketPath, () => {
  110. console.log('Express GraphQL Server Now Running On localhost:4000/graphql');
  111. fs.chmodSync(socketPath, '777');
  112. });
  113. })()