-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhttp.go
49 lines (39 loc) · 1.05 KB
/
http.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
package main
import (
"github.com/gofiber/fiber/v2"
"github.com/gofiber/fiber/v2/middleware/basicauth"
)
// HTTPServer return http server
func HTTPServer(
baseURL string,
username string,
password string,
) (application *fiber.App, router fiber.Router) {
app := fiber.New(fiber.Config{
DisableStartupMessage: true,
Prefork: true,
UnescapePath: true,
CaseSensitive: true,
StrictRouting: true,
BodyLimit: 1 * 1024,
ServerHeader: "aasaam-whois-json",
ErrorHandler: func(ctx *fiber.Ctx, err error) error {
code := fiber.StatusInternalServerError
if e, ok := err.(*fiber.Error); ok {
code = e.Code
}
ctx.Set(fiber.HeaderContentType, fiber.MIMETextPlainCharsetUTF8)
ctx.Status(code).SendString(err.Error())
return nil
},
})
app.Use(basicauth.New(basicauth.Config{
Users: map[string]string{
username: password,
},
}))
api := app.Group(baseURL)
api.Get("/whois/:domain", HTTPDomainWhois)
api.Get("/validate/:domain", HTTPDomainValidation)
return app, api
}