mirror of
https://github.com/nabbar/golib.git
synced 2025-10-04 07:26:39 +08:00

- gin: apply change following bumping gin (move value from interface{} to any, move key from string to any) Package Database: - gorm: removing clickhouse driver following cve and no update since publicated Other: - bump dependencies
94 lines
2.4 KiB
Go
94 lines
2.4 KiB
Go
/*
|
|
* MIT License
|
|
*
|
|
* Copyright (c) 2019 Nicolas JUHEL
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*
|
|
*
|
|
*/
|
|
|
|
package gin
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"time"
|
|
|
|
ginsdk "github.com/gin-gonic/gin"
|
|
liblog "github.com/nabbar/golib/logger"
|
|
)
|
|
|
|
type GinTonic interface {
|
|
context.Context
|
|
|
|
//generic
|
|
GinContext() *ginsdk.Context
|
|
CancelOnSignal(s ...os.Signal)
|
|
|
|
//gin context metadata
|
|
Set(key any, value any)
|
|
Get(key any) (value any, exists bool)
|
|
MustGet(key any) any
|
|
GetString(key any) (s string)
|
|
GetBool(key any) (b bool)
|
|
GetInt(key any) (i int)
|
|
GetInt64(key any) (i64 int64)
|
|
GetFloat64(key any) (f64 float64)
|
|
GetTime(key any) (t time.Time)
|
|
GetDuration(key any) (d time.Duration)
|
|
GetStringSlice(key any) (ss []string)
|
|
GetStringMap(key any) (sm map[string]any)
|
|
GetStringMapString(key any) (sms map[string]string)
|
|
GetStringMapStringSlice(key any) (smss map[string][]string)
|
|
|
|
SetLogger(log liblog.FuncLog)
|
|
}
|
|
|
|
func New(c *ginsdk.Context, log liblog.FuncLog) GinTonic {
|
|
if c == nil {
|
|
c = &ginsdk.Context{
|
|
Request: nil,
|
|
Writer: nil,
|
|
Params: make(ginsdk.Params, 0),
|
|
Keys: make(map[any]any),
|
|
Errors: make([]*ginsdk.Error, 0),
|
|
Accepted: make([]string, 0),
|
|
}
|
|
}
|
|
|
|
var (
|
|
x context.Context
|
|
l context.CancelFunc
|
|
)
|
|
|
|
if c.Request != nil && c.Request.Context() != nil {
|
|
x, l = context.WithCancel(c.Request.Context())
|
|
} else {
|
|
x, l = context.WithCancel(c)
|
|
}
|
|
|
|
return &ctxGinTonic{
|
|
l: log,
|
|
g: c,
|
|
x: x,
|
|
c: l,
|
|
}
|
|
}
|