-
Notifications
You must be signed in to change notification settings - Fork 434
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
enhance: redirect to home if no route #87
- Loading branch information
Showing
1 changed file
with
106 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,123 +1,113 @@ | ||
package router | ||
|
||
import ( | ||
"bufio" | ||
"github.com/0xJacky/Nginx-UI/server/api" | ||
"github.com/gin-contrib/static" | ||
"github.com/gin-gonic/gin" | ||
"net/http" | ||
"strings" | ||
"github.com/0xJacky/Nginx-UI/server/api" | ||
"github.com/gin-contrib/static" | ||
"github.com/gin-gonic/gin" | ||
"net/http" | ||
) | ||
|
||
func InitRouter() *gin.Engine { | ||
r := gin.New() | ||
r.Use(gin.Logger()) | ||
|
||
r.Use(recovery()) | ||
|
||
r.Use(cacheJs()) | ||
|
||
r.Use(static.Serve("/", mustFS(""))) | ||
|
||
r.NoRoute(func(c *gin.Context) { | ||
accept := c.Request.Header.Get("Accept") | ||
if strings.Contains(accept, "text/html") { | ||
file, _ := mustFS("").Open("index.html") | ||
defer file.Close() | ||
stat, _ := file.Stat() | ||
c.DataFromReader(http.StatusOK, stat.Size(), "text/html", | ||
bufio.NewReader(file), nil) | ||
return | ||
} | ||
}) | ||
|
||
root := r.Group("/api") | ||
{ | ||
root.GET("install", api.InstallLockCheck) | ||
root.POST("install", api.InstallNginxUI) | ||
|
||
root.POST("/login", api.Login) | ||
root.DELETE("/logout", api.Logout) | ||
|
||
g := root.Group("/", authRequired()) | ||
{ | ||
g.GET("analytic", api.Analytic) | ||
g.GET("analytic/init", api.GetAnalyticInit) | ||
|
||
g.GET("users", api.GetUsers) | ||
g.GET("user/:id", api.GetUser) | ||
g.POST("user", api.AddUser) | ||
g.POST("user/:id", api.EditUser) | ||
g.DELETE("user/:id", api.DeleteUser) | ||
|
||
g.GET("domains", api.GetDomains) | ||
g.GET("domain/:name", api.GetDomain) | ||
|
||
// Modify site configuration directly | ||
g.POST("domain/:name", api.SaveDomain) | ||
|
||
// Transform NgxConf to nginx configuration | ||
g.POST("ngx/build_config", api.BuildNginxConfig) | ||
// Tokenized nginx configuration to NgxConf | ||
g.POST("ngx/tokenize_config", api.TokenizeNginxConfig) | ||
// Format nginx configuration code | ||
g.POST("ngx/format_code", api.FormatNginxConfig) | ||
// nginx reload | ||
g.POST("nginx/reload", api.ReloadNginx) | ||
// nginx restart | ||
g.POST("nginx/restart", api.RestartNginx) | ||
// nginx test | ||
g.POST("nginx/test", api.TestNginx) | ||
// nginx status | ||
g.GET("nginx/status", api.NginxStatus) | ||
|
||
g.POST("domain/:name/enable", api.EnableDomain) | ||
g.POST("domain/:name/disable", api.DisableDomain) | ||
g.DELETE("domain/:name", api.DeleteDomain) | ||
// duplicate site | ||
g.POST("domain/:name/duplicate", api.DuplicateSite) | ||
g.GET("domain/:name/cert", api.IssueCert) | ||
|
||
g.GET("configs", api.GetConfigs) | ||
g.GET("config/*name", api.GetConfig) | ||
g.POST("config", api.AddConfig) | ||
g.POST("config/*name", api.EditConfig) | ||
|
||
//g.GET("backups", api.GetFileBackupList) | ||
//g.GET("backup/:id", api.GetFileBackup) | ||
|
||
g.GET("template", api.GetTemplate) | ||
g.GET("template/configs", api.GetTemplateConfList) | ||
g.GET("template/blocks", api.GetTemplateBlockList) | ||
g.GET("template/block/:name", api.GetTemplateBlock) | ||
|
||
g.GET("certs", api.GetCertList) | ||
g.GET("cert/:id", api.GetCert) | ||
g.POST("cert", api.AddCert) | ||
g.POST("cert/:id", api.ModifyCert) | ||
g.DELETE("cert/:id", api.RemoveCert) | ||
// Add domain to auto-renew cert list | ||
g.POST("auto_cert/:name", api.AddDomainToAutoCert) | ||
// Delete domain from auto-renew cert list | ||
g.DELETE("auto_cert/:name", api.RemoveDomainFromAutoCert) | ||
|
||
// pty | ||
g.GET("pty", api.Pty) | ||
|
||
// Nginx log | ||
g.GET("nginx_log", api.NginxLog) | ||
g.POST("nginx_log", api.GetNginxLogPage) | ||
|
||
// Settings | ||
g.GET("settings", api.GetSettings) | ||
g.POST("settings", api.SaveSettings) | ||
|
||
// Upgrade | ||
g.GET("upgrade/release", api.GetRelease) | ||
g.GET("upgrade/current", api.GetCurrentVersion) | ||
g.GET("upgrade/perform", api.PerformCoreUpgrade) | ||
} | ||
} | ||
|
||
return r | ||
r := gin.New() | ||
r.Use(gin.Logger()) | ||
|
||
r.Use(recovery()) | ||
|
||
r.Use(cacheJs()) | ||
|
||
r.Use(static.Serve("/", mustFS(""))) | ||
|
||
r.NoRoute(func(c *gin.Context) { | ||
c.Redirect(http.StatusMovedPermanently, "/") | ||
}) | ||
|
||
root := r.Group("/api") | ||
{ | ||
root.GET("install", api.InstallLockCheck) | ||
root.POST("install", api.InstallNginxUI) | ||
|
||
root.POST("/login", api.Login) | ||
root.DELETE("/logout", api.Logout) | ||
|
||
g := root.Group("/", authRequired()) | ||
{ | ||
g.GET("analytic", api.Analytic) | ||
g.GET("analytic/init", api.GetAnalyticInit) | ||
|
||
g.GET("users", api.GetUsers) | ||
g.GET("user/:id", api.GetUser) | ||
g.POST("user", api.AddUser) | ||
g.POST("user/:id", api.EditUser) | ||
g.DELETE("user/:id", api.DeleteUser) | ||
|
||
g.GET("domains", api.GetDomains) | ||
g.GET("domain/:name", api.GetDomain) | ||
|
||
// Modify site configuration directly | ||
g.POST("domain/:name", api.SaveDomain) | ||
|
||
// Transform NgxConf to nginx configuration | ||
g.POST("ngx/build_config", api.BuildNginxConfig) | ||
// Tokenized nginx configuration to NgxConf | ||
g.POST("ngx/tokenize_config", api.TokenizeNginxConfig) | ||
// Format nginx configuration code | ||
g.POST("ngx/format_code", api.FormatNginxConfig) | ||
// nginx reload | ||
g.POST("nginx/reload", api.ReloadNginx) | ||
// nginx restart | ||
g.POST("nginx/restart", api.RestartNginx) | ||
// nginx test | ||
g.POST("nginx/test", api.TestNginx) | ||
// nginx status | ||
g.GET("nginx/status", api.NginxStatus) | ||
|
||
g.POST("domain/:name/enable", api.EnableDomain) | ||
g.POST("domain/:name/disable", api.DisableDomain) | ||
g.DELETE("domain/:name", api.DeleteDomain) | ||
// duplicate site | ||
g.POST("domain/:name/duplicate", api.DuplicateSite) | ||
g.GET("domain/:name/cert", api.IssueCert) | ||
|
||
g.GET("configs", api.GetConfigs) | ||
g.GET("config/*name", api.GetConfig) | ||
g.POST("config", api.AddConfig) | ||
g.POST("config/*name", api.EditConfig) | ||
|
||
//g.GET("backups", api.GetFileBackupList) | ||
//g.GET("backup/:id", api.GetFileBackup) | ||
|
||
g.GET("template", api.GetTemplate) | ||
g.GET("template/configs", api.GetTemplateConfList) | ||
g.GET("template/blocks", api.GetTemplateBlockList) | ||
g.GET("template/block/:name", api.GetTemplateBlock) | ||
|
||
g.GET("certs", api.GetCertList) | ||
g.GET("cert/:id", api.GetCert) | ||
g.POST("cert", api.AddCert) | ||
g.POST("cert/:id", api.ModifyCert) | ||
g.DELETE("cert/:id", api.RemoveCert) | ||
// Add domain to auto-renew cert list | ||
g.POST("auto_cert/:name", api.AddDomainToAutoCert) | ||
// Delete domain from auto-renew cert list | ||
g.DELETE("auto_cert/:name", api.RemoveDomainFromAutoCert) | ||
|
||
// pty | ||
g.GET("pty", api.Pty) | ||
|
||
// Nginx log | ||
g.GET("nginx_log", api.NginxLog) | ||
g.POST("nginx_log", api.GetNginxLogPage) | ||
|
||
// Settings | ||
g.GET("settings", api.GetSettings) | ||
g.POST("settings", api.SaveSettings) | ||
|
||
// Upgrade | ||
g.GET("upgrade/release", api.GetRelease) | ||
g.GET("upgrade/current", api.GetCurrentVersion) | ||
g.GET("upgrade/perform", api.PerformCoreUpgrade) | ||
} | ||
} | ||
|
||
return r | ||
} |