2020-01-29 01:01:06 +00:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package queue
|
|
|
|
|
|
|
|
import (
|
|
|
|
"reflect"
|
2021-03-01 21:08:10 +00:00
|
|
|
|
2021-07-24 16:03:58 +00:00
|
|
|
"code.gitea.io/gitea/modules/json"
|
2020-01-29 01:01:06 +00:00
|
|
|
)
|
|
|
|
|
2020-10-15 21:40:03 +00:00
|
|
|
// Mappable represents an interface that can MapTo another interface
|
|
|
|
type Mappable interface {
|
|
|
|
MapTo(v interface{}) error
|
|
|
|
}
|
|
|
|
|
2020-01-29 01:01:06 +00:00
|
|
|
// toConfig will attempt to convert a given configuration cfg into the provided exemplar type.
|
|
|
|
//
|
|
|
|
// It will tolerate the cfg being passed as a []byte or string of a json representation of the
|
|
|
|
// exemplar or the correct type of the exemplar itself
|
|
|
|
func toConfig(exemplar, cfg interface{}) (interface{}, error) {
|
2020-10-15 21:40:03 +00:00
|
|
|
// First of all check if we've got the same type as the exemplar - if so it's all fine.
|
2020-01-29 01:01:06 +00:00
|
|
|
if reflect.TypeOf(cfg).AssignableTo(reflect.TypeOf(exemplar)) {
|
|
|
|
return cfg, nil
|
|
|
|
}
|
|
|
|
|
2020-10-15 21:40:03 +00:00
|
|
|
// Now if not - does it provide a MapTo function we can try?
|
|
|
|
if mappable, ok := cfg.(Mappable); ok {
|
|
|
|
newVal := reflect.New(reflect.TypeOf(exemplar))
|
|
|
|
if err := mappable.MapTo(newVal.Interface()); err == nil {
|
|
|
|
return newVal.Elem().Interface(), nil
|
|
|
|
}
|
|
|
|
// MapTo has failed us ... let's try the json route ...
|
|
|
|
}
|
|
|
|
|
|
|
|
// OK we've been passed a byte array right?
|
2020-01-29 01:01:06 +00:00
|
|
|
configBytes, ok := cfg.([]byte)
|
|
|
|
if !ok {
|
2020-10-15 21:40:03 +00:00
|
|
|
// oh ... it's a string then?
|
|
|
|
var configStr string
|
|
|
|
|
|
|
|
configStr, ok = cfg.(string)
|
2020-01-29 01:01:06 +00:00
|
|
|
configBytes = []byte(configStr)
|
|
|
|
}
|
2020-10-15 21:40:03 +00:00
|
|
|
if !ok {
|
|
|
|
// hmm ... can we marshal it to json?
|
|
|
|
var err error
|
|
|
|
configBytes, err = json.Marshal(cfg)
|
2021-04-09 07:40:34 +00:00
|
|
|
ok = err == nil
|
2020-10-15 21:40:03 +00:00
|
|
|
}
|
|
|
|
if !ok {
|
|
|
|
// no ... we've tried hard enough at this point - throw an error!
|
|
|
|
return nil, ErrInvalidConfiguration{cfg: cfg}
|
|
|
|
}
|
|
|
|
|
|
|
|
// OK unmarshal the byte array into a new copy of the exemplar
|
2020-01-29 01:01:06 +00:00
|
|
|
newVal := reflect.New(reflect.TypeOf(exemplar))
|
|
|
|
if err := json.Unmarshal(configBytes, newVal.Interface()); err != nil {
|
2020-10-15 21:40:03 +00:00
|
|
|
// If we can't unmarshal it then return an error!
|
2020-01-29 01:01:06 +00:00
|
|
|
return nil, ErrInvalidConfiguration{cfg: cfg, err: err}
|
|
|
|
}
|
|
|
|
return newVal.Elem().Interface(), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// unmarshalAs will attempt to unmarshal provided bytes as the provided exemplar
|
|
|
|
func unmarshalAs(bs []byte, exemplar interface{}) (data Data, err error) {
|
|
|
|
if exemplar != nil {
|
|
|
|
t := reflect.TypeOf(exemplar)
|
|
|
|
n := reflect.New(t)
|
|
|
|
ne := n.Elem()
|
|
|
|
err = json.Unmarshal(bs, ne.Addr().Interface())
|
|
|
|
data = ne.Interface().(Data)
|
|
|
|
} else {
|
|
|
|
err = json.Unmarshal(bs, &data)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// assignableTo will check if provided data is assignable to the same type as the exemplar
|
|
|
|
// if the provided exemplar is nil then it will always return true
|
|
|
|
func assignableTo(data Data, exemplar interface{}) bool {
|
|
|
|
if exemplar == nil {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Assert data is of same type as exemplar
|
|
|
|
t := reflect.TypeOf(data)
|
|
|
|
exemplarType := reflect.TypeOf(exemplar)
|
|
|
|
|
|
|
|
return t.AssignableTo(exemplarType) && data != nil
|
|
|
|
}
|