AnonymousOverflow/src/routes/home.go

45 lines
855 B
Go
Raw Normal View History

2022-12-27 23:53:28 -05:00
package routes
import (
2022-12-28 11:33:26 -05:00
"anonymousoverflow/config"
2022-12-27 23:53:28 -05:00
"fmt"
"strings"
"github.com/gin-gonic/gin"
)
func GetHome(c *gin.Context) {
2022-12-28 11:33:26 -05:00
c.HTML(200, "home.html", gin.H{
"version": config.Version,
})
2022-12-27 23:53:28 -05:00
}
type urlConversionRequest struct {
URL string `form:"url" binding:"required"`
}
func PostHome(c *gin.Context) {
body := urlConversionRequest{}
if err := c.ShouldBind(&body); err != nil {
c.HTML(400, "home.html", gin.H{
"errorMessage": "Invalid request body",
})
return
}
soLink := body.URL
// validate URL
if !strings.HasPrefix(soLink, "https://stackoverflow.com/questions/") {
c.HTML(400, "home.html", gin.H{
"errorMessage": "Invalid stack overflow URL",
})
return
}
// redirect to the proxied thread
c.Redirect(302, fmt.Sprintf("/questions/%s", strings.TrimPrefix(soLink, "https://stackoverflow.com/questions/")))
}