index.js 3.4 KB

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