index.js 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306
  1. var Sequelize = require('sequelize');
  2. var sequelize = new Sequelize('test', '', '',
  3. {
  4. host: 'localhost',
  5. dialect: 'mysql',
  6. pool: {
  7. max: 5,
  8. min: 0,
  9. idle: 10000
  10. },
  11. //logging: false
  12. }
  13. );
  14. var Post = sequelize.define('post', {
  15. title: Sequelize.STRING,
  16. text: Sequelize.TEXT,
  17. key: {type: Sequelize.STRING,
  18. unique: true,
  19. //get: function(){
  20. //var currentValue = this.getDataValue('key')
  21. //if (!currentValue){
  22. //var shajs = require('sha.js')
  23. //this.setDataValue('key',shajs('sha256').update(`${Math.random}${(new Date()).toString()}${this.text}${this.title}`).digest('hex'))
  24. //}
  25. //return this.getDataValue('key')
  26. //},
  27. //set: function(){
  28. //}}
  29. }
  30. },{
  31. getterMethods: {
  32. tagz() {
  33. return this.getTags().then(tagz => tagz.map(tag => tag.title))
  34. },
  35. age() {
  36. return (((new Date).getTime() - this.createdAt.getTime()) / 3600000).toFixed(0) + ' hrs ago';
  37. }
  38. },
  39. })
  40. Post.beforeCreate(function(model, options) {
  41. return new Promise ((resolve, reject) => {
  42. var shajs = require('sha.js')
  43. model.key = shajs('sha256').update(`${Math.random}${(new Date()).toString()}${this.text}${this.title}`).digest('hex')
  44. resolve(model, options)
  45. });
  46. })
  47. var Comment = sequelize.define('comment',{
  48. text: Sequelize.TEXT
  49. })
  50. Post.hasMany(Comment)
  51. Comment.belongsTo(Post)
  52. Comment.hasMany(Comment)
  53. Comment.belongsTo(Comment)
  54. var Tag = sequelize.define('tag', {
  55. title: Sequelize.STRING
  56. })
  57. Tag.belongsToMany(Post, {through: 'PostTag'})
  58. Post.belongsToMany(Tag, {through: 'PostTag'})
  59. async function fillDB(){
  60. await sequelize.sync()
  61. var post1 = await Post.create( {
  62. title: 'First Post',
  63. text: 'First Post BLah-blah-blah'
  64. })
  65. var post2 = await Post.create(
  66. {
  67. title: 'Second Post',
  68. text: 'Second Post BLah-blah-blah'
  69. })
  70. var post3 = await Post.create(
  71. {
  72. title: 'Third Post',
  73. text: 'Third Post BLah-blah-blah'
  74. })
  75. var comment1 = await Comment.create({text: 'test comment for first post'})
  76. var comment11 = await Comment.create({text: 'test comment for first comment of first post'})
  77. var comment12 = await Comment.create({text: 'test comment 2 for first comment of first post'})
  78. post1.addComment(comment1)
  79. comment1.addComment(comment11);
  80. comment1.addComment(comment12);
  81. var comment2 = await Comment.create({text: 'test comment for second post'})
  82. var comment21 = await Comment.create({text: 'test comment for first comment of second post'})
  83. var comment22 = await Comment.create({text: 'test comment 2 for first comment of second post'})
  84. comment2.addComment(comment21);
  85. comment21.addComment(comment22);
  86. post2.addComment(comment2)
  87. var tag1 = await Tag.create({title: 'tag1'})
  88. var tag2 = await Tag.create({title: 'tag2'})
  89. var tag3 = await Tag.create({title: 'tag3'})
  90. tag1.addPosts([post1, post3])
  91. post1.addTags([tag2])
  92. post2.addTags([tag2, tag3])
  93. tag3.addPost(post3)
  94. }
  95. //fillDB()
  96. //
  97. //
  98. async function getData(){
  99. var tag1 = await Tag.findOne({
  100. where: {
  101. title: 'tag1'
  102. }
  103. })
  104. //console.log(await tag1.getPosts())
  105. for (let post of await tag1.getPosts()){
  106. console.log('TAG1', post.title)
  107. }
  108. var comment1 = await Comment.findOne({
  109. where: {
  110. id: 1
  111. }
  112. })
  113. for (let comment of await comment1.getComments()){
  114. console.log('comment1 sub comment:', comment.text)
  115. console.log('parent', (await comment.getComment()).text)
  116. }
  117. var post1 =(await comment1.getPost());
  118. console.log(`${post1.text} at ${post1.createdAt}`)
  119. console.log(await post1.tagz)
  120. console.log(post1.age)
  121. }
  122. getData()
  123. var express = require('express');
  124. const cors = require('cors')
  125. var express_graphql = require('express-graphql');
  126. var { buildSchema } = require('graphql');
  127. // GraphQL schema
  128. //
  129. var schema = buildSchema(`
  130. type Query {
  131. post(id: String!): Post
  132. comments(id: Int!): [Comment]
  133. subComments(id: Int!): [Comment]
  134. posts: [Post]
  135. }
  136. type Mutation {
  137. createPost(title: String!, text: String!): Post
  138. createComment(postID: Int!, text: String!): Post
  139. }
  140. type Post {
  141. id: Int
  142. title: String
  143. text: String
  144. age: String
  145. tagz: [String]
  146. comments: [Comment]
  147. timestamp: Int
  148. key: String
  149. }
  150. type Comment {
  151. id: Int
  152. text: String
  153. age: String
  154. commentId: Int
  155. }
  156. `);
  157. async function getPost({id}){
  158. //return Post.findById(id).then( post => (post.comments = post.getComments(), post) )
  159. let post = await Post.findOne({
  160. where: {
  161. key: id
  162. }
  163. })
  164. if (post){
  165. post.comments = await post.getComments()
  166. post.timestamp = post.createdAt.getTime()/1000
  167. }
  168. //console.log(post.createdAt, typeof post.createdAt, post.createdAt.getTime())
  169. return post;
  170. }
  171. async function getPosts(args){
  172. let posts = await Post.findAll({})
  173. for (let post of posts){
  174. post.timestamp = post.createdAt.getTime()/1000
  175. }
  176. return posts;
  177. }
  178. function getPostComments(args){
  179. let id = args.id
  180. return Post.findById(id)
  181. .then( post => post.getComments() )
  182. .then( comments => comments.filter( comment => !comment.commentId))
  183. }
  184. async function getSubComments(args){
  185. let id = args.id
  186. //return Comment.findById(id).then( comment => comment.getComments() )
  187. let comment = await Comment.findById(id)
  188. return comment.getComments()
  189. }
  190. async function createPost({title, text}){
  191. return Post.create({title, text})
  192. }
  193. async function createComment({postID, text}){
  194. let post = await Post.findById(postID)
  195. let comment = await Comment.create({text})
  196. post.addComment(comment)
  197. return comment
  198. }
  199. // Root resolver
  200. var root = {
  201. post: getPost,
  202. posts: getPosts,
  203. comments: getPostComments,
  204. subComments: getSubComments,
  205. createPost,
  206. createComment,
  207. };
  208. // Create an express server and a GraphQL endpoint
  209. var app = express();
  210. app.use(cors())
  211. app.use('/graphql', express_graphql({
  212. schema: schema,
  213. rootValue: root,
  214. graphiql: true
  215. }));
  216. app.listen(4000, () => console.log('Express GraphQL Server Now Running On localhost:4000/graphql'));
  217. //query getPost($postID: Int!){
  218. //post(id:$postID){
  219. //text
  220. //timestamp
  221. //}
  222. //}
  223. //query getComments($postID: Int!){
  224. //comments(id:$postID){
  225. //text
  226. //}
  227. //}
  228. //query getPostWithComments($postID: Int!){
  229. //post(id:$postID){
  230. //text
  231. //comments {
  232. //text
  233. //age
  234. //}
  235. //}
  236. //}
  237. //query getSubComments($commentID: Int!){
  238. //subComments(id:$commentID){
  239. //text
  240. //}
  241. //}
  242. //mutation createPost($title: String!, $text:String!) {
  243. //createPost(title: $title, text: $text) {
  244. //title
  245. //text
  246. //}
  247. //}
  248. //mutation createComment($postID:Int!, $text:String!) {
  249. //createComment(postID: $postID, text: $text) {
  250. //text
  251. //}
  252. //}