mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-10 18:05:48 +02:00
106 lines
2.2 KiB
Go
106 lines
2.2 KiB
Go
package system
|
|
|
|
import (
|
|
"net/http"
|
|
"time"
|
|
|
|
"github.com/0xJacky/Nginx-UI/internal/system"
|
|
"github.com/0xJacky/Nginx-UI/model"
|
|
"github.com/0xJacky/Nginx-UI/query"
|
|
"github.com/0xJacky/Nginx-UI/settings"
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/google/uuid"
|
|
"github.com/uozi-tech/cosy"
|
|
cSettings "github.com/uozi-tech/cosy/settings"
|
|
"golang.org/x/crypto/bcrypt"
|
|
)
|
|
|
|
// System startup time
|
|
var startupTime time.Time
|
|
|
|
func init() {
|
|
// Record system startup time
|
|
startupTime = time.Now()
|
|
}
|
|
|
|
func installLockStatus() bool {
|
|
return settings.NodeSettings.SkipInstallation || cSettings.AppSettings.JwtSecret != ""
|
|
}
|
|
|
|
// Check if installation time limit (10 minutes) is exceeded
|
|
func isInstallTimeoutExceeded() bool {
|
|
return time.Since(startupTime) > 10*time.Minute
|
|
}
|
|
|
|
func InstallLockCheck(c *gin.Context) {
|
|
locked := installLockStatus()
|
|
timeout := false
|
|
|
|
if !locked {
|
|
timeout = isInstallTimeoutExceeded()
|
|
}
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"lock": locked,
|
|
"timeout": timeout,
|
|
})
|
|
}
|
|
|
|
type InstallJson struct {
|
|
Email string `json:"email" binding:"required,email"`
|
|
Username string `json:"username" binding:"required,max=255"`
|
|
Password string `json:"password" binding:"required,max=20"`
|
|
}
|
|
|
|
func InstallNginxUI(c *gin.Context) {
|
|
// Visit this api after installed is forbidden
|
|
if installLockStatus() {
|
|
c.JSON(http.StatusForbidden, gin.H{
|
|
"error": "installed",
|
|
})
|
|
return
|
|
}
|
|
|
|
// Check if installation time limit (10 minutes) is exceeded
|
|
if isInstallTimeoutExceeded() {
|
|
cosy.ErrHandler(c, system.ErrInstallTimeout)
|
|
return
|
|
}
|
|
|
|
var json InstallJson
|
|
ok := cosy.BindAndValid(c, &json)
|
|
if !ok {
|
|
return
|
|
}
|
|
|
|
cSettings.AppSettings.JwtSecret = uuid.New().String()
|
|
settings.NodeSettings.Secret = uuid.New().String()
|
|
settings.CertSettings.Email = json.Email
|
|
|
|
err := settings.Save()
|
|
if err != nil {
|
|
cosy.ErrHandler(c, err)
|
|
return
|
|
}
|
|
|
|
pwd, err := bcrypt.GenerateFromPassword([]byte(json.Password), bcrypt.DefaultCost)
|
|
if err != nil {
|
|
cosy.ErrHandler(c, err)
|
|
return
|
|
}
|
|
|
|
u := query.User
|
|
err = u.Create(&model.User{
|
|
Name: json.Username,
|
|
Password: string(pwd),
|
|
})
|
|
|
|
if err != nil {
|
|
cosy.ErrHandler(c, err)
|
|
return
|
|
}
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"message": "ok",
|
|
})
|
|
}
|