-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.go
279 lines (231 loc) · 6.06 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
package main
import (
"bufio"
"fmt"
"log"
"net/http"
"net/http/cookiejar"
"os"
"strconv"
"strings"
"sync"
cr "github.com/ovo/crunchyrip/crunchyroll"
"github.com/urfave/cli/v2"
)
func main() {
app := cli.App{
Name: "crunchyrip",
Usage: "download full crunchyroll episodes",
Commands: []*cli.Command{
{
Name: "download",
Aliases: []string{"d"},
Usage: "download episodes or a season",
Flags: []cli.Flag{
&cli.StringFlag{
Name: "email",
Value: "",
Usage: "email for crunchyroll account",
Required: true,
},
&cli.StringFlag{
Name: "password",
Value: "",
Usage: "password for the crunchyroll account",
Required: true,
},
&cli.StringFlag{
Name: "episodeIDs",
Value: "",
Usage: "comma-separated episode IDs; no comma needed for single episode",
},
&cli.StringFlag{
Name: "locale",
Value: "en-US",
},
&cli.StringFlag{
Name: "resolution",
Value: "",
Usage: "resolution of the download (ex. 1080x1920) - defaults to highest resolution",
},
&cli.StringFlag{
Name: "seriesID",
Value: "",
Usage: "ID of the series you want to download a season for",
},
&cli.StringFlag{
Name: "range",
Value: "",
Usage: "combine with seriesID to download a range of episodes (ex. --range G69P9MD9Y-GRGGQ42DR)",
},
},
Action: downloadAction,
},
{
Name: "resolution",
Aliases: []string{"r"},
Usage: "get resolutions for an episode",
Flags: []cli.Flag{
&cli.StringFlag{
Name: "email",
Value: "",
Usage: "email for crunchyroll account",
Required: true,
},
&cli.StringFlag{
Name: "password",
Value: "",
Usage: "password for the crunchyroll account",
Required: true,
},
&cli.StringFlag{
Name: "episodeID",
Value: "",
Usage: "episodeID to get resolutions for",
Required: true,
},
},
Action: resolutionAction,
},
},
}
err := app.Run(os.Args)
if err != nil {
log.Fatal(err)
}
}
func downloadAction(c *cli.Context) error {
var wg sync.WaitGroup
tr := &http.Transport{
MaxIdleConns: 20,
MaxIdleConnsPerHost: 20,
}
client := http.Client{Transport: tr}
client.Jar, _ = cookiejar.New(nil)
log.Println("Logging in")
credentials, err := cr.Login(&client, c.String("email"), c.String("password"))
if err != nil {
return err
}
log.Println("Getting CMS info")
cms, err := cr.GetCMS(&client, credentials.AccessToken)
if err != nil {
return err
}
authConfig := cr.AuthConfig{
AccessToken: credentials.AccessToken,
Policy: cms.Cms.Policy,
Signature: cms.Cms.Signature,
KeyPairID: cms.Cms.KeyPairID,
Bucket: cms.Cms.Bucket,
}
if c.String("episodeIDs") != "" {
ids := strings.Split(c.String("episodeIDs"), ",")
wg.Add(len(ids))
for _, id := range ids {
go func(c *http.Client, authConfig cr.AuthConfig, id string, resolution string, locale string) {
log.Println("Getting episode info for " + id)
episode, err := cr.GetEpisode(c, authConfig, id)
if err != nil {
log.Fatal(err)
}
streamURL, err := cr.GetStreamURL(c, authConfig, episode.Links.Streams.Href, locale)
if err != nil {
log.Fatal(err)
}
log.Println("Downloading " + episode.ID)
go cr.DownloadStream(c, authConfig, streamURL, resolution, episode, &wg)
}(&client, authConfig, id, c.String("resolution"), c.String("locale"))
}
}
if c.String("seriesID") != "" {
seasons, err := cr.GetSeasons(&client, authConfig, c.String("seriesID"))
if err != nil {
return err
}
for i, s := range seasons {
fmt.Println(i+1, s.Title)
}
reader := bufio.NewReader(os.Stdin)
fmt.Print("Enter season to download: ")
text, _ := reader.ReadString('\n')
index, err := strconv.Atoi(strings.TrimSpace(text))
if err != nil {
return err
}
log.Println("Getting episode info for " + seasons[index-1].Title)
episodes, err := cr.GetEpisodes(&client, authConfig, seasons[index-1].ID)
if err != nil {
return err
}
var newep []cr.Episode
if c.String("range") != "" {
found := false
eprange := strings.Split(c.String("range"), "-")
for _, e := range episodes {
if e.ID == eprange[0] {
found = true
}
if found {
newep = append(newep, e)
}
if e.ID == eprange[1] {
found = false
}
}
} else {
newep = episodes
}
for _, e := range newep {
wg.Add(1)
go func(c *http.Client, authConfig cr.AuthConfig, ep cr.Episode, resolution string, locale string) {
streamURL, err := cr.GetStreamURL(c, authConfig, ep.Links.Streams.Href, locale)
if err != nil {
log.Fatal(err)
}
log.Println("Downloading " + ep.ID)
go cr.DownloadStream(c, authConfig, streamURL, resolution, ep, &wg)
}(&client, authConfig, e, c.String("resolution"), c.String("locale"))
}
}
wg.Wait()
return nil
}
func resolutionAction(c *cli.Context) error {
tr := &http.Transport{
MaxIdleConns: 20,
MaxIdleConnsPerHost: 20,
}
id := c.String("episodeID")
client := http.Client{Transport: tr}
client.Jar, _ = cookiejar.New(nil)
log.Println("Logging in")
credentials, err := cr.Login(&client, c.String("email"), c.String("password"))
if err != nil {
return err
}
log.Println("Getting CMS info")
cms, err := cr.GetCMS(&client, credentials.AccessToken)
authConfig := cr.AuthConfig{
AccessToken: credentials.AccessToken,
Policy: cms.Cms.Policy,
Signature: cms.Cms.Signature,
KeyPairID: cms.Cms.KeyPairID,
Bucket: cms.Cms.Bucket,
}
log.Println("Getting episode info for " + id)
episode, err := cr.GetEpisode(&client, authConfig, id)
if err != nil {
return err
}
streamURL, err := cr.GetStreamURL(&client, authConfig, episode.Links.Streams.Href, c.String("locale"))
if err != nil {
return err
}
resolutions, err := cr.GetResolutions(&client, authConfig, streamURL, episode)
fmt.Println()
for _, resolution := range resolutions {
fmt.Println(resolution)
}
return nil
}