mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 15:00: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>
237 lines
4.5 KiB
Go
237 lines
4.5 KiB
Go
package sprig
|
|
|
|
import (
|
|
"encoding/base32"
|
|
"encoding/base64"
|
|
"fmt"
|
|
"reflect"
|
|
"strconv"
|
|
"strings"
|
|
|
|
util "github.com/Masterminds/goutils"
|
|
)
|
|
|
|
func base64encode(v string) string {
|
|
return base64.StdEncoding.EncodeToString([]byte(v))
|
|
}
|
|
|
|
func base64decode(v string) string {
|
|
data, err := base64.StdEncoding.DecodeString(v)
|
|
if err != nil {
|
|
return err.Error()
|
|
}
|
|
return string(data)
|
|
}
|
|
|
|
func base32encode(v string) string {
|
|
return base32.StdEncoding.EncodeToString([]byte(v))
|
|
}
|
|
|
|
func base32decode(v string) string {
|
|
data, err := base32.StdEncoding.DecodeString(v)
|
|
if err != nil {
|
|
return err.Error()
|
|
}
|
|
return string(data)
|
|
}
|
|
|
|
func abbrev(width int, s string) string {
|
|
if width < 4 {
|
|
return s
|
|
}
|
|
r, _ := util.Abbreviate(s, width)
|
|
return r
|
|
}
|
|
|
|
func abbrevboth(left, right int, s string) string {
|
|
if right < 4 || left > 0 && right < 7 {
|
|
return s
|
|
}
|
|
r, _ := util.AbbreviateFull(s, left, right)
|
|
return r
|
|
}
|
|
func initials(s string) string {
|
|
// Wrap this just to eliminate the var args, which templates don't do well.
|
|
return util.Initials(s)
|
|
}
|
|
|
|
func randAlphaNumeric(count int) string {
|
|
// It is not possible, it appears, to actually generate an error here.
|
|
r, _ := util.CryptoRandomAlphaNumeric(count)
|
|
return r
|
|
}
|
|
|
|
func randAlpha(count int) string {
|
|
r, _ := util.CryptoRandomAlphabetic(count)
|
|
return r
|
|
}
|
|
|
|
func randAscii(count int) string {
|
|
r, _ := util.CryptoRandomAscii(count)
|
|
return r
|
|
}
|
|
|
|
func randNumeric(count int) string {
|
|
r, _ := util.CryptoRandomNumeric(count)
|
|
return r
|
|
}
|
|
|
|
func untitle(str string) string {
|
|
return util.Uncapitalize(str)
|
|
}
|
|
|
|
func quote(str ...interface{}) string {
|
|
out := make([]string, 0, len(str))
|
|
for _, s := range str {
|
|
if s != nil {
|
|
out = append(out, fmt.Sprintf("%q", strval(s)))
|
|
}
|
|
}
|
|
return strings.Join(out, " ")
|
|
}
|
|
|
|
func squote(str ...interface{}) string {
|
|
out := make([]string, 0, len(str))
|
|
for _, s := range str {
|
|
if s != nil {
|
|
out = append(out, fmt.Sprintf("'%v'", s))
|
|
}
|
|
}
|
|
return strings.Join(out, " ")
|
|
}
|
|
|
|
func cat(v ...interface{}) string {
|
|
v = removeNilElements(v)
|
|
r := strings.TrimSpace(strings.Repeat("%v ", len(v)))
|
|
return fmt.Sprintf(r, v...)
|
|
}
|
|
|
|
func indent(spaces int, v string) string {
|
|
pad := strings.Repeat(" ", spaces)
|
|
return pad + strings.Replace(v, "\n", "\n"+pad, -1)
|
|
}
|
|
|
|
func nindent(spaces int, v string) string {
|
|
return "\n" + indent(spaces, v)
|
|
}
|
|
|
|
func replace(old, new, src string) string {
|
|
return strings.Replace(src, old, new, -1)
|
|
}
|
|
|
|
func plural(one, many string, count int) string {
|
|
if count == 1 {
|
|
return one
|
|
}
|
|
return many
|
|
}
|
|
|
|
func strslice(v interface{}) []string {
|
|
switch v := v.(type) {
|
|
case []string:
|
|
return v
|
|
case []interface{}:
|
|
b := make([]string, 0, len(v))
|
|
for _, s := range v {
|
|
if s != nil {
|
|
b = append(b, strval(s))
|
|
}
|
|
}
|
|
return b
|
|
default:
|
|
val := reflect.ValueOf(v)
|
|
switch val.Kind() {
|
|
case reflect.Array, reflect.Slice:
|
|
l := val.Len()
|
|
b := make([]string, 0, l)
|
|
for i := 0; i < l; i++ {
|
|
value := val.Index(i).Interface()
|
|
if value != nil {
|
|
b = append(b, strval(value))
|
|
}
|
|
}
|
|
return b
|
|
default:
|
|
if v == nil {
|
|
return []string{}
|
|
}
|
|
|
|
return []string{strval(v)}
|
|
}
|
|
}
|
|
}
|
|
|
|
func removeNilElements(v []interface{}) []interface{} {
|
|
newSlice := make([]interface{}, 0, len(v))
|
|
for _, i := range v {
|
|
if i != nil {
|
|
newSlice = append(newSlice, i)
|
|
}
|
|
}
|
|
return newSlice
|
|
}
|
|
|
|
func strval(v interface{}) string {
|
|
switch v := v.(type) {
|
|
case string:
|
|
return v
|
|
case []byte:
|
|
return string(v)
|
|
case error:
|
|
return v.Error()
|
|
case fmt.Stringer:
|
|
return v.String()
|
|
default:
|
|
return fmt.Sprintf("%v", v)
|
|
}
|
|
}
|
|
|
|
func trunc(c int, s string) string {
|
|
if c < 0 && len(s)+c > 0 {
|
|
return s[len(s)+c:]
|
|
}
|
|
if c >= 0 && len(s) > c {
|
|
return s[:c]
|
|
}
|
|
return s
|
|
}
|
|
|
|
func join(sep string, v interface{}) string {
|
|
return strings.Join(strslice(v), sep)
|
|
}
|
|
|
|
func split(sep, orig string) map[string]string {
|
|
parts := strings.Split(orig, sep)
|
|
res := make(map[string]string, len(parts))
|
|
for i, v := range parts {
|
|
res["_"+strconv.Itoa(i)] = v
|
|
}
|
|
return res
|
|
}
|
|
|
|
func splitn(sep string, n int, orig string) map[string]string {
|
|
parts := strings.SplitN(orig, sep, n)
|
|
res := make(map[string]string, len(parts))
|
|
for i, v := range parts {
|
|
res["_"+strconv.Itoa(i)] = v
|
|
}
|
|
return res
|
|
}
|
|
|
|
// substring creates a substring of the given string.
|
|
//
|
|
// If start is < 0, this calls string[:end].
|
|
//
|
|
// If start is >= 0 and end < 0 or end bigger than s length, this calls string[start:]
|
|
//
|
|
// Otherwise, this calls string[start, end].
|
|
func substring(start, end int, s string) string {
|
|
if start < 0 {
|
|
return s[:end]
|
|
}
|
|
if end < 0 || end > len(s) {
|
|
return s[start:]
|
|
}
|
|
return s[start:end]
|
|
}
|