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/douyin.go

105 lines
2.0 KiB

2 years ago
package douyin
import (
"errors"
"go.dtapp.net/golog"
"go.dtapp.net/gorequest"
"gorm.io/gorm"
"net/http"
"strings"
)
2 years ago
type ConfigClient struct {
PgsqlDb *gorm.DB // pgsql数据库
}
type Client struct {
2 years ago
ua string // 用户代理
client *gorequest.App // 请求客户端
log *golog.Api // 日志服务
logTableName string // 日志表名
logStatus bool // 日志状态
2 years ago
config *ConfigClient // 配置
2 years ago
}
2 years ago
func NewClient(config *ConfigClient) *Client {
c := &Client{config: config}
c.client = gorequest.NewHttp()
if c.config.PgsqlDb != nil {
c.logStatus = true
c.logTableName = "douyin"
c.log = golog.NewApi(&golog.ApiConfig{
Db: c.config.PgsqlDb,
TableName: c.logTableName,
2 years ago
})
}
2 years ago
return c
2 years ago
}
2 years ago
func (c *Client) request(url string, params map[string]interface{}, method string) (resp gorequest.Response, err error) {
2 years ago
// 创建请求
2 years ago
client := c.client
2 years ago
// 设置请求地址
client.SetUri(url)
// 设置方式
client.SetMethod(method)
// 设置格式
client.SetContentTypeJson()
// 设置用户代理
2 years ago
client.SetUserAgent(c.ua)
2 years ago
// 设置参数
client.SetParams(params)
// 发起请求
request, err := client.Request()
if err != nil {
return gorequest.Response{}, err
}
// 日志
2 years ago
if c.logStatus == true {
go c.postgresqlLog(request)
2 years ago
}
return request, err
}
2 years ago
func (c *Client) request302(url string) (string, error) {
2 years ago
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
}
2 years ago
func (c *Client) urlJudge(str string) string {
2 years ago
if strings.Index(str, "douyin.com") != -1 || strings.Index(str, "iesdouyin.com") != -1 {
return str
}
return ""
}