-
Notifications
You must be signed in to change notification settings - Fork 98
/
api.go
420 lines (379 loc) · 10.7 KB
/
api.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
package m3u8d
import (
"context"
"crypto/sha256"
"crypto/tls"
"encoding/hex"
"encoding/json"
"fmt"
"github.com/orestonce/m3u8d/mformat"
"net/http"
"net/url"
"os"
"path/filepath"
"regexp"
"strconv"
"strings"
"sync/atomic"
"time"
)
const logFileName = `skip.txt`
func (this *DownloadEnv) StartDownload(req StartDownload_Req) (errMsg string) {
this.status.Locker.Lock()
defer this.status.Locker.Unlock()
if this.status.IsRunning {
errMsg = "正在下载"
return errMsg
}
skipInfo, errMsg := ParseSkipTsExpr(req.SkipTsExpr)
if errMsg != "" {
return "解析跳过ts的表达式错误: " + errMsg
}
var proxyUrlObj *url.URL
req.SetProxy, proxyUrlObj, errMsg = ParseProxyFormat(req.SetProxy)
if errMsg != "" {
return errMsg
}
this.setupClient(req, proxyUrlObj)
errMsg = this.prepareReqAndHeader(&req)
if errMsg != "" {
return errMsg
}
this.status.clearStatusNoLock()
this.status.ProgressBarShow = req.ProgressBarShow
this.ctx, this.cancelFn = context.WithCancel(context.Background())
this.status.IsRunning = true
go func() {
this.runDownload(req, skipInfo)
this.logToFile_TsNotWriteReason()
this.status.SetProgressBarTitle("下载进度")
this.status.DrawProgressBar(1, 0)
this.status.Locker.Lock()
//this.cancelFn()
this.status.IsRunning = false
this.status.Locker.Unlock()
this.logFileClose()
}()
return ""
}
func (this *DownloadEnv) GetStatus() (resp GetStatus_Resp) {
var sleepTh int32
sleepTh = atomic.LoadInt32(&this.sleepTh)
resp.Percent = this.status.GetPercent()
resp.Title = this.status.GetTitle()
if resp.Title == "" {
resp.Title = "正在下载"
}
{
this.status.Locker.Lock()
resp.IsDownloading = this.status.IsRunning
resp.ErrMsg = this.status.errMsg
resp.IsSkipped = this.status.isSkipped
resp.SaveFileTo = this.status.saveFileTo
this.status.Locker.Unlock()
}
var speed SpeedInfo
if resp.IsDownloading {
speed = this.status.SpeedRecent5sGetAndUpdate()
}
resp.StatusBar = speed.ToString()
if sleepTh > 0 {
if resp.StatusBar != "" {
resp.StatusBar += ", "
}
resp.StatusBar += "有 " + strconv.Itoa(int(sleepTh)) + "个线程正在休眠."
}
if resp.ErrMsg != "" {
resp.IsCancel = this.GetIsCancel()
}
return resp
}
func (this *DownloadEnv) WaitDownloadFinish() GetStatus_Resp {
for {
status := this.GetStatus()
if status.IsDownloading {
time.Sleep(time.Millisecond * 100)
continue
}
return status
}
}
func (this *DownloadEnv) setErrMsg(errMsg string) {
this.status.Locker.Lock()
this.status.errMsg = errMsg
this.status.Locker.Unlock()
if errMsg != "" {
this.logToFile("errMsg " + errMsg)
}
}
func (this *DownloadEnv) setSaveFileTo(to string, isSkipped bool) {
this.status.Locker.Lock()
this.status.saveFileTo = to
this.status.isSkipped = isSkipped
this.status.Locker.Unlock()
}
var debugLogNo uint32
func (this *DownloadEnv) runDownload(req StartDownload_Req, skipInfo SkipTsInfo) {
if !strings.HasPrefix(req.M3u8Url, "http") || req.M3u8Url == "" {
this.setErrMsg("M3u8Url not valid " + strconv.Quote(req.M3u8Url))
return
}
var err error
downloadingDir := filepath.Join(req.TsTempDir, "downloading")
for _, dir := range []string{req.SaveDir, req.TsTempDir, downloadingDir} {
if isDirExists(dir) {
continue
}
err = os.Mkdir(dir, 0755)
if err != nil {
this.setErrMsg("os.Mkdir " + strconv.Quote(dir) + " error: " + err.Error())
return
}
}
var tmpDebugFilePath string
if req.DebugLog {
tmpDebugFilePath = filepath.Join(downloadingDir, fmt.Sprintf("temp_debuglog_%08d-%05d.txt", os.Getpid(), atomic.AddUint32(&debugLogNo, 1)))
this.logFile, err = os.OpenFile(tmpDebugFilePath, os.O_APPEND|os.O_CREATE, 0666)
if err != nil {
this.setErrMsg("os.WriteUrl error: " + err.Error())
return
}
this.logToFile("version: " + GetVersion())
this.logToFile("origin m3u8 url: " + req.M3u8Url)
data, _ := json.Marshal(req)
this.logToFile("run args: " + string(data))
}
this.status.SetProgressBarTitle("[1/5]嗅探m3u8")
var info mformat.M3U8File
var errMsg string
req.M3u8Url, info, errMsg = this.sniffM3u8(req.M3u8Url)
if errMsg != "" {
this.setErrMsg("sniffM3u8: " + errMsg)
return
}
videoId := req.getVideoId()
tsSaveDir := filepath.Join(downloadingDir, videoId)
if !isDirExists(tsSaveDir) {
err = os.MkdirAll(tsSaveDir, os.ModePerm)
if err != nil {
this.setErrMsg("os.MkdirAll error: " + err.Error())
return
}
}
if this.logFile != nil {
this.logFile.Sync()
this.logFile.Close()
persistDebugFilePath := filepath.Join(tsSaveDir, "debuglog.txt")
err = os.Rename(tmpDebugFilePath, persistDebugFilePath)
if err != nil {
this.setErrMsg("os.Rename set persistDebugFilePath " + strconv.Quote(persistDebugFilePath) + " error : " + err.Error())
return
}
this.logFile, err = os.OpenFile(persistDebugFilePath, os.O_APPEND|os.O_CREATE, 0666)
if err != nil {
this.setErrMsg("os.Open persistDebugFilePath " + strconv.Quote(persistDebugFilePath) + " error: " + err.Error())
return
}
this.logToFile("refresh m3u8 url: " + req.M3u8Url)
}
this.status.SetProgressBarTitle("[2/5]获取ts列表")
tsList := info.GetTsList()
//先更新ts的url信息, 方便后续记录url
errMsg = updateTsUrl(req.M3u8Url, tsList)
if errMsg != "" {
this.setErrMsg("updateTsUrl: " + errMsg)
return
}
tsList, skipTsRecordList := skipApplyFilter(tsList, skipInfo)
for _, record := range skipTsRecordList {
this.status.setTsNotWriteReason(&record.ts, "触发跳过表达式,"+record.reason)
}
if len(tsList) <= 0 {
this.setErrMsg("需要下载的文件为空")
return
}
// 获取m3u8地址的内容体
errMsg = this.updateMediaKeyContent(req.M3u8Url, tsList)
if errMsg != "" {
this.setErrMsg("updateMediaKeyContent: " + errMsg)
return
}
// 下载ts
this.status.SetProgressBarTitle("[3/5]下载ts")
this.status.SpeedResetBytes()
err = this.downloader(tsList, skipInfo, tsSaveDir, req)
this.status.SpeedResetBytes()
if err != nil {
this.setErrMsg("下载ts文件错误: " + err.Error())
return
}
this.status.DrawProgressBar(1, 1)
this.status.SetProgressBarTitle("[4/5]分析ts列表")
resp, err := this.removeSkipList(tsSaveDir, tsList)
if err != nil {
this.setErrMsg("写入" + logFileName + "失败, " + err.Error())
return
}
if resp.skipByHttpCodeCount > 0 && skipInfo.IfHttpCodeMergeTs == false {
this.setErrMsg("使用http.code跳过了" + strconv.Itoa(resp.skipByHttpCodeCount) + "条ts记录,请自行合并")
return
}
if len(resp.mergeTsList) == 0 {
this.setErrMsg("ts文件列表为空")
return
}
if req.SkipMergeTs {
return
}
var tsFileList []string
for _, one := range resp.mergeTsList {
tsFileList = append(tsFileList, filepath.Join(tsSaveDir, one.Name))
}
var name string
var tmpOutputName string
for idx := 0; ; idx++ {
idxS := strconv.Itoa(idx)
if len(idxS) < 4 {
idxS = strings.Repeat("0", 4-len(idxS)) + idxS
}
idxS = "_" + idxS
if idx == 0 {
name = filepath.Join(req.SaveDir, req.FileName+".mp4")
} else {
name = filepath.Join(req.SaveDir, req.FileName+idxS+".mp4")
}
if !isFileExists(name) {
tmpOutputName = name + ".temp"
break
}
if idx > 10000 { // 超过1万就不找了
this.setErrMsg("自动寻找文件名失败")
return
}
}
this.status.SetProgressBarTitle("[5/5]合并ts为mp4")
err = MergeTsFileListToSingleMp4(MergeTsFileListToSingleMp4_Req{
TsFileList: tsFileList,
OutputMp4: tmpOutputName,
Ctx: this.ctx,
Status: &this.status,
})
this.status.SpeedResetBytes()
if err != nil {
this.setErrMsg("合并错误: " + err.Error())
return
}
err = os.Rename(tmpOutputName, name)
if err != nil {
this.setErrMsg("重命名失败: " + err.Error())
return
}
if req.UseServerSideTime && len(tsFileList) > 0 {
this.logToFile("更新mp4时间")
err = UpdateMp4Time(tsFileList[0], name)
if err != nil {
this.setErrMsg("更新mp4文件时间失败: " + err.Error())
return
}
}
if len(resp.skipLogContent) > 0 && req.WithSkipLog {
saveFileName := name + "_" + logFileName
this.logToFile("写入文件" + saveFileName)
err = os.WriteFile(saveFileName, resp.skipLogContent, 0666)
if err != nil {
this.setErrMsg("写入" + saveFileName + "失败, " + err.Error())
return
}
}
if req.SkipRemoveTs == false {
this.logFileClose()
err = os.RemoveAll(tsSaveDir)
if err != nil {
this.setErrMsg("删除下载目录失败: " + err.Error())
return
}
// 如果downloading目录为空,就删除掉,否则忽略
_ = os.Remove(downloadingDir)
}
this.setSaveFileTo(name, false)
return
}
func (this *DownloadEnv) setupClient(req StartDownload_Req, proxyUrlObj *url.URL) {
if this.nowClient == nil {
this.nowClient = &http.Client{}
}
//关闭以前的空闲链接
this.nowClient.CloseIdleConnections()
if this.nowClient.Transport == nil {
this.nowClient.Transport = &http.Transport{
TLSClientConfig: &tls.Config{
InsecureSkipVerify: req.Insecure,
},
Proxy: http.ProxyURL(proxyUrlObj),
}
} else {
transport := this.nowClient.Transport.(*http.Transport)
transport.TLSClientConfig.InsecureSkipVerify = req.Insecure
transport.Proxy = http.ProxyURL(proxyUrlObj)
}
}
func prepareDir(dir string) (dirAbs string, errMsg string) {
if filepath.IsAbs(dir) == false {
var err error
dir, err = filepath.Abs(dir)
if err != nil {
return "", "filepath.Abs error: " + err.Error()
}
}
dir = filepath.Clean(dir)
return dir, ""
}
func (this *DownloadEnv) prepareReqAndHeader(req *StartDownload_Req) (errMsg string) {
if req.SaveDir == "" {
var err error
req.SaveDir, err = os.Getwd()
if err != nil {
return "os.Getwd error: " + err.Error()
}
} else {
req.SaveDir, errMsg = prepareDir(req.SaveDir)
if errMsg != "" {
return errMsg
}
}
if req.TsTempDir == "" {
req.TsTempDir = req.SaveDir
} else {
req.TsTempDir, errMsg = prepareDir(req.TsTempDir)
if errMsg != "" {
return errMsg
}
}
if req.FileName == "" {
req.FileName = GetFileNameFromUrl(req.M3u8Url)
}
host, err := getHost(req.M3u8Url)
if err != nil {
return "getHost0: " + err.Error()
}
this.header = http.Header{
"User-Agent": []string{"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36"},
"Connection": []string{"keep-alive"},
"Accept": []string{"*/*"},
"Accept-Encoding": []string{"*"},
"Accept-Language": []string{"zh-CN,zh;q=0.9, en;q=0.8, de;q=0.7, *;q=0.5"},
"Referer": []string{host},
}
for key, valueList := range req.HeaderMap {
this.header[key] = valueList
}
return ""
}
func (this *StartDownload_Req) getVideoId() (id string) {
tmp1 := sha256.Sum256([]byte(this.M3u8Url))
return hex.EncodeToString(tmp1[:])
}
func FindUrlInStr(str string) string {
re := regexp.MustCompile(`https?://[^\s/$.?#].\S*`)
return re.FindString(str)
}