123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- package main
- import (
- "bytes"
- "context"
- "encoding/json"
- "eta/eta_data_analysis/models"
- "eta/eta_data_analysis/services"
- "eta/eta_data_analysis/utils"
- "fmt"
- "github.com/chromedp/cdproto/network"
- "github.com/chromedp/chromedp"
- "io"
- "log"
- "net/http"
- "sync"
- "time"
- )
- type DataProcessor interface {
- FetchAndProcess(DataProcessor) error
- GenerateRequestParams(currentTime string) map[string]string
- ProcessResponse(data string) ([]models.FenWeiNetIndexInfo, error)
- }
- type BaseProcessor struct {
- URL string
- }
- var (
- authorization string
- authLock sync.RWMutex
- )
- func (p *BaseProcessor) FetchAndProcess(processor DataProcessor) error {
-
- now := time.Now()
- currentTime := now.Format(utils.FormatDateUnSpace)
-
- params := processor.GenerateRequestParams(currentTime)
-
- originalRequestBody := params["params"]
- requestBody := bytes.NewBufferString(originalRequestBody)
- req, err := http.NewRequest("POST", p.URL, requestBody)
- if err != nil {
- return err
- }
-
- req.Header.Set("Content-Type", "application/json")
- req.Header.Set("accept-language", "zh-CN,zh;q=0.9")
- authLock.RLock()
- req.Header.Set("Authorization", authorization)
- authLock.RUnlock()
- client := &http.Client{}
- resp, err := client.Do(req)
- if err != nil {
- return err
- }
- defer resp.Body.Close()
- body, err := io.ReadAll(resp.Body)
- if err != nil {
- return err
- }
- if checkResp(string(body)) {
- authLock.Lock()
-
- authorization, err = getAuthorizationByChrome()
- if err != nil {
- authLock.Unlock()
- return err
- }
- authLock.Unlock()
-
- requestBody = bytes.NewBufferString(originalRequestBody)
- req, err = http.NewRequest("POST", p.URL, requestBody)
- if err != nil {
- return err
- }
-
- req.Header.Set("Content-Type", "application/json")
- req.Header.Set("accept-language", "zh-CN,zh;q=0.9")
- req.Header.Set("Authorization", authorization)
-
- resp, err = client.Do(req)
- if err != nil {
- return err
- }
- defer resp.Body.Close()
- body, err = io.ReadAll(resp.Body)
- if err != nil {
- return err
- }
- }
-
- response, err := processor.ProcessResponse(string(body))
- if err != nil {
- return err
- }
- log.Printf("response size: %v", len(response))
- utils.FileLog.Info(fmt.Sprintf("response: %v", response))
-
- paramsLib := make(map[string]interface{})
- paramsLib["List"] = response
- paramsLib["TerminalCode"] = utils.TerminalCode
- postEdbLib, err := services.PostEdbLib(paramsLib, utils.LIB_ROUTE_FENWEI_NET_DATA_HANDLE)
- if err != nil {
-
- log.Printf("postEdbLib err: %v", err)
- return err
- }
- log.Printf("postEdbLib size: %v", len(postEdbLib))
- utils.FileLog.Info(fmt.Sprintf("postEdbLib: %v", string(postEdbLib)))
- return nil
- }
- func checkResp(resp string) bool {
- if resp == "" {
- return true
- }
- var responseObj models.Response
- err := json.Unmarshal([]byte(resp), &responseObj)
- if err != nil {
- return false
- }
- if responseObj.Code != 200 || responseObj.Message != "成功!" {
- return true
- }
- return false
- }
- func (p *BaseProcessor) GenerateRequestParams(currentTime string) map[string]string {
- return map[string]string{}
- }
- func (p *BaseProcessor) ProcessResponse(data string) ([]models.FenWeiNetIndexInfo, error) {
- return nil, nil
- }
- func getAuthorizationByChrome() (authorization string, err error) {
-
- if utils.FenweiNetUseName == "" {
- return "", fmt.Errorf("汾渭账号未设置")
- }
- if utils.FenweiNetPassword == "" {
- return "", fmt.Errorf("汾渭密码未设置")
- }
- opts := append(
- chromedp.DefaultExecAllocatorOptions[:],
- chromedp.Flag("headless", false),
- )
- allocCtx, cancel1 := chromedp.NewExecAllocator(context.Background(), opts...)
- defer cancel1()
-
- ctx, cancel2 := chromedp.NewContext(
- allocCtx,
- chromedp.WithLogf(log.Printf),
- )
- defer cancel2()
-
- authorizationChan := make(chan string, 1)
- chromedp.ListenTarget(ctx, func(ev interface{}) {
- if ev, ok := ev.(*network.EventRequestWillBeSent); ok {
- if authHeader, found := ev.Request.Headers["Authorization"]; found {
- if authStr, ok := authHeader.(string); ok {
- select {
- case authorizationChan <- authStr:
- default:
- }
- utils.FileLog.Info("Authorization header found: " + authStr)
- }
- }
- }
- })
-
- err = chromedp.Run(ctx,
- chromedp.Navigate(`https://www.sxcoal.com/`),
- chromedp.Click(`.pc_content__jO_mq`, chromedp.ByQuery),
- chromedp.Sleep(2*time.Second),
- chromedp.SetValue(`div.Sign_username__7eYwE input[type="text"]`, utils.FenweiNetUseName, chromedp.ByQuery),
- chromedp.SetValue(`div.Sign_password__dwxMn input[type="password"]`, utils.FenweiNetPassword, chromedp.ByQuery),
- chromedp.Sleep(2*time.Second),
-
- chromedp.Click(`//button[contains(@class, 'Button_btn__xbZjp') and contains(@class, 'Button_black__X_jwF') and contains(@class, 'Button_mediu__ZVHO_')]/span[text()='登录']`, chromedp.BySearch),
-
- chromedp.Sleep(8*time.Second),
- )
-
- select {
- case authorization = <-authorizationChan:
- case <-time.After(10 * time.Second):
- err = fmt.Errorf("未能获取到Authorization")
- }
- return
- }
|