woodpecker/vendor/github.com/gin-gonic/gin/mode.go

62 lines
1 KiB
Go
Raw Normal View History

2015-05-22 18:37:40 +00:00
// Copyright 2014 Manu Martinez-Almeida. All rights reserved.
// Use of this source code is governed by a MIT style
// license that can be found in the LICENSE file.
package gin
import (
2015-09-30 01:21:17 +00:00
"io"
2015-05-22 18:37:40 +00:00
"os"
2015-09-30 01:21:17 +00:00
"github.com/gin-gonic/gin/binding"
"github.com/mattn/go-colorable"
2015-05-22 18:37:40 +00:00
)
2015-09-30 01:21:17 +00:00
const ENV_GIN_MODE = "GIN_MODE"
2015-05-22 18:37:40 +00:00
const (
DebugMode string = "debug"
ReleaseMode string = "release"
TestMode string = "test"
)
const (
debugCode = iota
releaseCode = iota
testCode = iota
)
2015-09-30 01:21:17 +00:00
var DefaultWriter io.Writer = colorable.NewColorableStdout()
2015-05-22 18:37:40 +00:00
var ginMode int = debugCode
var modeName string = DebugMode
func init() {
2015-09-30 01:21:17 +00:00
mode := os.Getenv(ENV_GIN_MODE)
if len(mode) == 0 {
2015-05-22 18:37:40 +00:00
SetMode(DebugMode)
} else {
2015-09-30 01:21:17 +00:00
SetMode(mode)
2015-05-22 18:37:40 +00:00
}
}
func SetMode(value string) {
switch value {
case DebugMode:
ginMode = debugCode
case ReleaseMode:
ginMode = releaseCode
case TestMode:
ginMode = testCode
default:
panic("gin mode unknown: " + value)
}
modeName = value
}
2015-09-30 01:21:17 +00:00
func DisableBindValidation() {
binding.Validator = nil
}
2015-05-22 18:37:40 +00:00
func Mode() string {
return modeName
}