2020-01-19 02:11:53 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
client "./client"
|
|
|
|
models "./models"
|
|
|
|
utils "./utils"
|
|
|
|
"fmt"
|
2020-01-19 15:54:16 +00:00
|
|
|
"regexp"
|
|
|
|
"strings"
|
2020-01-19 02:11:53 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
models.GetConfig()
|
2020-01-19 15:54:16 +00:00
|
|
|
url := models.Config.URL
|
2020-01-19 02:11:53 +00:00
|
|
|
|
2020-01-19 15:54:16 +00:00
|
|
|
// Single video
|
|
|
|
match, _ := regexp.MatchString("\\/@.+\\/video\\/[0-9]+", url)
|
|
|
|
if match {
|
|
|
|
getUsernameFromVidURLRegex, _ := regexp.Compile("com\\/@.*")
|
|
|
|
parts := strings.Split(getUsernameFromVidURLRegex.FindString(url), "/")
|
|
|
|
username := parts[1][1:]
|
|
|
|
upload := client.GetVideoDetails(url)
|
|
|
|
downloadDir := fmt.Sprintf("%s/%s", models.Config.OutputPath, username)
|
|
|
|
|
|
|
|
utils.InitOutputDirectory(downloadDir)
|
|
|
|
downloadVideo(upload, downloadDir)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tiktok user
|
|
|
|
downloadUser()
|
|
|
|
}
|
|
|
|
|
|
|
|
func downloadVideo(upload models.Upload, downloadDir string) {
|
|
|
|
uploadID := upload.GetUploadID()
|
|
|
|
downloadPath := fmt.Sprintf("%s/%s.mp4", downloadDir, uploadID)
|
|
|
|
|
|
|
|
if utils.CheckIfExists(downloadPath) {
|
|
|
|
fmt.Println("Upload '" + uploadID + "' already downloaded, skipping")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Println("Downloading upload item '" + uploadID + "' to " + downloadPath)
|
|
|
|
utils.DownloadFile(downloadPath, upload.URL)
|
2020-01-20 17:42:34 +00:00
|
|
|
|
|
|
|
if models.Config.MetaData {
|
|
|
|
metadataPath := fmt.Sprintf("%s/%s.json", downloadDir, uploadID)
|
|
|
|
upload.WriteToFile(metadataPath)
|
|
|
|
}
|
2020-01-19 15:54:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func downloadUser() {
|
|
|
|
username := models.Config.URL
|
2020-01-19 02:11:53 +00:00
|
|
|
downloadDir := fmt.Sprintf("%s/%s", models.Config.OutputPath, username)
|
|
|
|
uploads := client.GetUserUploads(username)
|
|
|
|
|
|
|
|
utils.InitOutputDirectory(downloadDir)
|
|
|
|
|
|
|
|
for _, upload := range uploads {
|
2020-01-19 15:54:16 +00:00
|
|
|
downloadVideo(upload, downloadDir)
|
2020-01-19 02:11:53 +00:00
|
|
|
}
|
|
|
|
}
|