2020-07-29 21:11:28 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2020-08-05 15:58:24 +00:00
|
|
|
"context"
|
2020-07-29 21:11:28 +00:00
|
|
|
"crypto/rand"
|
|
|
|
"encoding/base64"
|
2020-07-31 15:09:30 +00:00
|
|
|
"encoding/json"
|
2020-08-01 20:20:02 +00:00
|
|
|
"flag"
|
2020-07-29 21:11:28 +00:00
|
|
|
"fmt"
|
2020-08-01 20:20:02 +00:00
|
|
|
"io"
|
2020-07-31 15:09:30 +00:00
|
|
|
"io/ioutil"
|
2020-07-31 21:07:09 +00:00
|
|
|
"log"
|
2020-08-05 15:58:24 +00:00
|
|
|
"net/http"
|
2020-07-29 21:11:28 +00:00
|
|
|
"os"
|
2020-08-05 15:58:24 +00:00
|
|
|
"os/signal"
|
2020-07-29 21:11:28 +00:00
|
|
|
"path/filepath"
|
2020-08-01 14:22:30 +00:00
|
|
|
"time"
|
2020-08-16 12:36:54 +00:00
|
|
|
|
|
|
|
"github.com/gin-contrib/pprof"
|
|
|
|
"github.com/gin-contrib/static"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
"github.com/lithammer/shortuuid/v3"
|
|
|
|
"gopkg.in/ini.v1"
|
2020-07-29 21:11:28 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Username is JWT!
|
|
|
|
type User struct {
|
2020-07-31 21:07:09 +00:00
|
|
|
UserID string `json:"id"`
|
|
|
|
Username string `json:"username"`
|
|
|
|
Password string `json:"password"`
|
2020-07-29 21:11:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type appContext struct {
|
2020-08-15 21:07:48 +00:00
|
|
|
// defaults *Config
|
2020-07-31 21:07:09 +00:00
|
|
|
config *ini.File
|
|
|
|
config_path string
|
|
|
|
configBase_path string
|
|
|
|
configBase map[string]interface{}
|
|
|
|
data_path string
|
|
|
|
local_path string
|
|
|
|
cssFile string
|
|
|
|
bsVersion int
|
|
|
|
jellyfinLogin bool
|
|
|
|
users []User
|
|
|
|
jf Jellyfin
|
|
|
|
authJf Jellyfin
|
|
|
|
datePattern string
|
|
|
|
timePattern string
|
|
|
|
storage Storage
|
|
|
|
validator Validator
|
|
|
|
email Emailer
|
|
|
|
info, debug, err *log.Logger
|
2020-08-01 20:20:02 +00:00
|
|
|
host string
|
|
|
|
port int
|
2020-08-01 23:05:35 +00:00
|
|
|
version string
|
2020-08-05 15:58:24 +00:00
|
|
|
quit chan os.Signal
|
2020-07-29 21:11:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func GenerateSecret(length int) (string, error) {
|
|
|
|
bytes := make([]byte, length)
|
|
|
|
_, err := rand.Read(bytes)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return base64.URLEncoding.EncodeToString(bytes), err
|
|
|
|
}
|
|
|
|
|
2020-08-01 13:08:55 +00:00
|
|
|
func setGinLogger(router *gin.Engine, debugMode bool) {
|
|
|
|
if debugMode {
|
|
|
|
router.Use(gin.LoggerWithFormatter(func(param gin.LogFormatterParams) string {
|
2020-08-01 20:20:02 +00:00
|
|
|
return fmt.Sprintf("[GIN/DEBUG] %s: %s(%s) => %d in %s; %s\n",
|
2020-08-01 13:08:55 +00:00
|
|
|
param.TimeStamp.Format("15:04:05"),
|
|
|
|
param.Method,
|
|
|
|
param.Path,
|
|
|
|
param.StatusCode,
|
|
|
|
param.Latency,
|
2020-08-01 20:20:02 +00:00
|
|
|
func() string {
|
|
|
|
if param.ErrorMessage != "" {
|
|
|
|
return "Error: " + param.ErrorMessage
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}(),
|
2020-08-01 13:08:55 +00:00
|
|
|
)
|
|
|
|
}))
|
|
|
|
gin.SetMode(gin.DebugMode)
|
|
|
|
} else {
|
|
|
|
router.Use(gin.LoggerWithFormatter(func(param gin.LogFormatterParams) string {
|
|
|
|
return fmt.Sprintf("[GIN] %s(%s) => %d\n",
|
|
|
|
param.Method,
|
|
|
|
param.Path,
|
|
|
|
param.StatusCode,
|
|
|
|
)
|
|
|
|
}))
|
|
|
|
gin.SetMode(gin.ReleaseMode)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-29 21:11:28 +00:00
|
|
|
func main() {
|
2020-08-16 12:36:54 +00:00
|
|
|
app := new(appContext)
|
2020-08-01 20:20:02 +00:00
|
|
|
userConfigDir, _ := os.UserConfigDir()
|
2020-08-16 12:36:54 +00:00
|
|
|
app.data_path = filepath.Join(userConfigDir, "jfa-go")
|
|
|
|
app.config_path = filepath.Join(app.data_path, "config.ini")
|
2020-08-02 01:11:50 +00:00
|
|
|
executable, _ := os.Executable()
|
2020-08-16 12:36:54 +00:00
|
|
|
app.local_path = filepath.Join(filepath.Dir(executable), "data")
|
2020-08-01 20:20:02 +00:00
|
|
|
|
2020-08-16 12:36:54 +00:00
|
|
|
app.info = log.New(os.Stdout, "[INFO] ", log.Ltime)
|
|
|
|
app.err = log.New(os.Stdout, "[ERROR] ", log.Ltime|log.Lshortfile)
|
2020-08-01 20:20:02 +00:00
|
|
|
|
2020-08-16 12:36:54 +00:00
|
|
|
dataPath := flag.String("data", app.data_path, "alternate path to data directory.")
|
|
|
|
configPath := flag.String("config", app.config_path, "alternate path to config file.")
|
2020-08-01 20:20:02 +00:00
|
|
|
host := flag.String("host", "", "alternate address to host web ui on.")
|
|
|
|
port := flag.Int("port", 0, "alternate port to host web ui on.")
|
|
|
|
|
|
|
|
flag.Parse()
|
2020-08-16 12:36:54 +00:00
|
|
|
if app.config_path == *configPath && app.data_path != *dataPath {
|
2020-08-16 13:26:07 +00:00
|
|
|
app.data_path = *dataPath
|
|
|
|
} else if app.config_path != *configPath && app.data_path == *dataPath {
|
|
|
|
app.config_path = *configPath
|
2020-08-01 20:20:02 +00:00
|
|
|
} else {
|
2020-08-16 12:36:54 +00:00
|
|
|
app.config_path = *configPath
|
|
|
|
app.data_path = *dataPath
|
2020-08-01 20:20:02 +00:00
|
|
|
}
|
|
|
|
|
2020-08-01 23:05:35 +00:00
|
|
|
// Env variables are necessary because syscall.Exec for self-restarts doesn't doesn't work with arguments for some reason.
|
|
|
|
|
|
|
|
if v := os.Getenv("JFA_CONFIGPATH"); v != "" {
|
2020-08-16 12:36:54 +00:00
|
|
|
app.config_path = v
|
2020-08-01 23:05:35 +00:00
|
|
|
}
|
|
|
|
if v := os.Getenv("JFA_DATAPATH"); v != "" {
|
2020-08-16 12:36:54 +00:00
|
|
|
app.data_path = v
|
2020-08-01 23:05:35 +00:00
|
|
|
}
|
|
|
|
|
2020-08-16 12:36:54 +00:00
|
|
|
os.Setenv("JFA_CONFIGPATH", app.config_path)
|
|
|
|
os.Setenv("JFA_DATAPATH", app.data_path)
|
2020-08-01 23:05:35 +00:00
|
|
|
|
|
|
|
var firstRun bool
|
2020-08-16 12:36:54 +00:00
|
|
|
if _, err := os.Stat(app.data_path); os.IsNotExist(err) {
|
|
|
|
os.Mkdir(app.data_path, 0700)
|
2020-08-01 20:20:02 +00:00
|
|
|
}
|
2020-08-16 12:36:54 +00:00
|
|
|
if _, err := os.Stat(app.config_path); os.IsNotExist(err) {
|
2020-08-01 23:05:35 +00:00
|
|
|
firstRun = true
|
2020-08-16 12:36:54 +00:00
|
|
|
dConfigPath := filepath.Join(app.local_path, "config-default.ini")
|
2020-08-01 20:20:02 +00:00
|
|
|
var dConfig *os.File
|
|
|
|
dConfig, err = os.Open(dConfigPath)
|
|
|
|
if err != nil {
|
2020-08-16 12:36:54 +00:00
|
|
|
app.err.Fatalf("Couldn't find default config file \"%s\"", dConfigPath)
|
2020-08-01 20:20:02 +00:00
|
|
|
}
|
|
|
|
defer dConfig.Close()
|
|
|
|
var nConfig *os.File
|
2020-08-16 12:36:54 +00:00
|
|
|
nConfig, err := os.Create(app.config_path)
|
2020-08-01 20:20:02 +00:00
|
|
|
if err != nil {
|
2020-08-16 12:36:54 +00:00
|
|
|
app.err.Fatalf("Couldn't open config file for writing: \"%s\"", dConfigPath)
|
2020-08-01 20:20:02 +00:00
|
|
|
}
|
|
|
|
defer nConfig.Close()
|
|
|
|
_, err = io.Copy(nConfig, dConfig)
|
|
|
|
if err != nil {
|
2020-08-16 12:36:54 +00:00
|
|
|
app.err.Fatalf("Couldn't copy default config. To do this manually, copy\n%s\nto\n%s", dConfigPath, app.config_path)
|
2020-08-01 20:20:02 +00:00
|
|
|
}
|
2020-08-16 12:36:54 +00:00
|
|
|
app.info.Printf("Copied default configuration to \"%s\"", app.config_path)
|
2020-08-01 20:20:02 +00:00
|
|
|
}
|
2020-08-01 23:05:35 +00:00
|
|
|
var debugMode bool
|
|
|
|
var address string
|
2020-08-16 12:36:54 +00:00
|
|
|
if app.loadConfig() != nil {
|
|
|
|
app.err.Fatalf("Failed to load config file \"%s\"", app.config_path)
|
2020-07-31 21:07:09 +00:00
|
|
|
}
|
2020-08-16 12:36:54 +00:00
|
|
|
app.version = app.config.Section("jellyfin").Key("version").String()
|
2020-07-31 21:07:09 +00:00
|
|
|
|
2020-08-16 12:36:54 +00:00
|
|
|
debugMode = app.config.Section("ui").Key("debug").MustBool(true)
|
2020-08-01 13:08:55 +00:00
|
|
|
if debugMode {
|
2020-08-16 12:36:54 +00:00
|
|
|
app.debug = log.New(os.Stdout, "[DEBUG] ", log.Ltime|log.Lshortfile)
|
2020-07-31 21:07:09 +00:00
|
|
|
} else {
|
2020-08-16 12:36:54 +00:00
|
|
|
app.debug = log.New(ioutil.Discard, "", 0)
|
2020-07-31 21:07:09 +00:00
|
|
|
}
|
|
|
|
|
2020-08-01 23:05:35 +00:00
|
|
|
if !firstRun {
|
2020-08-16 12:36:54 +00:00
|
|
|
app.host = app.config.Section("ui").Key("host").String()
|
|
|
|
app.port = app.config.Section("ui").Key("port").MustInt(8056)
|
2020-07-31 21:07:09 +00:00
|
|
|
|
2020-08-16 12:36:54 +00:00
|
|
|
if *host != app.host && *host != "" {
|
|
|
|
app.host = *host
|
2020-08-01 23:05:35 +00:00
|
|
|
}
|
2020-08-16 12:36:54 +00:00
|
|
|
if *port != app.port && *port > 0 {
|
|
|
|
app.port = *port
|
2020-08-01 23:05:35 +00:00
|
|
|
}
|
2020-08-01 20:20:02 +00:00
|
|
|
|
2020-08-01 23:05:35 +00:00
|
|
|
if h := os.Getenv("JFA_HOST"); h != "" {
|
2020-08-16 12:36:54 +00:00
|
|
|
app.host = h
|
2020-08-01 23:05:35 +00:00
|
|
|
if p := os.Getenv("JFA_PORT"); p != "" {
|
|
|
|
var port int
|
|
|
|
_, err := fmt.Sscan(p, &port)
|
|
|
|
if err == nil {
|
2020-08-16 12:36:54 +00:00
|
|
|
app.port = port
|
2020-08-01 23:05:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-07-31 21:07:09 +00:00
|
|
|
|
2020-08-16 12:36:54 +00:00
|
|
|
address = fmt.Sprintf("%s:%d", app.host, app.port)
|
2020-07-29 21:11:28 +00:00
|
|
|
|
2020-08-16 12:36:54 +00:00
|
|
|
app.debug.Printf("Loaded config file \"%s\"", app.config_path)
|
2020-07-29 21:11:28 +00:00
|
|
|
|
2020-08-16 12:36:54 +00:00
|
|
|
if app.config.Section("ui").Key("bs5").MustBool(false) {
|
|
|
|
app.cssFile = "bs5-jf.css"
|
|
|
|
app.bsVersion = 5
|
2020-08-01 23:05:35 +00:00
|
|
|
} else {
|
2020-08-16 12:36:54 +00:00
|
|
|
app.cssFile = "bs4-jf.css"
|
|
|
|
app.bsVersion = 4
|
2020-07-29 21:11:28 +00:00
|
|
|
}
|
|
|
|
|
2020-08-16 12:36:54 +00:00
|
|
|
app.debug.Println("Loading storage")
|
2020-08-01 23:05:35 +00:00
|
|
|
|
2020-08-16 12:36:54 +00:00
|
|
|
app.storage.invite_path = filepath.Join(app.data_path, "invites.json")
|
|
|
|
app.storage.loadInvites()
|
|
|
|
app.storage.emails_path = filepath.Join(app.data_path, "emails.json")
|
|
|
|
app.storage.loadEmails()
|
|
|
|
app.storage.policy_path = filepath.Join(app.data_path, "user_template.json")
|
|
|
|
app.storage.loadPolicy()
|
|
|
|
app.storage.configuration_path = filepath.Join(app.data_path, "user_configuration.json")
|
|
|
|
app.storage.loadConfiguration()
|
|
|
|
app.storage.displayprefs_path = filepath.Join(app.data_path, "user_displayprefs.json")
|
|
|
|
app.storage.loadDisplayprefs()
|
2020-08-01 23:05:35 +00:00
|
|
|
|
2020-08-16 12:36:54 +00:00
|
|
|
app.configBase_path = filepath.Join(app.local_path, "config-base.json")
|
|
|
|
config_base, _ := ioutil.ReadFile(app.configBase_path)
|
|
|
|
json.Unmarshal(config_base, &app.configBase)
|
2020-08-01 23:05:35 +00:00
|
|
|
|
|
|
|
themes := map[string]string{
|
2020-08-16 12:36:54 +00:00
|
|
|
"Jellyfin (Dark)": fmt.Sprintf("bs%d-jf.css", app.bsVersion),
|
|
|
|
"Bootstrap (Light)": fmt.Sprintf("bs%d.css", app.bsVersion),
|
2020-08-01 23:05:35 +00:00
|
|
|
"Custom CSS": "",
|
|
|
|
}
|
2020-08-16 12:36:54 +00:00
|
|
|
if val, ok := themes[app.config.Section("ui").Key("theme").String()]; ok {
|
|
|
|
app.cssFile = val
|
2020-08-01 23:05:35 +00:00
|
|
|
}
|
2020-08-16 12:36:54 +00:00
|
|
|
app.debug.Printf("Using css file \"%s\"", app.cssFile)
|
2020-08-01 23:05:35 +00:00
|
|
|
secret, err := GenerateSecret(16)
|
|
|
|
if err != nil {
|
2020-08-16 12:36:54 +00:00
|
|
|
app.err.Fatal(err)
|
2020-08-01 23:05:35 +00:00
|
|
|
}
|
|
|
|
os.Setenv("JFA_SECRET", secret)
|
2020-08-16 12:36:54 +00:00
|
|
|
app.jellyfinLogin = true
|
|
|
|
if val, _ := app.config.Section("ui").Key("jellyfin_login").Bool(); !val {
|
|
|
|
app.jellyfinLogin = false
|
2020-08-01 23:05:35 +00:00
|
|
|
user := User{}
|
|
|
|
user.UserID = shortuuid.New()
|
2020-08-16 12:36:54 +00:00
|
|
|
user.Username = app.config.Section("ui").Key("username").String()
|
|
|
|
user.Password = app.config.Section("ui").Key("password").String()
|
|
|
|
app.users = append(app.users, user)
|
2020-08-01 23:05:35 +00:00
|
|
|
} else {
|
2020-08-16 12:36:54 +00:00
|
|
|
app.debug.Println("Using Jellyfin for authentication")
|
2020-08-01 23:05:35 +00:00
|
|
|
}
|
2020-07-31 11:48:37 +00:00
|
|
|
|
2020-08-16 12:36:54 +00:00
|
|
|
server := app.config.Section("jellyfin").Key("server").String()
|
|
|
|
app.jf.init(server, "jfa-go", app.version, "hrfee-arch", "hrfee-arch")
|
2020-08-01 23:05:35 +00:00
|
|
|
var status int
|
2020-08-16 12:36:54 +00:00
|
|
|
_, status, err = app.jf.authenticate(app.config.Section("jellyfin").Key("username").String(), app.config.Section("jellyfin").Key("password").String())
|
2020-08-01 23:05:35 +00:00
|
|
|
if status != 200 || err != nil {
|
2020-08-16 12:36:54 +00:00
|
|
|
app.err.Fatalf("Failed to authenticate with Jellyfin @ %s: Code %d", server, status)
|
2020-08-01 23:05:35 +00:00
|
|
|
}
|
2020-08-16 12:36:54 +00:00
|
|
|
app.info.Printf("Authenticated with %s", server)
|
|
|
|
app.authJf.init(server, "jfa-go", app.version, "auth", "auth")
|
2020-08-01 14:22:30 +00:00
|
|
|
|
2020-08-16 12:36:54 +00:00
|
|
|
app.loadStrftime()
|
2020-08-01 23:05:35 +00:00
|
|
|
|
|
|
|
validatorConf := ValidatorConf{
|
2020-08-16 12:36:54 +00:00
|
|
|
"characters": app.config.Section("password_validation").Key("min_length").MustInt(0),
|
|
|
|
"uppercase characters": app.config.Section("password_validation").Key("upper").MustInt(0),
|
|
|
|
"lowercase characters": app.config.Section("password_validation").Key("lower").MustInt(0),
|
|
|
|
"numbers": app.config.Section("password_validation").Key("number").MustInt(0),
|
|
|
|
"special characters": app.config.Section("password_validation").Key("special").MustInt(0),
|
2020-08-01 23:05:35 +00:00
|
|
|
}
|
2020-08-16 12:36:54 +00:00
|
|
|
if !app.config.Section("password_validation").Key("enabled").MustBool(false) {
|
2020-08-01 23:05:35 +00:00
|
|
|
for key := range validatorConf {
|
|
|
|
validatorConf[key] = 0
|
|
|
|
}
|
|
|
|
}
|
2020-08-16 12:36:54 +00:00
|
|
|
app.validator.init(validatorConf)
|
2020-08-01 23:05:35 +00:00
|
|
|
|
2020-08-16 12:36:54 +00:00
|
|
|
app.email.init(app)
|
2020-08-01 23:05:35 +00:00
|
|
|
|
2020-08-16 12:36:54 +00:00
|
|
|
inviteDaemon := NewRepeater(time.Duration(60*time.Second), app)
|
2020-08-01 23:05:35 +00:00
|
|
|
go inviteDaemon.Run()
|
|
|
|
|
2020-08-16 12:36:54 +00:00
|
|
|
if app.config.Section("password_resets").Key("enabled").MustBool(false) {
|
|
|
|
go app.StartPWR()
|
2020-08-01 23:05:35 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
debugMode = false
|
|
|
|
gin.SetMode(gin.ReleaseMode)
|
|
|
|
address = "0.0.0.0:8056"
|
2020-08-01 15:31:08 +00:00
|
|
|
}
|
|
|
|
|
2020-08-16 12:36:54 +00:00
|
|
|
app.info.Println("Loading routes")
|
2020-08-01 13:08:55 +00:00
|
|
|
router := gin.New()
|
|
|
|
|
|
|
|
setGinLogger(router, debugMode)
|
|
|
|
|
|
|
|
router.Use(gin.Recovery())
|
2020-08-16 12:36:54 +00:00
|
|
|
router.Use(static.Serve("/", static.LocalFile(filepath.Join(app.local_path, "static"), false)))
|
|
|
|
router.LoadHTMLGlob(filepath.Join(app.local_path, "templates", "*"))
|
|
|
|
router.NoRoute(app.NoRouteHandler)
|
2020-08-02 23:13:09 +00:00
|
|
|
if debugMode {
|
2020-08-16 12:36:54 +00:00
|
|
|
app.debug.Println("Loading pprof")
|
2020-08-02 23:13:09 +00:00
|
|
|
pprof.Register(router)
|
|
|
|
}
|
2020-08-01 23:05:35 +00:00
|
|
|
if !firstRun {
|
2020-08-16 12:36:54 +00:00
|
|
|
router.GET("/", app.AdminPage)
|
|
|
|
router.GET("/getToken", app.GetToken)
|
|
|
|
router.POST("/newUser", app.NewUser)
|
|
|
|
router.Use(static.Serve("/invite/", static.LocalFile(filepath.Join(app.local_path, "static"), false)))
|
|
|
|
router.GET("/invite/:invCode", app.InviteProxy)
|
|
|
|
api := router.Group("/", app.webAuth())
|
|
|
|
api.POST("/generateInvite", app.GenerateInvite)
|
|
|
|
api.GET("/getInvites", app.GetInvites)
|
|
|
|
api.POST("/setNotify", app.SetNotify)
|
|
|
|
api.POST("/deleteInvite", app.DeleteInvite)
|
|
|
|
api.GET("/getUsers", app.GetUsers)
|
|
|
|
api.POST("/modifyUsers", app.ModifyEmails)
|
|
|
|
api.POST("/setDefaults", app.SetDefaults)
|
|
|
|
api.GET("/getConfig", app.GetConfig)
|
|
|
|
api.POST("/modifyConfig", app.ModifyConfig)
|
|
|
|
app.info.Printf("Starting router @ %s", address)
|
2020-08-01 23:05:35 +00:00
|
|
|
} else {
|
|
|
|
router.GET("/", func(gc *gin.Context) {
|
|
|
|
gc.HTML(200, "setup.html", gin.H{})
|
|
|
|
})
|
2020-08-16 12:36:54 +00:00
|
|
|
router.POST("/testJF", app.TestJF)
|
|
|
|
router.POST("/modifyConfig", app.ModifyConfig)
|
|
|
|
app.info.Printf("Loading setup @ %s", address)
|
2020-08-01 23:05:35 +00:00
|
|
|
}
|
2020-08-15 21:07:48 +00:00
|
|
|
|
2020-08-05 15:58:24 +00:00
|
|
|
srv := &http.Server{
|
|
|
|
Addr: address,
|
|
|
|
Handler: router,
|
|
|
|
}
|
|
|
|
go func() {
|
|
|
|
if err := srv.ListenAndServe(); err != nil {
|
2020-08-16 12:36:54 +00:00
|
|
|
app.err.Printf("Failure serving: %s", err)
|
2020-08-05 15:58:24 +00:00
|
|
|
}
|
|
|
|
}()
|
2020-08-16 12:36:54 +00:00
|
|
|
app.quit = make(chan os.Signal)
|
|
|
|
signal.Notify(app.quit, os.Interrupt)
|
|
|
|
<-app.quit
|
|
|
|
app.info.Println("Shutting down...")
|
2020-08-05 15:58:24 +00:00
|
|
|
|
|
|
|
cntx, cancel := context.WithTimeout(context.Background(), time.Second*5)
|
|
|
|
defer cancel()
|
|
|
|
if err := srv.Shutdown(cntx); err != nil {
|
2020-08-16 12:36:54 +00:00
|
|
|
app.err.Fatalf("Server shutdown error: %s", err)
|
2020-08-05 15:58:24 +00:00
|
|
|
}
|
2020-07-29 21:11:28 +00:00
|
|
|
}
|