-
Notifications
You must be signed in to change notification settings - Fork 1
/
server_options.go
157 lines (133 loc) · 3.61 KB
/
server_options.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
package pbg
import (
"log"
"strings"
"github.com/valyala/fasthttp"
)
type (
// Opzione funzionale legata a oggetti di tipo *server (non esportato)
serverOption func(*server) error
// Opzione funzionale per modificare le proprietà degli oggetti Server
// durante la costruzione nell'apposito Factory method
ServerOption func(Server) error
)
// Adatta opzioni funzionali del tipo server non esportato ad opzioni funzionali
// dell'interfaccia Server esportata
func adaptServerOption(option serverOption) ServerOption {
return func(srv Server) error {
s, ok := srv.(*server)
if !ok {
return ErrInvalidServerType
}
return option(s)
}
}
// Valida il valore della porta HTTP passata come argomento
// Torna true nel caso in cui il valore di port denota una porta HTTP valida,
// false altrimenti
func validPortInput(port int) bool {
return port >= 1 && port <= 65536
}
// Valida il valore dell'API endpoint
// Ricordiamo che un API endpoint deve essere lungo almeno 2 caratteri
// e deve iniziare con "/"
//
// es.
// "/a" -> OK
// "/API" -> OK
// "" -> NON OK
// "/" -> NON OK
//
func validAPIEndpoint(endpoint string) bool {
return len(endpoint) >= 2 && strings.HasPrefix(endpoint, "/")
}
// Specifica la porta HTTP che il Server da costruire deve utilizzare
func WithHTTPPort(port int) ServerOption {
return adaptServerOption(func(srv *server) error {
if !validPortInput(port) {
return ErrInvalidHTTPPort
}
srv.port = port
return nil
})
}
// Specifica l'API Endpoint che il Server da costruire deve utilizzare
func WithAPIEndpont(endpoint string) ServerOption {
return adaptServerOption(func(srv *server) error {
if !validAPIEndpoint(endpoint) {
return ErrInvalidAPIEndpoint
}
srv.apiEndpoint = endpoint
return nil
})
}
// Specifica l'APIResponser che il Server da costruire deve utilizzare
func WithAPIResponser(responser APIResponser) ServerOption {
return adaptServerOption(func(srv *server) error {
if responser == nil {
return ErrInvalidAPIResponser
}
srv.apiResponser = responser
return nil
})
}
// Specifica che il Server da costruire deve usare il Logger passato
// come argomento
func WithLogger(logger *log.Logger) ServerOption {
return adaptServerOption(func(srv *server) error {
if logger == nil {
return ErrInvalidLogger
}
srv.logger = logger
return nil
})
}
// Specifica il MoveDBComponent che il Server deve usare
func WithMoveDBComponent(mdb MoveDBComponent) ServerOption {
return adaptServerOption(func(srv *server) error {
if mdb == nil {
return ErrInvalidMoveDBComponent
}
srv.moveDB = mdb
return nil
})
}
// Specifica il MoveDBComponent che il Server deve usare
func WithPokèmonDBComponent(pdb PokèmonDBComponent) ServerOption {
return adaptServerOption(func(srv *server) error {
if pdb == nil {
return ErrInvalidMoveDBComponent
}
srv.pokèmonDB = pdb
return nil
})
}
// Specifica il MoveDBComponent che il Server deve usare
func WithTrainerDBComponent(tdb TrainerDBComponent) ServerOption {
return adaptServerOption(func(srv *server) error {
if tdb == nil {
return ErrInvalidMoveDBComponent
}
srv.trainerDB = tdb
return nil
})
}
// Specifica il SessionComponent che il Server deve usare
func WithSessionDBComponent(sc SessionComponent) ServerOption {
return adaptServerOption(func(srv *server) error {
if sc == nil {
return ErrInvalidSessionComponent
}
srv.sessionDB = sc
return nil
})
}
func WithFastHTTPServer(fsrv *fasthttp.Server) ServerOption {
return adaptServerOption(func(srv *server) error {
if fsrv == nil {
return ErrInvalidFastHTTPServer
}
srv.Server = fsrv
return nil
})
}