-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.go
88 lines (75 loc) · 2.04 KB
/
server.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
// This file is part of httpsh.
//
// httpsh is free software: you can redistribute it and/or modify it under the
// terms of the GNU General Public License as published by the Free Software
// Foundation, either version 3 of the License, or (at your option) any later
// version.
//
// httpsh is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
// A PARTICULAR PURPOSE. See the GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along with
// httpsh. If not, see <https://www.gnu.org/licenses/>.
package httpsh
import (
"context"
"crypto/tls"
"errors"
"fmt"
"log/slog"
"net"
"net/http"
"os"
"os/signal"
"syscall"
"time"
)
type Server struct {
Listener *net.TCPListener
Handler *Handler
TLS *tls.Config
ReadTimeout int
WriteTimeout int
IdleTimeout int
Key string
Certificate string
Log *slog.Logger
}
func (s *Server) Run() error {
server := &http.Server{
Handler: s.Handler,
TLSConfig: s.TLS,
ReadTimeout: time.Duration(s.ReadTimeout) * time.Second,
ReadHeaderTimeout: 0,
WriteTimeout: time.Duration(s.WriteTimeout) * time.Second,
IdleTimeout: time.Duration(s.IdleTimeout) * time.Second,
ErrorLog: slog.NewLogLogger(s.Log.Handler(), slog.LevelError),
}
go func() {
err := server.ServeTLS(s.Listener, s.Certificate, s.Key)
if err != nil && !errors.Is(err, http.ErrServerClosed) {
s.Log.Error(err.Error())
}
}()
s.Log.Info("server is running")
s.wait()
return s.stop(server)
}
func (s *Server) wait() {
wait := make(chan os.Signal, 1)
signal.Notify(wait, syscall.SIGINT)
s.Log.Info("server is waiting")
<-wait
fmt.Printf("\r")
}
func (s *Server) stop(server *http.Server) error {
stop, cancel := context.WithTimeout(context.Background(), time.Minute)
defer cancel()
err := server.Shutdown(stop)
if err != nil {
return err
}
s.Log.Info("server is stopped")
return nil
}