12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- package api
- import (
- "github.com/0xJacky/Nginx-UI/server/pkg/nginx"
- "github.com/gin-gonic/gin"
- "net/http"
- )
- func BuildNginxConfig(c *gin.Context) {
- var ngxConf nginx.NgxConfig
- if !BindAndValid(c, &ngxConf) {
- return
- }
- c.Set("maybe_error", "nginx_config_syntax_error")
- c.JSON(http.StatusOK, gin.H{
- "content": ngxConf.BuildConfig(),
- })
- }
- func TokenizeNginxConfig(c *gin.Context) {
- var json struct {
- Content string `json:"content" binding:"required"`
- }
- if !BindAndValid(c, &json) {
- return
- }
- c.Set("maybe_error", "nginx_config_syntax_error")
- ngxConfig := nginx.ParseNgxConfigByContent(json.Content)
- c.JSON(http.StatusOK, ngxConfig)
- }
- func FormatNginxConfig(c *gin.Context) {
- var json struct {
- Content string `json:"content" binding:"required"`
- }
- if !BindAndValid(c, &json) {
- return
- }
- c.Set("maybe_error", "nginx_config_syntax_error")
- c.JSON(http.StatusOK, gin.H{
- "content": nginx.FmtCode(json.Content),
- })
- }
|