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