process-post.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. import fs from 'fs'
  2. let fileName = './post/user-81069823274.json'
  3. const str = fs.readFileSync('./input.json', 'utf8')
  4. let inputData = JSON.parse(str)
  5. const saveFileStr = fs.readFileSync(fileName, 'utf8')
  6. let saveFileData = JSON.parse(saveFileStr)
  7. // console.log('list', inputData.has_more)
  8. // console.log('f', fs)
  9. inputData.aweme_list.map((v) => {
  10. Object.keys(v).map((k) => {
  11. if (
  12. ![
  13. 'aweme_id',
  14. 'desc',
  15. 'create_time',
  16. 'music',
  17. 'video',
  18. 'share_url',
  19. 'statistics',
  20. 'status',
  21. 'text_extra',
  22. 'is_top',
  23. 'share_info',
  24. 'duration',
  25. 'image_infos',
  26. 'risk_infos',
  27. 'position',
  28. 'author_user_id',
  29. 'prevent_download',
  30. 'long_video',
  31. 'aweme_control',
  32. 'images',
  33. 'suggest_words',
  34. ].includes(k)
  35. ) {
  36. delete v[k]
  37. }
  38. })
  39. Object.keys(v.music).map((k) => {
  40. if (
  41. ![
  42. 'id',
  43. 'title',
  44. 'author',
  45. 'cover_medium',
  46. 'cover_thumb',
  47. 'play_url',
  48. 'duration',
  49. 'user_count',
  50. 'owner_id',
  51. 'owner_nickname',
  52. 'is_original',
  53. ].includes(k)
  54. ) {
  55. delete v.music[k]
  56. }
  57. })
  58. Object.keys(v.video).map((k) => {
  59. if (
  60. ![
  61. 'play_addr',
  62. 'cover',
  63. 'height',
  64. 'width',
  65. 'ratio',
  66. 'use_static_cover',
  67. 'duration',
  68. 'horizontal_type',
  69. 'animated_cover',
  70. ].includes(k)
  71. ) {
  72. delete v.video[k]
  73. }
  74. })
  75. })
  76. saveFileData = saveFileData.concat(inputData.aweme_list)
  77. fs.writeFileSync('./ouput.json', JSON.stringify(inputData.aweme_list, null, 2))
  78. fs.writeFileSync(fileName, JSON.stringify(saveFileData, null, 2))