首页 > 语言 > JavaScript > 正文

用Node.js通过sitemap.xml批量抓取美女图片

2024-05-06 16:20:58
字体:
来源:转载
供稿:网友

这篇文章主要介绍了用Node.js通过sitemap.xml批量抓取美女图片的方法和相关代码,有需要的小伙伴可以参考下。

之前看了很多个版本,自己也搞一个。

1. 支持指定保存到哪个目录

2. 按文章进行分目录存放

3. 支持设置并行下载上限

下次有空再搞个整站下载的。

package.json

 

 
  1. "name""me2sex-images"
  2. "version""0.0.1"
  3. "description""Batch download images from http://me2-sex.lofter.com"
  4. "main""index.js"
  5. "author""Fay"
  6. "license""MIT"
  7. "dependencies": { 
  8. "async""^0.9.0"
  9. "cheerio""^0.18.0"
  10. "mkdirp""^0.5.0"
  11. "request""^2.51.0"
  12. "url""^0.10.2"
  13. "xml2js""^0.4.4" 

index.js

 

 
  1. var node = { 
  2. async: require('async'), 
  3. cheerio: require('cheerio'), 
  4. fs: require('fs'), 
  5. mkdirp: require('mkdirp'), 
  6. path: require('path'), 
  7. request: require('request'), 
  8. url: require('url'), 
  9. xml2js: require('xml2js'), 
  10. }; 
  11.  
  12. var Me2SexImages = { 
  13.  
  14. /** 
  15. * 配置选项 
  16. */ 
  17. options: { 
  18. // 网站sitemap地址 
  19. sitemap: 'http://sexy.faceks.com/sitemap.xml'
  20. // 保存到此文件夹 
  21. saveTo: '/Users/Fay/Pictures/me2sex'
  22. // 图片并行下载上限 
  23. downLimit: 5, 
  24. }, 
  25.  
  26. posts: [], 
  27.  
  28. /** 
  29. * 开始下载(程序入口函数) 
  30. */ 
  31. start: function() { 
  32. var self = this
  33. var async = node.async; 
  34.  
  35. async.waterfall([ 
  36. self.wrapTask(self.sitemapXML), 
  37. self.wrapTask(self.sitemapJSON), 
  38. self.wrapTask(self.downAllImages), 
  39. ], function(err, result) { 
  40. if (err) { 
  41. console.log('error: %s', err.message); 
  42. else { 
  43. console.log('success: 下载成功'); 
  44. }); 
  45. }, 
  46.  
  47. /** 
  48. * 包裹任务,确保原任务的上下文指向某个特定对象 
  49. * @param {Function} task 符合asycs.js调用方式的任务函数 
  50. * @param {Any} context 上下文 
  51. * @param {Array} exArgs 额外的参数 
  52. * @return {Function} 符合asycs.js调用方式的任务函数 
  53. */ 
  54. wrapTask: function(task, context, exArgs) { 
  55. var self = this
  56. return function() { 
  57. var args = [].slice.call(arguments); 
  58. args = exArgs ? exArgs.concat(args) : args; 
  59. task.apply(context || self, args); 
  60. }; 
  61. }, 
  62.  
  63. /** 
  64. * 获取站点sitemap.xml 
  65. */ 
  66. sitemapXML: function(callback) { 
  67. console.log('开始下载sitemap.xml'); 
  68. node.request(this.options.sitemap, function(err, res, body) { 
  69. if (!err) console.log('下载sitemap.xml成功'); 
  70. callback(err, body); 
  71. }); 
  72. }, 
  73.  
  74. /** 
  75. * 将sitemap.xml转成json 
  76. */ 
  77. sitemapJSON: function(sitemapXML, callback) { 
  78. var self = this
  79. console.log('开始解析sitemap.xml'); 
  80. node.xml2js.parseString(sitemapXML, {explicitArray: false}, function(err, json) { 
  81. if (!err) { 
  82. self.posts = json.urlset.url; 
  83. self.posts.shift(); 
  84. console.log('解析sitemap.xml成功,共有%d个页面', self.posts.length); 
  85. callback(err, self.posts); 
  86. }); 
  87. }, 
  88.  
  89.  
  90.  
  91. /** 
  92. * 下载整站图片 
  93. */ 
  94. downAllImages: function(callback) { 
  95. var self = this
  96. var async = node.async; 
  97. console.log('开始批量下载'); 
  98. async.eachSeries(self.posts, self.wrapTask(self.downPostImages), callback); 
  99. }, 
  100.  
  101.  
  102. /** 
  103. * 下载单个post的图片 
  104. * @param {Object} post 文章 
  105. */ 
  106. downPostImages: function(post, callback) { 
  107. var self = this
  108. var async = node.async; 
  109.  
  110. async.waterfall([ 
  111. self.wrapTask(self.mkdir, self, [post]), 
  112. self.wrapTask(self.getPost), 
  113. self.wrapTask(self.parsePost), 
  114. self.wrapTask(self.downImages), 
  115. ], callback); 
  116. }, 
  117.  
  118. mkdir: function(post, callback) { 
  119. var path = node.path; 
  120. var url = node.url.parse(post.loc); 
  121. post.dir = path.join(this.options.saveTo, path.basename(url.pathname)); 
  122.  
  123. console.log('准备创建目录:%s', post.dir); 
  124. if (node.fs.existsSync(post.dir)) { 
  125. callback(null, post); 
  126. console.log('目录:%s 已经存在', post.dir); 
  127. return
  128. node.mkdirp(post.dir, function(err) { 
  129. callback(err, post); 
  130. console.log('目录:%s 创建成功', post.dir); 
  131. }); 
  132. }, 
  133.  
  134. /** 
  135. * 获取post内容 
  136. */ 
  137. getPost: function(post, callback) { 
  138. console.log('开始请求页面:%s', post.loc); 
  139. node.request(post.loc, function(err, res, body) { 
  140. if (!err) post.html = body; 
  141. callback(err, post); 
  142. console.log('请求页面成功:%s', post.loc); 
  143. }); 
  144. }, 
  145.  
  146. /** 
  147. * 解析post,并获取post中的图片列表 
  148. */ 
  149. parsePost: function(post, callback) { 
  150. var $ = post.$ = node.cheerio.load(post.html); 
  151. post.images = $('.img'
  152. .map(function() {return $(this).attr('bigimgsrc');}) 
  153. .toArray(); 
  154. callback(null, post); 
  155. }, 
  156.  
  157. /** 
  158. * 下载post图片列表中的图片 
  159. */ 
  160. downImages: function(post, callback) { 
  161. console.log('发现%d张妹子图片,准备开始下载...', post.images.length); 
  162. node.async.eachLimit( 
  163. post.images, 
  164. this.options.downLimit, 
  165. this.wrapTask(this.downImage, this, [post]), 
  166. callback 
  167. ); 
  168. }, 
  169.  
  170. /** 
  171. * 下载单个图片 
  172. */ 
  173. downImage: function(post, imgsrc, callback) { 
  174. var url = node.url.parse(imgsrc); 
  175. var fileName = node.path.basename(url.pathname); 
  176. var toPath = node.path.join(post.dir, fileName); 
  177. console.log('开始下载图片:%s,保存到:%s,文件名:%s', imgsrc, post.dir, fileName); 
  178. node.request(imgsrc) 
  179. .pipe(node.fs.createWriteStream(toPath)) 
  180. .on('close'function() { 
  181. console.log('图片下载成功:%s', imgsrc); 
  182. callback(); 
  183. }) 
  184. .on('error', callback); 
  185. }; 
  186.  
  187. Me2SexImages.start(); 

以上所述就是本文的全部内容,希望大家能够喜欢。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选