pcgamedb/crawler/steam.go

122 lines
3.0 KiB
Go
Raw Permalink Normal View History

2024-09-24 06:17:11 -04:00
package crawler
import (
"encoding/json"
"errors"
"fmt"
"net/url"
"regexp"
"strconv"
"strings"
2024-11-15 02:02:45 -05:00
2024-11-20 06:09:04 -05:00
"pcgamedb/cache"
"pcgamedb/constant"
"pcgamedb/model"
"pcgamedb/utils"
2024-09-24 06:17:11 -04:00
)
func GetSteamAppDetail(id int) (*model.SteamAppDetail, error) {
key := fmt.Sprintf("steam_game:%d", id)
val, exist := cache.Get(key)
if exist {
var detail model.SteamAppDetail
if err := json.Unmarshal([]byte(val), &detail); err != nil {
return nil, err
}
return &detail, nil
}
2024-09-24 06:17:11 -04:00
baseURL, _ := url.Parse(constant.SteamAppDetailURL)
params := url.Values{}
params.Add("appids", strconv.Itoa(id))
// params.Add("l", "schinese")
baseURL.RawQuery = params.Encode()
2024-12-02 03:17:01 -05:00
resp, err := utils.Request().SetHeaders(map[string]string{
"User-Agent": "",
}).Get(baseURL.String())
2024-09-24 06:17:11 -04:00
if err != nil {
return nil, err
}
var detail map[string]*model.SteamAppDetail
2024-12-02 03:17:01 -05:00
if err = json.Unmarshal(resp.Body(), &detail); err != nil {
2024-09-24 06:17:11 -04:00
return nil, err
}
if _, ok := detail[strconv.Itoa(id)]; !ok {
return nil, fmt.Errorf("steam App not found: %d", id)
2024-09-24 06:17:11 -04:00
}
if detail[strconv.Itoa(id)] == nil {
return nil, fmt.Errorf("steam App not found: %d", id)
2024-09-24 06:17:11 -04:00
}
jsonBytes, err := json.Marshal(detail[strconv.Itoa(id)])
if err == nil {
_ = cache.Set(key, string(jsonBytes))
2024-09-24 06:17:11 -04:00
}
return detail[strconv.Itoa(id)], nil
2024-09-24 06:17:11 -04:00
}
func GenerateSteamGameInfo(id int) (*model.GameInfo, error) {
item := &model.GameInfo{}
detail, err := GetSteamAppDetail(id)
2024-09-24 06:17:11 -04:00
if err != nil {
return nil, err
}
item.SteamID = id
item.Name = detail.Data.Name
item.Description = detail.Data.ShortDescription
item.Cover = fmt.Sprintf("https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/%v/library_600x900_2x.jpg", id)
item.Developers = detail.Data.Developers
item.Publishers = detail.Data.Publishers
var screenshots []string
2024-09-24 06:17:11 -04:00
for _, screenshot := range detail.Data.Screenshots {
screenshots = append(screenshots, screenshot.PathFull)
}
item.Screenshots = screenshots
return item, nil
}
func GetSteamIDByIGDBID(IGDBID int) (int, error) {
key := fmt.Sprintf("steam_game:%d", IGDBID)
val, exist := cache.Get(key)
if exist {
id, err := strconv.Atoi(val)
if err != nil {
return 0, err
}
return id, nil
}
2024-09-24 06:17:11 -04:00
var err error
2024-12-02 03:17:01 -05:00
resp, err := igdbRequest(constant.IGDBWebsitesURL, fmt.Sprintf(`where game = %v; fields *; limit 500;`, IGDBID))
2024-09-24 06:17:11 -04:00
if err != nil {
return 0, err
}
var data []struct {
Game int `json:"game"`
Url string `json:"url"`
}
2024-12-02 03:17:01 -05:00
if err = json.Unmarshal(resp.Body(), &data); err != nil {
2024-09-24 06:17:11 -04:00
return 0, err
}
if len(data) == 0 {
return 0, errors.New("not found")
2024-09-24 06:17:11 -04:00
}
for _, v := range data {
if strings.HasPrefix(v.Url, "https://store.steampowered.com/app/") {
regex := regexp.MustCompile(`https://store.steampowered.com/app/(\d+)/?`)
idStr := regex.FindStringSubmatch(v.Url)
if len(idStr) < 2 {
return 0, errors.New("failed parse")
2024-09-24 06:17:11 -04:00
}
steamID, err := strconv.Atoi(idStr[1])
if err != nil {
return 0, err
}
_ = cache.Set(key, strconv.Itoa(steamID))
2024-09-24 06:17:11 -04:00
return steamID, nil
}
}
return 0, errors.New("not found")
2024-09-24 06:17:11 -04:00
}