2018-02-19 22:24:10 +00:00
|
|
|
// Copyright 2018 Drone.IO Inc.
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2015-10-21 23:14:02 +00:00
|
|
|
package store
|
|
|
|
|
|
|
|
import (
|
2021-10-19 09:44:49 +00:00
|
|
|
"context"
|
2024-01-19 15:20:35 +00:00
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
2015-10-21 23:14:02 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const key = "store"
|
|
|
|
|
|
|
|
// FromContext returns the Store associated with this context.
|
|
|
|
func FromContext(c context.Context) Store {
|
2024-01-12 01:01:02 +00:00
|
|
|
store, _ := c.Value(key).(Store)
|
|
|
|
return store
|
2015-10-21 23:14:02 +00:00
|
|
|
}
|
|
|
|
|
2022-01-17 22:46:59 +00:00
|
|
|
// TryFromContext try to return the Store associated with this context.
|
|
|
|
func TryFromContext(c context.Context) (Store, bool) {
|
|
|
|
store, ok := c.Value(key).(Store)
|
|
|
|
return store, ok
|
|
|
|
}
|
|
|
|
|
2024-01-19 15:20:35 +00:00
|
|
|
// ToContext adds the Store to this context.
|
|
|
|
func ToContext(c *gin.Context, store Store) {
|
2015-10-21 23:14:02 +00:00
|
|
|
c.Set(key, store)
|
|
|
|
}
|
2022-10-28 17:17:30 +00:00
|
|
|
|
|
|
|
func InjectToContext(ctx context.Context, store Store) context.Context {
|
2024-01-10 14:34:44 +00:00
|
|
|
return context.WithValue(ctx, key, store) //nolint:revive,staticcheck
|
2022-10-28 17:17:30 +00:00
|
|
|
}
|