mirror of
https://github.com/LeRoid-hub/Mensa-API.git
synced 2025-01-31 11:44:55 +00:00
init
This commit is contained in:
parent
2eaeec2a26
commit
3c6ab561fd
16
api/fetch.go
Normal file
16
api/fetch.go
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
package fetch
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net/http"
|
||||||
|
"net/url"
|
||||||
|
)
|
||||||
|
|
||||||
|
func Fetch(url string) (*http.Response, error) {
|
||||||
|
u, err := url.ParseRequestURI(url)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
return http.Get(url)
|
||||||
|
}
|
||||||
|
|
42
api/server.go
Normal file
42
api/server.go
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net/http"
|
||||||
|
|
||||||
|
"fetch"
|
||||||
|
"github.com/gin-gonic/gin"
|
||||||
|
)
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
r := gin.Default()
|
||||||
|
r.GET("/ping", ping)
|
||||||
|
r.GET("/fetch", fetchRoute)
|
||||||
|
r.Run("localhost:8080")
|
||||||
|
}
|
||||||
|
|
||||||
|
func fetchRoute(c *gin.Context) {
|
||||||
|
url := c.Query("url")
|
||||||
|
if url == "" {
|
||||||
|
c.JSON(http.StatusBadRequest, gin.H{
|
||||||
|
"error": "url is required",
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
resp, err := fetch.Fetch(url)
|
||||||
|
if err != nil {
|
||||||
|
c.JSON(http.StatusInternalServerError, gin.H{
|
||||||
|
"error": err.Error(),
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
defer resp.Body.Close()
|
||||||
|
c.JSON(http.StatusOK, gin.H{
|
||||||
|
"status": resp.Status,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
func ping(c *gin.Context) {
|
||||||
|
c.JSON(http.StatusOK, gin.H{
|
||||||
|
"message": "pong",
|
||||||
|
})
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user