mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 06:50:00 +00:00
fc3741365c
* Add Swagger spec test script * Fix Swagger spec errors not related to statuses with polls * Add API tests that post a status with a poll * Fix creating a status with a poll from form params * Fix Swagger spec errors related to statuses with polls (this is the last error) * Fix Swagger spec warnings not related to unused definitions * Suppress a duplicate list update params definition that was somehow causing wrong param names * Add Swagger test to CI - updates Drone config - vendorizes go-swagger - fixes a file extension issue that caused the test script to generate JSON instead of YAML with the vendorized version * Put `Sample: ` on its own line everywhere * Remove unused id param from emojiCategoriesGet * Add 5 more pairs of profile fields to account update API Swagger * Remove Swagger prefix from dummy fields It makes the generated code look weird * Manually annotate params for statusCreate operation * Fix all remaining Swagger spec warnings - Change some models into operation parameters - Ignore models that already correspond to manually documented operation parameters but can't be trivially changed (those with file fields) * Documented that creating a status with scheduled_at isn't implemented yet * sign drone.yml * Fix filter API Swagger errors * fixup! Fix filter API Swagger errors --------- Co-authored-by: tobi <tobi.smethurst@protonmail.com>
82 lines
1.8 KiB
Go
82 lines
1.8 KiB
Go
package govalidator
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"reflect"
|
|
"strconv"
|
|
)
|
|
|
|
// ToString convert the input to a string.
|
|
func ToString(obj interface{}) string {
|
|
res := fmt.Sprintf("%v", obj)
|
|
return res
|
|
}
|
|
|
|
// ToJSON convert the input to a valid JSON string
|
|
func ToJSON(obj interface{}) (string, error) {
|
|
res, err := json.Marshal(obj)
|
|
if err != nil {
|
|
res = []byte("")
|
|
}
|
|
return string(res), err
|
|
}
|
|
|
|
// ToFloat convert the input string to a float, or 0.0 if the input is not a float.
|
|
func ToFloat(value interface{}) (res float64, err error) {
|
|
val := reflect.ValueOf(value)
|
|
|
|
switch value.(type) {
|
|
case int, int8, int16, int32, int64:
|
|
res = float64(val.Int())
|
|
case uint, uint8, uint16, uint32, uint64:
|
|
res = float64(val.Uint())
|
|
case float32, float64:
|
|
res = val.Float()
|
|
case string:
|
|
res, err = strconv.ParseFloat(val.String(), 64)
|
|
if err != nil {
|
|
res = 0
|
|
}
|
|
default:
|
|
err = fmt.Errorf("ToInt: unknown interface type %T", value)
|
|
res = 0
|
|
}
|
|
|
|
return
|
|
}
|
|
|
|
// ToInt convert the input string or any int type to an integer type 64, or 0 if the input is not an integer.
|
|
func ToInt(value interface{}) (res int64, err error) {
|
|
val := reflect.ValueOf(value)
|
|
|
|
switch value.(type) {
|
|
case int, int8, int16, int32, int64:
|
|
res = val.Int()
|
|
case uint, uint8, uint16, uint32, uint64:
|
|
res = int64(val.Uint())
|
|
case float32, float64:
|
|
res = int64(val.Float())
|
|
case string:
|
|
if IsInt(val.String()) {
|
|
res, err = strconv.ParseInt(val.String(), 0, 64)
|
|
if err != nil {
|
|
res = 0
|
|
}
|
|
} else {
|
|
err = fmt.Errorf("ToInt: invalid numeric format %g", value)
|
|
res = 0
|
|
}
|
|
default:
|
|
err = fmt.Errorf("ToInt: unknown interface type %T", value)
|
|
res = 0
|
|
}
|
|
|
|
return
|
|
}
|
|
|
|
// ToBoolean convert the input string to a boolean.
|
|
func ToBoolean(str string) (bool, error) {
|
|
return strconv.ParseBool(str)
|
|
}
|