You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
douyin/client.go

60 lines
1.2 KiB

package douyin
import (
"errors"
"go.dtapp.net/golog"
"net/http"
"strings"
)
// Client 实例
type Client struct {
config struct {
ua string // 用户代理
}
gormLog struct {
status bool // 状态
client *golog.ApiGorm // 日志服务
}
}
// NewClient 创建实例化
func NewClient() (*Client, error) {
c := &Client{}
c.config.ua = "Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1"
return c, nil
}
func (c *Client) request302(url string) (string, error) {
req, err := http.NewRequest("GET", url, nil)
if err != nil {
return "", err
}
client := new(http.Client)
client.CheckRedirect = func(req *http.Request, via []*http.Request) error {
return errors.New("redirect")
}
response, err := client.Do(req)
if err != nil {
if response.StatusCode == http.StatusFound {
location, err := response.Location()
return location.String(), err
} else {
return "", err
}
}
return "", nil
}
func (c *Client) urlJudge(str string) string {
if strings.Index(str, "douyin.com") != -1 || strings.Index(str, "iesdouyin.com") != -1 {
return str
}
return ""
}