aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/http/simple/ut/https_server/main.go
blob: 4282810675e92962a4a6b2a64ebb60e29e901e62 (plain) (blame)
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
package main

import (
	"fmt"
	"log"
	"net/http"
	"os"

	"github.com/spf13/cobra"
	"github.com/spf13/pflag"
)

type Opts struct {
	Port     uint16
	KeyFile  string
	CertFile string
}

func handler(writer http.ResponseWriter, request *http.Request) {
	res := "pong.my"

	writer.Header().Set("Content-Type", "text/plain")
	writer.WriteHeader(http.StatusOK)

	_, _ = writer.Write([]byte(res))
}

func runServer(opts *Opts) error {
	mainMux := http.NewServeMux()
	mainMux.Handle("/ping", http.HandlerFunc(handler))

	server := &http.Server{
		Addr:     fmt.Sprintf("localhost:%d", opts.Port),
		Handler:  mainMux,
		ErrorLog: log.New(os.Stdout, "", log.LstdFlags),
	}

	return server.ListenAndServeTLS(opts.CertFile, opts.KeyFile)
}

func markFlagRequired(flags *pflag.FlagSet, names ...string) {
	for _, n := range names {
		name := n
		if err := cobra.MarkFlagRequired(flags, name); err != nil {
			panic(err)
		}
	}
}

func main() {
	opts := Opts{}

	cmd := cobra.Command{
		RunE: func(cmd *cobra.Command, args []string) error {
			return runServer(&opts)
		},
	}

	flags := cmd.Flags()
	flags.Uint16Var(&opts.Port, "port", 0, "")
	flags.StringVar(&opts.KeyFile, "keyfile", "", "path to key file")
	flags.StringVar(&opts.CertFile, "certfile", "", "path to cert file")

	markFlagRequired(flags, "port", "keyfile", "certfile")

	if err := cmd.Execute(); err != nil {
		_, _ = fmt.Fprintf(os.Stderr, "Exit with err: %s", err)
		os.Exit(1)
	}
}