2024-11-13 22:08:24 -05:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2025-01-19 23:54:17 -05:00
|
|
|
"context"
|
2024-11-13 22:08:24 -05:00
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"strconv"
|
2025-01-19 23:51:21 -05:00
|
|
|
|
|
|
|
"gitea.stevedudenhoeffer.com/steve/aislegopher"
|
2024-11-13 22:08:24 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
// usage: aisegopher <product_id>
|
2025-01-19 23:54:17 -05:00
|
|
|
ctx := context.Background()
|
2024-11-13 22:08:24 -05:00
|
|
|
|
|
|
|
if len(os.Args) != 2 {
|
|
|
|
fmt.Println("usage: aisegopher <product_id>")
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
productId, err := strconv.Atoi(os.Args[1])
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println("Invalid product ID: ", os.Args[1], " error:", err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
2025-01-19 23:54:17 -05:00
|
|
|
priceHistory, err := aislegopher.GetPriceHistory(ctx, productId)
|
2024-11-13 22:08:24 -05:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println("Error getting price history: ", err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Println("Regular Prices:")
|
|
|
|
|
|
|
|
for _, dp := range priceHistory.RegularPrices {
|
|
|
|
fmt.Println(dp.Date, dp.Price)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(priceHistory.ThirdPartyPrices) > 0 {
|
|
|
|
fmt.Println("Third Party Prices:")
|
|
|
|
for _, dp := range priceHistory.ThirdPartyPrices {
|
|
|
|
fmt.Println(dp.Date, dp.Price)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|