-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPlaylist.js
52 lines (49 loc) · 1.83 KB
/
Playlist.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
const Course = require("./Course.js");
const CourseBuilder = require("./CourseBuilder.js");
class Playlist {
constructor(nightmare, url) {
this.nightmare = nightmare;
this.url = url;
this.courses = [];
this.links = [];
}
async getCourses() {
return new Promise((resolve, reject) => {
console.log("Gathering Playlist Courses")
this.nightmare.goto(this.url).wait(5000).evaluate(() => {
const links = Array.from(document.querySelectorAll("a")).map((a) => {
if (a.innerText.trim().toLowerCase() == "watch now") {
return a.href
}
}).filter(function (el) {
return el != null;
})
return links;
}).then(links => {
this.links = links;
resolve(this.links);
});
});
}
async getCourseDetails(course_index = 0) {
return new Promise((resolve, reject) => {
console.log("Gathering Course Details");
const course_link = this.links[course_index];
var course = new Course(this.nightmare, course_link);
this.courses[course_index] = course;
course.setCourseDetails().then((course_details) => {
course.setVideos().then(course_details => {
const course_builder = new CourseBuilder(course);
course_builder.buildCourse();
if (course_index < this.links.length) {
course_index += 1;
this.getCourseDetails(course_index).then();
} else {
resolve(this.courses)
}
});
})
});
}
}
module.exports = Playlist;