| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- package http_server
- import (
- "embed"
- "encoding/json"
- "fmt"
- olog "log"
- "net/http"
- "pmail/config"
- "pmail/controllers"
- "pmail/dto/response"
- "pmail/i18n"
- "pmail/models"
- "pmail/session"
- "pmail/utils/context"
- "pmail/utils/id"
- "time"
- log "github.com/sirupsen/logrus"
- "github.com/spf13/cast"
- )
- //go:embed dist/*
- var local embed.FS
- var httpsServer *http.Server
- type nullWrite struct {
- }
- func (w *nullWrite) Write(p []byte) (int, error) {
- return len(p), nil
- }
- func HttpsStart() {
- mux := http.NewServeMux()
- router(mux)
- // go http server会打一堆没用的日志,写一个空的日志处理器,屏蔽掉日志输出
- nullLog := olog.New(&nullWrite{}, "", olog.Ldate)
- HttpsPort := 443
- if config.Instance.HttpsPort > 0 {
- HttpsPort = config.Instance.HttpsPort
- }
- if config.Instance.HttpsEnabled != 2 {
- log.Infof("Https Server Start On Port :%d", HttpsPort)
- httpsServer = &http.Server{
- Addr: fmt.Sprintf(":%d", HttpsPort),
- Handler: session.Instance.LoadAndSave(mux),
- ReadTimeout: time.Second * 90,
- WriteTimeout: time.Second * 90,
- ErrorLog: nullLog,
- }
- err := httpsServer.ListenAndServeTLS("config/ssl/public.crt", "config/ssl/private.key")
- if err != nil {
- panic(err)
- }
- }
- }
- func HttpsStop() {
- if httpsServer != nil {
- httpsServer.Close()
- }
- }
- // 注入context
- func contextIterceptor(h controllers.HandlerFunc) http.HandlerFunc {
- return func(w http.ResponseWriter, r *http.Request) {
- if w.Header().Get("Content-Type") == "" {
- w.Header().Set("Content-Type", "application/json")
- }
- ctx := &context.Context{}
- ctx.Context = r.Context()
- ctx.SetValue(context.LogID, id.GenLogID())
- lang := r.Header.Get("Lang")
- if lang == "" {
- lang = "en"
- }
- ctx.Lang = lang
- if config.IsInit {
- user := cast.ToString(session.Instance.Get(ctx, "user"))
- var userInfo *models.User
- if user != "" {
- _ = json.Unmarshal([]byte(user), &userInfo)
- }
- if userInfo != nil && userInfo.ID > 0 {
- ctx.UserID = userInfo.ID
- ctx.UserName = userInfo.Name
- ctx.UserAccount = userInfo.Account
- ctx.IsAdmin = userInfo.IsAdmin == 1
- }
- if ctx.UserID == 0 {
- if r.URL.Path != "/api/ping" && r.URL.Path != "/api/login" {
- response.NewErrorResponse(response.NeedLogin, i18n.GetText(ctx.Lang, "login_exp"), "").FPrint(w)
- return
- }
- }
- } else if r.URL.Path != "/api/setup" {
- response.NewErrorResponse(response.NeedSetup, "", "").FPrint(w)
- return
- }
- h(ctx, w, r)
- }
- }
|