tiktok-dl/workflows/downloadMusic.go

51 lines
1.1 KiB
Go
Raw Normal View History

package workflows
import (
2020-03-22 00:10:24 +00:00
"fmt"
"regexp"
2020-02-24 23:01:10 +00:00
client "../client"
config "../models/config"
utils "../utils"
2020-03-21 22:22:08 +00:00
fileio "../utils/fileio"
2020-03-22 00:10:24 +00:00
log "../utils/log"
)
// CanUseDownloadMusic - Check's if DownloadMusic can be used for parameter
func CanUseDownloadMusic(url string) bool {
2020-02-24 23:01:10 +00:00
match, _ := regexp.MatchString(".com\\/music\\/.+", url)
return match
}
// DownloadMusic - Download all videos by given music
func DownloadMusic(url string) {
2020-02-25 18:12:01 +00:00
uploads, err := client.GetMusicUploads(url)
if err != nil {
OnWorkflowFail(err, url)
2020-02-25 18:12:01 +00:00
return
}
2020-03-22 00:10:24 +00:00
uploads = utils.RemoveArchivedItems(uploads)
2020-02-24 23:01:10 +00:00
uploadCount := len(uploads)
2020-02-24 23:01:10 +00:00
for index, upload := range uploads {
username := utils.GetUsernameFromString(upload.Uploader)
downloadDir := fmt.Sprintf("%s/%s", config.Config.OutputPath, username)
2020-03-21 22:22:08 +00:00
fileio.InitOutputDirectory(downloadDir)
2020-02-24 23:01:10 +00:00
downloadVideo(upload, downloadDir)
2020-03-22 00:10:24 +00:00
log.Logf("\r[%d/%d] Downloaded", index+1, uploadCount)
2020-02-24 23:01:10 +00:00
}
2020-03-22 00:10:24 +00:00
log.Log()
}
2020-03-22 00:10:24 +00:00
// GetMusicJSON - Prints scraped info from music
func GetMusicJSON(url string) {
uploads, err := client.GetMusicUploadsJSON(url)
2020-02-25 19:16:57 +00:00
if err != nil {
OnWorkflowFail(err, url)
2020-02-25 19:16:57 +00:00
return
}
2020-02-24 23:01:10 +00:00
fmt.Printf("%s", uploads)
}