mirror of
https://github.com/pikami/tiktok-dl.git
synced 2024-11-29 03:05:42 +00:00
37 lines
940 B
Go
37 lines
940 B
Go
|
package workflows
|
||
|
|
||
|
import (
|
||
|
client "../client"
|
||
|
config "../models/config"
|
||
|
utils "../utils"
|
||
|
"fmt"
|
||
|
"strings"
|
||
|
)
|
||
|
|
||
|
// CanUseDownloadHashtag - Test's if this workflow can be used for parameter
|
||
|
func CanUseDownloadHashtag(url string) bool {
|
||
|
match := strings.Contains(url, "/tag/")
|
||
|
return match
|
||
|
}
|
||
|
|
||
|
// DownloadHashtag - Download videos marked with given hashtag
|
||
|
func DownloadHashtag(url string) {
|
||
|
uploads := client.GetHashtagUploads(url)
|
||
|
uploadCount := len(uploads)
|
||
|
hashtag := utils.GetHashtagFromURL(url)
|
||
|
downloadDir := fmt.Sprintf("%s/%s", config.Config.OutputPath, hashtag)
|
||
|
|
||
|
utils.InitOutputDirectory(downloadDir)
|
||
|
|
||
|
for index, upload := range uploads {
|
||
|
downloadVideo(upload, downloadDir)
|
||
|
utils.Logf("\r[%d/%d] Downloaded", index+1, uploadCount)
|
||
|
}
|
||
|
utils.Log()
|
||
|
}
|
||
|
|
||
|
func GetHashtagJson(url string) {
|
||
|
uploads := client.GetHashtagUploads(url)
|
||
|
fmt.Printf("%s", uploads)
|
||
|
}
|