2023-09-12 06:40:24 -04:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
2023-09-16 09:46:59 -04:00
|
|
|
"embed"
|
|
|
|
"html/template"
|
2023-09-25 03:43:21 -04:00
|
|
|
"log"
|
|
|
|
"net/http"
|
2024-09-17 01:10:13 -04:00
|
|
|
|
|
|
|
"github.com/nitezs/sub2clash/api/handler"
|
|
|
|
"github.com/nitezs/sub2clash/constant"
|
|
|
|
"github.com/nitezs/sub2clash/middleware"
|
2023-11-02 14:35:30 -04:00
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
2023-09-12 06:40:24 -04:00
|
|
|
)
|
|
|
|
|
2023-09-25 03:43:21 -04:00
|
|
|
//go:embed static
|
|
|
|
var staticFiles embed.FS
|
2023-09-16 09:46:59 -04:00
|
|
|
|
2023-09-12 06:40:24 -04:00
|
|
|
func SetRoute(r *gin.Engine) {
|
2023-09-13 01:47:22 -04:00
|
|
|
r.Use(middleware.ZapLogger())
|
2023-09-25 03:43:21 -04:00
|
|
|
|
|
|
|
tpl, err := template.ParseFS(staticFiles, "static/*")
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("Error parsing templates: %v", err)
|
|
|
|
}
|
|
|
|
r.SetHTMLTemplate(tpl)
|
|
|
|
|
|
|
|
r.GET(
|
|
|
|
"/static/*filepath", func(c *gin.Context) {
|
|
|
|
c.FileFromFS("static/"+c.Param("filepath"), http.FS(staticFiles))
|
|
|
|
},
|
|
|
|
)
|
2023-09-16 09:46:59 -04:00
|
|
|
r.GET(
|
|
|
|
"/", func(c *gin.Context) {
|
2024-04-23 02:47:53 -04:00
|
|
|
version := constant.Version
|
2023-09-20 21:08:02 -04:00
|
|
|
c.HTML(
|
|
|
|
200, "index.html", gin.H{
|
2023-09-25 03:43:21 -04:00
|
|
|
"Version": version,
|
2023-09-20 21:08:02 -04:00
|
|
|
},
|
|
|
|
)
|
2023-09-16 09:46:59 -04:00
|
|
|
},
|
|
|
|
)
|
2024-04-24 00:51:37 -04:00
|
|
|
r.GET("/clash", handler.SubmodHandler)
|
|
|
|
r.GET("/meta", handler.SubHandler)
|
|
|
|
r.GET("/s/:hash", handler.GetRawConfHandler)
|
|
|
|
r.POST("/short", handler.GenerateLinkHandler)
|
|
|
|
r.PUT("/short", handler.UpdateLinkHandler)
|
2024-05-09 00:58:33 -04:00
|
|
|
r.GET("/short", handler.GetRawConfUriHandler)
|
2023-09-12 06:40:24 -04:00
|
|
|
}
|