2020-01-30 16:59:34 +00:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"github.com/chromedp/chromedp"
|
|
|
|
"io/ioutil"
|
|
|
|
"log"
|
|
|
|
"os"
|
|
|
|
"time"
|
|
|
|
|
2020-02-07 23:51:17 +00:00
|
|
|
config "../models/config"
|
2020-01-30 16:59:34 +00:00
|
|
|
utils "../utils"
|
|
|
|
)
|
|
|
|
|
|
|
|
// GetMusicUploads - Get all uploads by given music
|
|
|
|
func executeClientAction(url string, jsAction string) string {
|
|
|
|
dir, err := ioutil.TempDir("", "chromedp-example")
|
2020-02-07 23:51:17 +00:00
|
|
|
utils.CheckErr(err)
|
2020-01-30 16:59:34 +00:00
|
|
|
defer os.RemoveAll(dir)
|
|
|
|
|
|
|
|
opts := append(chromedp.DefaultExecAllocatorOptions[:],
|
|
|
|
chromedp.DisableGPU,
|
|
|
|
chromedp.UserDataDir(dir),
|
2020-02-07 23:51:17 +00:00
|
|
|
chromedp.Flag("headless", !config.Config.Debug),
|
2020-01-30 16:59:34 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
allocCtx, cancel := chromedp.NewExecAllocator(context.Background(), opts...)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
ctx, cancel := chromedp.NewContext(
|
|
|
|
allocCtx,
|
|
|
|
chromedp.WithLogf(log.Printf),
|
|
|
|
)
|
|
|
|
defer cancel()
|
|
|
|
|
2020-02-07 23:51:17 +00:00
|
|
|
ctx, cancel = context.WithTimeout(ctx, time.Duration(config.Config.Deadline)*time.Second)
|
2020-01-30 16:59:34 +00:00
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
var jsOutput string
|
2020-02-07 23:51:17 +00:00
|
|
|
jsOutput = runScrapeWithInfo(ctx, jsAction, url)
|
|
|
|
|
|
|
|
return jsOutput
|
|
|
|
}
|
|
|
|
|
|
|
|
func runScrapeQuiet(ctx context.Context, jsAction string, url string) string {
|
|
|
|
var jsOutput string
|
|
|
|
err := chromedp.Run(ctx,
|
2020-01-30 16:59:34 +00:00
|
|
|
// Navigate to user's page
|
|
|
|
chromedp.Navigate(url),
|
|
|
|
// Execute url grabber script
|
|
|
|
chromedp.EvaluateAsDevTools(utils.ReadFileAsString("scraper.js"), &jsOutput),
|
|
|
|
chromedp.EvaluateAsDevTools(jsAction, &jsOutput),
|
|
|
|
// Wait until custom js finishes
|
|
|
|
chromedp.WaitVisible(`video_urls`),
|
|
|
|
// Grab url links from our element
|
|
|
|
chromedp.InnerHTML(`video_urls`, &jsOutput),
|
|
|
|
)
|
2020-02-07 23:51:17 +00:00
|
|
|
utils.CheckErr(err)
|
|
|
|
return jsOutput
|
|
|
|
}
|
|
|
|
|
|
|
|
func runScrapeWithInfo(ctx context.Context, jsAction string, url string) string {
|
|
|
|
var jsOutput string
|
|
|
|
err := chromedp.Run(ctx,
|
|
|
|
// Navigate to user's page
|
|
|
|
chromedp.Navigate(url),
|
|
|
|
// Execute url grabber script
|
|
|
|
chromedp.EvaluateAsDevTools(utils.ReadFileAsString("scraper.js"), &jsOutput),
|
|
|
|
chromedp.EvaluateAsDevTools(jsAction, &jsOutput),
|
|
|
|
)
|
|
|
|
utils.CheckErr(err)
|
|
|
|
|
|
|
|
for {
|
|
|
|
err = chromedp.Run(ctx, chromedp.EvaluateAsDevTools("currentState.preloadCount.toString()", &jsOutput))
|
|
|
|
utils.CheckErr(err)
|
|
|
|
if jsOutput != "0" {
|
|
|
|
utils.Logf("\rPreloading... Currently loaded %s items.", jsOutput)
|
|
|
|
} else {
|
|
|
|
utils.Logf("\rPreloading...")
|
|
|
|
}
|
|
|
|
|
|
|
|
err = chromedp.Run(ctx, chromedp.EvaluateAsDevTools("currentState.finished.toString()", &jsOutput))
|
|
|
|
utils.CheckErr(err)
|
|
|
|
if jsOutput == "true" {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
time.Sleep(50 * time.Millisecond)
|
2020-01-30 16:59:34 +00:00
|
|
|
}
|
|
|
|
|
2020-02-07 23:51:17 +00:00
|
|
|
utils.Log("\nRetrieving items...")
|
|
|
|
err = chromedp.Run(ctx,
|
|
|
|
// Wait until custom js finishes
|
|
|
|
chromedp.WaitVisible(`video_urls`),
|
|
|
|
// Grab url links from our element
|
|
|
|
chromedp.InnerHTML(`video_urls`, &jsOutput),
|
|
|
|
)
|
|
|
|
utils.CheckErr(err)
|
|
|
|
|
2020-01-30 16:59:34 +00:00
|
|
|
return jsOutput
|
|
|
|
}
|