mirror of
https://github.com/LeRoid-hub/Mensa-API.git
synced 2025-01-31 03:34:57 +00:00
43 lines
733 B
Go
43 lines
733 B
Go
package server
|
|
|
|
import (
|
|
"github.com/LeRoid-hub/Mensa-API/cache"
|
|
"github.com/LeRoid-hub/Mensa-API/fetch"
|
|
"github.com/LeRoid-hub/Mensa-API/scrape"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func state(c *gin.Context) {
|
|
state := c.Param("state")
|
|
if state == "" {
|
|
c.JSON(400, gin.H{
|
|
"error": "state is required",
|
|
})
|
|
return
|
|
}
|
|
|
|
if cache.HasCacheData(state) {
|
|
c.JSON(200, cache.GetCacheData(state))
|
|
return
|
|
}
|
|
|
|
resp, err := fetch.Fetch(state + ".html")
|
|
if err != nil {
|
|
c.JSON(500, gin.H{
|
|
"error": err.Error(),
|
|
})
|
|
return
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
if resp.StatusCode != 200 {
|
|
c.JSON(500, gin.H{
|
|
"error": "status code is not 200",
|
|
})
|
|
return
|
|
}
|
|
|
|
scraped := scrape.ScrapeState(resp.Body)
|
|
c.JSON(200, scraped)
|
|
}
|