-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
454 lines (418 loc) · 12.5 KB
/
main.go
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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
package main
import (
"crypto/tls"
"encoding/json"
"fmt"
"io"
"net/http"
"net/url"
"os"
"os/exec"
"path"
"regexp"
"strings"
"github.com/manifoldco/promptui"
"github.com/spf13/cobra"
"go.nhat.io/cookiejar"
)
func main() {
var datDir string
var rootCmd = &cobra.Command{
Use: "masterclass-dl",
Short: "A downloader for classes from masterclass.com",
}
rootCmd.PersistentFlags().StringVarP(&datDir, "datDir", "d", "", "Path to the directory where cookies and other data will be stored (default: $HOME/.masterclass/)")
if datDir == "" {
home, err := os.UserHomeDir()
if err != nil {
fmt.Println(err)
os.Exit(1)
}
datDir = path.Join(home, ".masterclass")
}
if _, err := os.Stat(datDir); os.IsNotExist(err) {
err := os.MkdirAll(datDir, 0755)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
}
var outputDir string
var downloadPdfs bool
var ytdlExec string
var downloadCmd = &cobra.Command{
Use: "download [class/chapter...]",
Aliases: []string{"dl"},
Short: "Download a class or chapter from masterclass.com",
Long: "Download a class or chapter from masterclass.com. You can either specify a url or just the id. You can specify multiple URLs to download multiple at once.",
Args: cobra.MatchAll(cobra.MinimumNArgs(1)),
Run: func(cmd *cobra.Command, args []string) {
for _, arg := range args {
err := download(getClient(datDir), datDir, outputDir, downloadPdfs, ytdlExec, arg)
if err != nil {
fmt.Println(err)
}
}
},
}
downloadCmd.Flags().StringVarP(&outputDir, "output", "o", "", "Output directory")
downloadCmd.Flags().BoolVarP(&downloadPdfs, "pdfs", "p", true, "Download PDFs")
downloadCmd.Flags().StringVarP(&ytdlExec, "ytdl-exec", "y", "yt-dlp", "Path to the youtube-dl or yt-dlp executable")
downloadCmd.MarkFlagRequired("output")
var loginCmd = &cobra.Command{
Use: "login [email] [password]",
Short: "Login to masterclass.com",
Args: cobra.ExactArgs(2),
Run: func(cmd *cobra.Command, args []string) {
email := args[0]
password := args[1]
err := login(getClient(datDir), datDir, email, password)
if err != nil {
fmt.Println(err)
return
}
fmt.Println("Login successful")
},
}
var loginStatusCmd = &cobra.Command{
Use: "status",
Short: "Check login status",
Run: func(cmd *cobra.Command, args []string) {
err := loginStatus(getClient(datDir), datDir)
if err != nil {
fmt.Println(err)
return
}
},
}
rootCmd.AddCommand(downloadCmd)
rootCmd.AddCommand(loginCmd)
rootCmd.AddCommand(loginStatusCmd)
if err := rootCmd.Execute(); err != nil {
fmt.Println(err)
os.Exit(1)
}
}
func getClient(datDir string) *http.Client {
jar := cookiejar.NewPersistentJar(
cookiejar.WithFilePath(path.Join(datDir, "cookies.json")),
cookiejar.WithFilePerm(0755),
cookiejar.WithAutoSync(true),
)
return &http.Client{
Jar: jar,
Transport: &http.Transport{
TLSClientConfig: &tls.Config{},
},
}
}
func login(client *http.Client, datDir string, email string, password string) error {
var csrfResponse CSRFResponse
req, err := http.NewRequest("GET", "https://www.masterclass.com/api/v2/csrf-token", nil)
if err != nil {
return err
}
resp, err := client.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
if resp.StatusCode != 200 {
return fmt.Errorf("failed to get CSRF token")
}
err = json.NewDecoder(resp.Body).Decode(&csrfResponse)
if err != nil {
return err
}
if csrfResponse.Param == "" || csrfResponse.Token == "" || csrfResponse.Param != "authenticity_token" {
return fmt.Errorf("invalid CSRF token response")
}
data := url.Values{}
data.Set("next_page", "")
data.Set("auth_key", email)
data.Set("password", password)
data.Set("provider", "identity")
req, err = http.NewRequest("POST", "https://www.masterclass.com/auth/identity/callback", strings.NewReader(data.Encode()))
if err != nil {
return err
}
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
req.Header.Set("X-Csrf-Token", csrfResponse.Token)
req.Header.Set("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Browser/27 Safari/537.36")
req.Header.Set("Sec-Ch-Ua-Platform", "\"Windows\"")
req.Header.Set("Sec-Ch-Ua", "\"Chromium\";v=\"94\", \"Google Chrome\";v=\"94\", \";Not A Brand\";v=\"99\"")
req.Header.Set("Sec-Ch-Ua-Mobile", "?0")
req.Header.Set("Referer", "https://www.masterclass.com/auth/login")
resp, err = client.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
if resp.StatusCode != 200 {
return fmt.Errorf("failed to login")
}
req, err = http.NewRequest("GET", "https://www.masterclass.com/jsonapi/v1/profiles?deep=true", nil)
req.Header.Set("Referer", "https://www.masterclass.com/profiles")
if err != nil {
return err
}
resp, err = client.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
if resp.StatusCode != 200 {
return fmt.Errorf("failed to get profiles")
}
var profiles []ProfileResponse
err = json.NewDecoder(resp.Body).Decode(&profiles)
if err != nil {
return err
}
prompt := promptui.Select{
Label: "Select Profile",
Items: profiles,
Templates: &promptui.SelectTemplates{
Label: "{{ .DisplayName }}",
Active: "\U0001F449 {{ .DisplayName }}",
Inactive: " {{ .DisplayName }}",
Selected: "\U0001F64C {{ .DisplayName }}",
},
}
i, _, err := prompt.Run()
if err != nil {
return err
}
fmt.Printf("Selected profile: %s\n", profiles[i].DisplayName)
// Write selected profile to datDir + "/profile.json"
profileFile, err := os.Create(path.Join(datDir, "profile.json"))
if err != nil {
return err
}
defer profileFile.Close()
err = json.NewEncoder(profileFile).Encode(profiles[i])
if err != nil {
return err
}
return nil
}
func getProfile(client *http.Client, datDir string) (*ProfileResponse, error) {
profileFile, err := os.Open(path.Join(datDir, "profile.json"))
if err != nil {
if os.IsNotExist(err) {
return nil, fmt.Errorf("profile not found. Please login first")
}
return nil, err
}
defer profileFile.Close()
var profile ProfileResponse
err = json.NewDecoder(profileFile).Decode(&profile)
if err != nil {
return nil, err
}
return &profile, nil
}
func loginStatus(client *http.Client, datDir string) error {
if (client.Jar.Cookies(&url.URL{Scheme: "https", Host: "www.masterclass.com"}) == nil) {
return fmt.Errorf("cookies not found. Please login first")
}
profile, err := getProfile(client, datDir)
if err != nil {
return err
}
req, err := http.NewRequest("GET", "https://www.masterclass.com/jsonapi/v1/subscriptions/current?include=purchase_plan%2Cpurchase_plan.product%2Crenewal_purchase_plan%2Crenewal_purchase_plan.product", nil)
req.Header.Set("Mc-Profile-Id", profile.UUID)
req.Header.Set("Referer", "https://www.masterclass.com/homepage")
if err != nil {
return err
}
resp, err := client.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
if resp.StatusCode != 200 {
return fmt.Errorf("failed to get subscription status")
}
var subscription SubscriptionResponse
err = json.NewDecoder(resp.Body).Decode(&subscription)
if err != nil {
return err
}
req, err = http.NewRequest("GET", "https://www.masterclass.com/jsonapi/v1/user/cart-data?deep=true", nil)
req.Header.Set("Mc-Profile-Id", profile.UUID)
req.Header.Set("Referer", "https://www.masterclass.com/homepage")
if err != nil {
return err
}
resp, err = client.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
if resp.StatusCode != 200 {
return fmt.Errorf("failed to get login status")
}
var cartData CartDataResponse
err = json.NewDecoder(resp.Body).Decode(&cartData)
if err != nil {
return err
}
fmt.Printf("Email: %s\n", cartData.Email)
fmt.Printf("Subscription Status: %s\n", subscription.Status)
fmt.Printf("Subscription Expires At: %s\n", subscription.ExpiresAt)
fmt.Printf("Subscription Remaining Days: %d\n", subscription.RemainingDays)
return nil
}
func download(client *http.Client, datDir string, outputDir string, downloadPdfs bool, ytdlExec string, arg string) error {
if (client.Jar.Cookies(&url.URL{Scheme: "https", Host: "www.masterclass.com"}) == nil) {
return fmt.Errorf("cookies not found. Please login first")
}
profile, err := getProfile(client, datDir)
if err != nil {
return err
}
classSlug := ""
chapterSlug := ""
if strings.Contains(arg, "/chapters/") {
classSlug = strings.Split(arg, "/chapters/")[0]
chapterSlug = strings.Split(arg, "/chapters/")[1]
} else {
classSlug = arg
}
classSlug = strings.TrimPrefix(classSlug, "https://www.masterclass.com/classes/")
classSlug = strings.TrimSuffix(classSlug, "/")
chapterSlug = strings.TrimPrefix(chapterSlug, "https://www.masterclass.com/classes/")
chapterSlug = strings.TrimSuffix(chapterSlug, "/")
if classSlug == "" {
return fmt.Errorf("invalid class slug")
}
//get class info
req, err := http.NewRequest("GET", "https://www.masterclass.com/jsonapi/v1/courses/"+classSlug+"?deep=true", nil)
req.Header.Set("Referer", "https://www.masterclass.com/classes/"+classSlug)
req.Header.Set("Mc-Profile-Id", profile.UUID)
if err != nil {
return err
}
resp, err := client.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
if resp.StatusCode != 200 {
return fmt.Errorf("failed to get class info")
}
var class CourseResponse
err = json.NewDecoder(resp.Body).Decode(&class)
if err != nil {
return err
}
outputDir = path.Join(outputDir, class.Title)
err = os.MkdirAll(outputDir, 0755)
if err != nil {
return err
}
if downloadPdfs {
fmt.Println("Downloading PDFs")
for _, pdf := range class.AllPDFs {
req, err := http.NewRequest("GET", pdf.URL, nil)
if err != nil {
return err
}
req.Header.Set("Referer", "https://www.masterclass.com/classes/"+classSlug)
req.Header.Set("Mc-Profile-Id", profile.UUID)
resp, err := client.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
if resp.StatusCode != 200 {
return fmt.Errorf("failed to download PDF")
}
pdfFile, err := os.Create(path.Join(outputDir, pdf.Title+".pdf"))
if err != nil {
return err
}
defer pdfFile.Close()
_, err = io.Copy(pdfFile, resp.Body)
if err != nil {
return err
}
}
}
req, err = http.NewRequest("GET", "https://www.masterclass.com/classes/"+classSlug, nil)
req.Header.Set("Mc-Profile-Id", profile.UUID)
req.Header.Set("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Browser/27 Safari/537.36")
req.Header.Set("Sec-Ch-Ua-Platform", "\"Windows\"")
req.Header.Set("Sec-Ch-Ua", "\"Chromium\";v=\"94\", \"Google Chrome\";v=\"94\", \";Not A Brand\";v=\"99\"")
req.Header.Set("Sec-Ch-Ua-Mobile", "?0")
if err != nil {
return err
}
resp, err = client.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
if resp.StatusCode != 200 {
return fmt.Errorf("failed to get class for API key")
}
body, err := io.ReadAll(resp.Body)
if err != nil {
return err
}
apiKey := ""
re := regexp.MustCompile(`"MEDIA_METADATA_API_KEY"\s*:\s*"(.*?)"`)
matches := re.FindStringSubmatch(string(body))
if len(matches) > 1 {
apiKey = matches[1]
}
if apiKey == "" {
return fmt.Errorf("failed to find API key")
}
for _, chapter := range class.Chapters {
if chapterSlug != "" && chapter.Slug != chapterSlug {
continue
}
fmt.Printf("Downloading chapter %d: %s\n", chapter.Number, chapter.Title)
err := downloadChapter(client, datDir, outputDir, ytdlExec, chapter, apiKey)
if err != nil {
return err
}
}
fmt.Println("Done")
return nil
}
func downloadChapter(client *http.Client, datDir string, outputDir string, ytdlExec string, chapter Chapter, apiKey string) error {
req, err := http.NewRequest("GET", "https://edge.masterclass.com/api/v1/media/metadata/"+chapter.MediaUUID, nil)
if err != nil {
return err
}
req.Header.Set("Mc-Profile-Id", datDir)
req.Header.Set("X-Api-Key", apiKey)
resp, err := client.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
if resp.StatusCode != 200 {
body, err := io.ReadAll(resp.Body)
if err != nil {
return err
}
print(string(body))
return fmt.Errorf("failed to get chapter metadata")
}
var chapterMetadata ChapterMetadataResponse
err = json.NewDecoder(resp.Body).Decode(&chapterMetadata)
if err != nil {
return err
}
cmd := exec.Command(ytdlExec, "--embed-subs", "--all-subs", "-f", "bestvideo+bestaudio", chapterMetadata.Sources[0].Src, "-o", path.Join(outputDir, fmt.Sprintf("%03d-%s.mp4", chapter.Number, chapter.Title)))
cmd.Stderr = os.Stderr
err = cmd.Run()
if err != nil {
return err
}
return nil
}