mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-31 10:32:25 -05:00 
			
		
		
		
	* 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>
		
			
				
	
	
		
			85 lines
		
	
	
	
		
			3.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			85 lines
		
	
	
	
		
			3.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright (C) MongoDB, Inc. 2017-present.
 | |
| //
 | |
| // 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 http://www.apache.org/licenses/LICENSE-2.0
 | |
| 
 | |
| package bson
 | |
| 
 | |
| import (
 | |
| 	"errors"
 | |
| 	"io"
 | |
| 
 | |
| 	"go.mongodb.org/mongo-driver/x/bsonx/bsoncore"
 | |
| )
 | |
| 
 | |
| // ErrNilReader indicates that an operation was attempted on a nil bson.Reader.
 | |
| var ErrNilReader = errors.New("nil reader")
 | |
| 
 | |
| // Raw is a wrapper around a byte slice. It will interpret the slice as a
 | |
| // BSON document. This type is a wrapper around a bsoncore.Document. Errors returned from the
 | |
| // methods on this type and associated types come from the bsoncore package.
 | |
| type Raw []byte
 | |
| 
 | |
| // NewFromIOReader reads in a document from the given io.Reader and constructs a Raw from
 | |
| // it.
 | |
| func NewFromIOReader(r io.Reader) (Raw, error) {
 | |
| 	doc, err := bsoncore.NewDocumentFromReader(r)
 | |
| 	return Raw(doc), err
 | |
| }
 | |
| 
 | |
| // Validate validates the document. This method only validates the first document in
 | |
| // the slice, to validate other documents, the slice must be resliced.
 | |
| func (r Raw) Validate() (err error) { return bsoncore.Document(r).Validate() }
 | |
| 
 | |
| // Lookup search the document, potentially recursively, for the given key. If
 | |
| // there are multiple keys provided, this method will recurse down, as long as
 | |
| // the top and intermediate nodes are either documents or arrays.If an error
 | |
| // occurs or if the value doesn't exist, an empty RawValue is returned.
 | |
| func (r Raw) Lookup(key ...string) RawValue {
 | |
| 	return convertFromCoreValue(bsoncore.Document(r).Lookup(key...))
 | |
| }
 | |
| 
 | |
| // LookupErr searches the document and potentially subdocuments or arrays for the
 | |
| // provided key. Each key provided to this method represents a layer of depth.
 | |
| func (r Raw) LookupErr(key ...string) (RawValue, error) {
 | |
| 	val, err := bsoncore.Document(r).LookupErr(key...)
 | |
| 	return convertFromCoreValue(val), err
 | |
| }
 | |
| 
 | |
| // Elements returns this document as a slice of elements. The returned slice will contain valid
 | |
| // elements. If the document is not valid, the elements up to the invalid point will be returned
 | |
| // along with an error.
 | |
| func (r Raw) Elements() ([]RawElement, error) {
 | |
| 	elems, err := bsoncore.Document(r).Elements()
 | |
| 	relems := make([]RawElement, 0, len(elems))
 | |
| 	for _, elem := range elems {
 | |
| 		relems = append(relems, RawElement(elem))
 | |
| 	}
 | |
| 	return relems, err
 | |
| }
 | |
| 
 | |
| // Values returns this document as a slice of values. The returned slice will contain valid values.
 | |
| // If the document is not valid, the values up to the invalid point will be returned along with an
 | |
| // error.
 | |
| func (r Raw) Values() ([]RawValue, error) {
 | |
| 	vals, err := bsoncore.Document(r).Values()
 | |
| 	rvals := make([]RawValue, 0, len(vals))
 | |
| 	for _, val := range vals {
 | |
| 		rvals = append(rvals, convertFromCoreValue(val))
 | |
| 	}
 | |
| 	return rvals, err
 | |
| }
 | |
| 
 | |
| // Index searches for and retrieves the element at the given index. This method will panic if
 | |
| // the document is invalid or if the index is out of bounds.
 | |
| func (r Raw) Index(index uint) RawElement { return RawElement(bsoncore.Document(r).Index(index)) }
 | |
| 
 | |
| // IndexErr searches for and retrieves the element at the given index.
 | |
| func (r Raw) IndexErr(index uint) (RawElement, error) {
 | |
| 	elem, err := bsoncore.Document(r).IndexErr(index)
 | |
| 	return RawElement(elem), err
 | |
| }
 | |
| 
 | |
| // String implements the fmt.Stringer interface.
 | |
| func (r Raw) String() string { return bsoncore.Document(r).String() }
 |