-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscraping.js
290 lines (273 loc) · 13.6 KB
/
scraping.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
const randomUseragent = require('random-useragent');
const axios = require('axios');
const cheerio = require('cheerio');
const fs = require('fs');
const path = require('path');
const allCategoriesinWP = new Map();
const urlCat = '...';
(async function getAllCategories() {
try {
await axios.get(urlCat).then(res => {
for (catdIDandName in res.data) {
allCategoriesinWP.set(res.data[catdIDandName].category, res.data[catdIDandName].id);
}
}).catch(err => console.log(err))
} catch (err) {
console.log(err);
}
})();
(async function getAllpagesFunction() {
const getAllpages = [1071, 1070, 1069];
for (pageNum of getAllpages) {
let filename = `${new Date().getFullYear()}_${new Date().getDate()}_${new Date().getMonth() + 1}_${new Date().getHours() + 1}`;
if (!fs.existsSync(path.resolve(__dirname, `..`))) fs.mkdirSync(path.resolve(__dirname, `..`));
if (!fs.existsSync(path.resolve(__dirname, `..`))) fs.mkdirSync(path.resolve(__dirname, `..`));
if (!fs.existsSync(path.resolve(__dirname, `..`))) fs.mkdirSync(path.resolve(__dirname, `..`));
console.log(filename);
let apiKey = '';
let url = `...?page=${pageNum}`;
let urlCat = '';
///to avoid browser blocking
axios.get(`...?api_key=${apiKey}&url=${url}`)
.then(res => {
const movies = [];
const $ = cheerio.load(res.data);
$('.browse-movie-wrap').each((index, element) => {
const pagesLinks = $(element).children('a').attr('href');
movies[index] = pagesLinks;
});
insideLinks(movies);
console.log(res.status);
}).catch(err => {
console.log(err.response);
});
const insideLinks = async (links) => {
console.log(links);
let allMoviesContent = [];
let torrentAllInfo = [];
let reviews = [];
let screenshotimgs = [];
let i = 0;
for (a of links) {
let pagesLink = a;
let url2 = `http://api.scraperapi.com?api_key=${apiKey}&url=${pagesLink}`
await axios.get(url2)
.then(res => {
torrentAllInfo = [];
reviews = [];
screenshotimgs = [];
const $pageData = cheerio.load(res.data);
const title = $pageData('#movie-info .hidden-xs h1').html();
const moviesDate = $pageData('#movie-info .hidden-xs').children('h2').html();
const categories = $pageData('#movie-info .hidden-xs').children('h2:nth-child(3)').html();
const content = $pageData('#synopsis .hidden-xs').html();
const moviePoster = $pageData('#movie-poster .img-responsive').attr('src');
$pageData('.rating-row span:nth-child(2)').each((i, el) => {
reviews.push($pageData(el).html());
});
$pageData('#movie-info .hidden-sm a').each((index, element) => {
let torrentFile = $pageData(element).attr('href');
let torrentTitle = $pageData(element).attr('title');
let torrentLabel = $pageData(element).html();
let torrentObj = {
torrentFile,
torrentTitle,
torrentLabel
}
torrentAllInfo.push(torrentObj);
});
$pageData('#screenshots .screenshot .screenshot-group img').each((index, element) => {
let screenshot = $pageData(element).attr('src');
screenshotimgs.push(screenshot);
});
let url = $pageData('#playTrailer').attr('href');
let movieTrailerID;
url = url.replace(/(>|<)/gi, '').split(/(vi\/|v=|\/v\/|youtu\.be\/|\/embed\/)/);
if (url[2] !== undefined) {
movieTrailerID = url[2].split(/[^0-9a-z_\-]/i);
movieTrailerID = movieTrailerID[0];
}
else {
movieTrailerID = 'eDtksqj0v9k';
}
let moviesDateFormat = moviesDate.split(" ");
let categoriesArr = categories.split("/");
allMoviesContent.push({
title,
content,
moviePoster,
movieTrailerID,
moviesDateFormat: moviesDateFormat[0],
categoriesArr,
torrentAllInfo,
reviews,
screenshotimgs
});
}).catch(err => console.log(err));
console.log(allMoviesContent[i].title);
i++;
//console.log(i);
}
insertData(allMoviesContent);
}
const insertData = async (allmovies) => {
for (let movie in allmovies) {
let moviesInsertCats;
let imgNamePath;
let getAllscreenshotimgs;
getAllCategories(allmovies[movie].categoriesArr)
.then((catsArr) => {
moviesInsertCats = catsArr;
downloadImage(allmovies[movie].moviePoster, allmovies[movie].title)
.then(imgName => {
imgNamePath = imgName;
downloadScreenshotimgs(allmovies[movie].screenshotimgs, allmovies[movie].title)
.then(screenshotimgs => {
getAllscreenshotimgs = screenshotimgs;
downloadTorrentFiles(allmovies[movie].torrentAllInfo, allmovies[movie].title, allmovies[movie].moviesDateFormat)
.then(torrentArrObj => {
insertMovieData(imgNamePath, allmovies[movie].content, allmovies[movie].title, allmovies[movie].movieTrailerID, allmovies[movie].moviesDateFormat, moviesInsertCats, torrentArrObj, allmovies[movie].reviews, getAllscreenshotimgs);
});
})
});
}).catch(err => {
console.log(err)
});
}
}
async function downloadScreenshotimgs(screenshotimages, title) {
let screenshotimgs = [];
for (img in screenshotimages) {
if (screenshotimages[img]) {
let screenshotNameExtension = screenshotimages[img].substring(screenshotimages[img].lastIndexOf('.') + 1, screenshotimages[img].length);
let url = screenshotimages[img];
title = title.toLowerCase();
let screenshotName = title.replace(/\s|[0-9_]|\W|[#$%^&*()]/g, "") + Math.floor((Math.random() * 100) + 1);
let imagefile = path.resolve(__dirname, `../${filename}`, `${screenshotName}.${screenshotNameExtension}`);
let writerImg = fs.createWriteStream(imagefile);
const response = await axios({
url,
method: 'GET',
responseType: 'stream'
}).then(response => {
response.data.pipe(writerImg);
}).catch(err => {
moviePosterName = 'defaultImage';
});
let imgObj = {
imageName: `${filename}/${screenshotName}.${screenshotNameExtension}`
}
screenshotimgs.push(imgObj);
}
}
return JSON.stringify(screenshotimgs);
}
async function downloadImage(moviePoster, title) {
let moviePosterExtension = moviePoster.substring(moviePoster.lastIndexOf('.') + 1, moviePoster.length);
let url = moviePoster;
title = title.toLowerCase();
let moviePosterName = title.replace(/\s|[0-9_]|\W|[#$%^&*()]/g, "") + Math.floor((Math.random() * 100) + 1);
let imagefile = path.resolve(__dirname, `..${filename}`, `${moviePosterName}.${moviePosterExtension}`);
let writerImg = fs.createWriteStream(imagefile);
try {
const response = await axios({
url,
method: 'GET',
responseType: 'stream'
}).then(response => {
response.data.pipe(writerImg);
}).catch(err => {
moviePosterName = 'defaultImage';
});
return `${filename}/${moviePosterName}.${moviePosterExtension}`;
}
catch (err) {
console.log(err);
}
}
async function downloadTorrentFiles(movieTorrent, title, moviesDateFormat) {
let torrentArrObj = [];
for (torrentFile in movieTorrent) {
if (movieTorrent[torrentFile].torrentTitle.indexOf("subtitles") == -1) {
let movieTorrentExtension = 'torrent'
let url = movieTorrent[torrentFile].torrentFile;
let torrentTitle = movieTorrent[torrentFile].torrentTitle;
let torrentLabel = movieTorrent[torrentFile].torrentLabel;
title = title.toLowerCase()
let torrentLabelFile = torrentLabel.replace(/\s|\W|[#$%^&*()]/g, "_");
let movieTorrentName = title.replace(/\s|[0-9_]|\W|[#$%^&*()]/g, "_");
let movieTorrentNameModified = `${movieTorrentName}_${torrentLabelFile}_${moviesDateFormat}_` + Math.floor((Math.random() * 100) + 1);
let torrentfilePath = path.resolve(__dirname, `..${filename}`, `${movieTorrentNameModified}.${movieTorrentExtension}`);
let torrentFileFinalPath = fs.createWriteStream(torrentfilePath);
// const response = await axios({
// url,
// method: 'get',
// responseType: 'stream'
// });
// response.data.pipe(torrentFileFinalPath);
// let torrentObj = {
// movieTorrentFile: `${filename}/${movieTorrentNameModified}.${movieTorrentExtension}`,
// torrentTitle,
// torrentLabel
// }
// torrentArrObj.push(torrentObj);
try {
const response = await axios({
url,
method: 'GET',
responseType: 'stream'
}).then(response => {
response.data.pipe(torrentFileFinalPath);
let torrentObj = {
movieTorrentFile: `${filename}/${movieTorrentNameModified}.${movieTorrentExtension}`,
torrentTitle,
torrentLabel
}
torrentArrObj.push(torrentObj);
}).catch(err => {
console.log(err)
});
}
catch (err) {
console.log(err);
}
}
}
return JSON.stringify(torrentArrObj);
}
async function insertMovieData(imageName, content, title, movieTrailerID, moviesDateFormat, moviesInsertCats, torrentArrObjCooked, reviews, screenshotimgs) {
let moviesInsertCatIntoArr = moviesInsertCats.split(',');
let showData = {
'title': title,
'description': content,
'poster': imageName,
'publish': true,
'categories': moviesInsertCatIntoArr,
'trailer': movieTrailerID,
'date': moviesDateFormat,
'torrentData': torrentArrObjCooked,
'critics': reviews[1],
'audience': reviews[2],
'imdb': reviews[3],
'screenshotimgs': screenshotimgs
}
const submitPost = await axios.post('...', showData)
.then(res => console.log(res.data.title, '****inserted data****'))
.catch(err => {
console.log(err)
});
}
async function getAllCategories(allCat) {
let catAll = '5f99e28c9aad9ac57822c871';
let catsArr = [];
for (catIndex in allCat) {
let smallCat = allCat[catIndex].toLowerCase().replace(/\s/g, '');
if (allCategoriesinWP.get(smallCat)) {
catsArr.push(`${allCategoriesinWP.get(smallCat)}`);
};
}
catsArr.push(catAll);
return catsArr.toString();
}
}
})();