mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/1Panel-dev/1Panel.git
synced 2026-09-21 00:24:12 +08:00
* feat: add node selection reports * Merge dev-v2 and resolve PR conflicts --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
140 lines
3.8 KiB
Go
140 lines
3.8 KiB
Go
package service
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"net/http"
|
|
"os"
|
|
|
|
"github.com/1Panel-dev/1Panel/core/buserr"
|
|
"github.com/1Panel-dev/1Panel/core/constant"
|
|
"github.com/1Panel-dev/1Panel/core/utils/cmd"
|
|
"github.com/1Panel-dev/1Panel/core/utils/common"
|
|
geo2 "github.com/1Panel-dev/1Panel/core/utils/geo"
|
|
"github.com/1Panel-dev/1Panel/core/utils/req_helper"
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/1Panel-dev/1Panel/core/app/dto"
|
|
"github.com/1Panel-dev/1Panel/core/app/model"
|
|
"github.com/1Panel-dev/1Panel/core/app/repo"
|
|
"github.com/1Panel-dev/1Panel/core/global"
|
|
"github.com/jinzhu/copier"
|
|
)
|
|
|
|
type LogService struct{}
|
|
|
|
const logs = "https://resource.fit2cloud.com/installation-log.sh"
|
|
|
|
type ILogService interface {
|
|
CreateLoginLog(operation model.LoginLog) error
|
|
PageLoginLog(ctx *gin.Context, search dto.SearchLgLogWithPage) (int64, interface{}, error)
|
|
|
|
CreateOperationLog(operation *model.OperationLog) error
|
|
PageOperationLog(search dto.SearchOpLogWithPage) (int64, interface{}, error)
|
|
|
|
CleanLogs(logtype string) error
|
|
}
|
|
|
|
func NewILogService() ILogService {
|
|
return &LogService{}
|
|
}
|
|
|
|
func (u *LogService) CreateLoginLog(operation model.LoginLog) error {
|
|
return logRepo.CreateLoginLog(&operation)
|
|
}
|
|
|
|
func (u *LogService) PageLoginLog(ctx *gin.Context, req dto.SearchLgLogWithPage) (int64, interface{}, error) {
|
|
options := []global.DBOption{
|
|
repo.WithOrderDesc("created_at"),
|
|
}
|
|
if len(req.Info) != 0 {
|
|
options = append(options, logRepo.WithByInfo(req.Info))
|
|
}
|
|
if len(req.Status) != 0 {
|
|
options = append(options, repo.WithByStatus(req.Status))
|
|
}
|
|
if !req.StartTime.IsZero() && !req.EndTime.IsZero() {
|
|
options = append(options, repo.WithByCreatedAt(req.StartTime, req.EndTime))
|
|
}
|
|
total, ops, err := logRepo.PageLoginLog(
|
|
req.Page,
|
|
req.PageSize,
|
|
options...,
|
|
)
|
|
var dtoOps []dto.LoginLog
|
|
geoDB, _ := geo2.NewGeo()
|
|
for _, op := range ops {
|
|
var item dto.LoginLog
|
|
if err := copier.Copy(&item, &op); err != nil {
|
|
return 0, nil, buserr.WithErr("ErrTransform", err)
|
|
}
|
|
if geoDB != nil {
|
|
item.Address, _ = geo2.GetIPLocation(geoDB, item.IP, common.GetLang(ctx))
|
|
}
|
|
dtoOps = append(dtoOps, item)
|
|
}
|
|
return total, dtoOps, err
|
|
}
|
|
|
|
func (u *LogService) CreateOperationLog(operation *model.OperationLog) error {
|
|
return logRepo.CreateOperationLog(operation)
|
|
}
|
|
|
|
func (u *LogService) PageOperationLog(req dto.SearchOpLogWithPage) (int64, interface{}, error) {
|
|
options := []global.DBOption{
|
|
repo.WithOrderDesc("created_at"),
|
|
logRepo.WithByLikeOperation(req.Operation),
|
|
}
|
|
if len(req.Source) != 0 {
|
|
options = append(options, logRepo.WithBySource(req.Source))
|
|
}
|
|
if len(req.Status) != 0 {
|
|
options = append(options, repo.WithByStatus(req.Status))
|
|
}
|
|
if len(req.Node) != 0 {
|
|
options = append(options, repo.WithByNode(req.Node))
|
|
}
|
|
|
|
total, ops, err := logRepo.PageOperationLog(
|
|
req.Page,
|
|
req.PageSize,
|
|
options...,
|
|
)
|
|
var dtoOps []dto.OperationLog
|
|
for _, op := range ops {
|
|
var item dto.OperationLog
|
|
if err := copier.Copy(&item, &op); err != nil {
|
|
return 0, nil, buserr.WithErr("ErrTransform", err)
|
|
}
|
|
dtoOps = append(dtoOps, item)
|
|
}
|
|
return total, dtoOps, err
|
|
}
|
|
|
|
func (u *LogService) CleanLogs(logtype string) error {
|
|
if logtype == "operation" {
|
|
return logRepo.CleanOperation()
|
|
}
|
|
return logRepo.CleanLogin()
|
|
}
|
|
|
|
func writeLogs(version string) {
|
|
_ = runRemoteShellScript(logs, "1p", "upgrade", version)
|
|
}
|
|
|
|
func runRemoteShellScript(url string, args ...string) error {
|
|
statusCode, script, err := req_helper.HandleRequestWithProxy(url, http.MethodGet, constant.TimeOut20s)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if statusCode < http.StatusOK || statusCode >= http.StatusMultipleChoices {
|
|
return fmt.Errorf("download script failed, status code: %d", statusCode)
|
|
}
|
|
_, err = cmd.NewCommandMgr().RunPipeToFile(os.DevNull, cmd.PipeCommand{
|
|
Name: "sh",
|
|
Args: append([]string{"-s"}, args...),
|
|
Stdin: bytes.NewReader(script),
|
|
})
|
|
return err
|
|
}
|