mirror of
https://github.com/dcarrillo/whatismyip.git
synced 2024-11-16 12:01:13 +00:00
33 lines
776 B
Go
33 lines
776 B
Go
|
package router
|
||
|
|
||
|
import (
|
||
|
"html/template"
|
||
|
"log"
|
||
|
|
||
|
"github.com/dcarrillo/whatismyip/internal/setting"
|
||
|
"github.com/gin-gonic/gin"
|
||
|
)
|
||
|
|
||
|
func SetupTemplate(r *gin.Engine) {
|
||
|
if setting.App.TemplatePath == "" {
|
||
|
t, _ := template.New("home").Parse(home)
|
||
|
r.SetHTMLTemplate(t)
|
||
|
} else {
|
||
|
log.Printf("Template %s has been loaded", setting.App.TemplatePath)
|
||
|
r.LoadHTMLFiles(setting.App.TemplatePath)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func Setup(r *gin.Engine) {
|
||
|
r.GET("/", getRoot)
|
||
|
r.GET("/client-port", getClientPortAsString)
|
||
|
r.GET("/geo", getGeoAsString)
|
||
|
r.GET("/geo/:field", getGeoAsString)
|
||
|
r.GET("/asn", getASNAsString)
|
||
|
r.GET("/asn/:field", getASNAsString)
|
||
|
r.GET("/headers", getHeadersAsSortedString)
|
||
|
r.GET("/all", getAllAsString)
|
||
|
r.GET("/json", getJSON)
|
||
|
r.GET("/:header", getHeaderAsString)
|
||
|
}
|