mirror of
https://github.com/nprasad2077/NBA_Go.git
synced 2026-09-22 22:15:13 +00:00
54 lines
1.8 KiB
Go
54 lines
1.8 KiB
Go
// File: services/line_score_scrape_service.go
|
|
package services
|
|
|
|
import (
|
|
"log"
|
|
|
|
"github.com/PuerkitoBio/goquery"
|
|
"github.com/nprasad2077/NBA_Go/models"
|
|
"gorm.io/gorm"
|
|
"gorm.io/gorm/clause"
|
|
)
|
|
|
|
// FetchAndStoreLineScore parses the line score table from a goquery document and upserts it to the DB.
|
|
// It assumes the document has already been processed to make commented-out tables visible.
|
|
func FetchAndStoreLineScore(db *gorm.DB, doc *goquery.Document, gameID string) error {
|
|
var lineScores []models.LineScore
|
|
|
|
doc.Find("table#line_score tbody tr").Each(func(i int, row *goquery.Selection) {
|
|
teamName := row.Find(`th[data-stat="team"] a`).Text()
|
|
if teamName == "" {
|
|
return // Skip invalid rows
|
|
}
|
|
|
|
ls := models.LineScore{
|
|
GameID: gameID,
|
|
Team: teamName,
|
|
}
|
|
ls.Q1 = mustAtoi(row.Find(`td[data-stat="1"]`).Text())
|
|
ls.Q2 = mustAtoi(row.Find(`td[data-stat="2"]`).Text())
|
|
ls.Q3 = mustAtoi(row.Find(`td[data-stat="3"]`).Text())
|
|
ls.Q4 = mustAtoi(row.Find(`td[data-stat="4"]`).Text())
|
|
ls.OT1 = mustAtoi(row.Find(`td[data-stat="OT1"]`).Text())
|
|
ls.OT2 = mustAtoi(row.Find(`td[data-stat="OT2"]`).Text())
|
|
ls.OT3 = mustAtoi(row.Find(`td[data-stat="OT3"]`).Text())
|
|
ls.Total = mustAtoi(row.Find(`td[data-stat="T"]`).Text())
|
|
lineScores = append(lineScores, ls)
|
|
})
|
|
|
|
if len(lineScores) == 0 {
|
|
log.Printf("No line score data found to import for game %s.", gameID)
|
|
return nil
|
|
}
|
|
|
|
// Upsert the data into the database.
|
|
if err := db.Clauses(clause.OnConflict{
|
|
Columns: []clause.Column{{Name: "game_id"}, {Name: "team"}},
|
|
DoUpdates: clause.AssignmentColumns([]string{"q1", "q2", "q3", "q4", "ot1", "ot2", "ot3", "total"}),
|
|
}).Create(&lineScores).Error; err != nil {
|
|
return err
|
|
}
|
|
|
|
log.Printf("Successfully processed line scores for game %s.", gameID)
|
|
return nil
|
|
} |