mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-31 14:12:26 -05:00 
			
		
		
		
	[chore] update dependencies, bump to Go 1.19.1 (#826)
* update dependencies, bump Go version to 1.19 * bump test image Go version * update golangci-lint * update gotosocial-drone-build * sign * linting, go fmt * update swagger docs * update swagger docs * whitespace * update contributing.md * fuckin whoopsie doopsie * linterino, linteroni * fix followrequest test not starting processor * fix other api/client tests not starting processor * fix remaining tests where processor not started * bump go-runners version * don't check last-webfingered-at, processor may have updated this * update swagger command * update bun to latest version * fix embed to work the same as before with new bun Signed-off-by: kim <grufwub@gmail.com> Co-authored-by: tsmethurst <tobi.smethurst@protonmail.com>
This commit is contained in:
		
					parent
					
						
							
								00d38855d4
							
						
					
				
			
			
				commit
				
					
						a156188b3e
					
				
			
		
					 1135 changed files with 258905 additions and 137146 deletions
				
			
		
							
								
								
									
										44
									
								
								vendor/github.com/gin-gonic/gin/render/json.go
									
										
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										44
									
								
								vendor/github.com/gin-gonic/gin/render/json.go
									
										
									
										generated
									
									
										vendored
									
									
								
							|  | @ -1,4 +1,4 @@ | |||
| // Copyright 2014 Manu Martinez-Almeida.  All rights reserved. | ||||
| // Copyright 2014 Manu Martinez-Almeida. All rights reserved. | ||||
| // Use of this source code is governed by a MIT style | ||||
| // license that can be found in the LICENSE file. | ||||
| 
 | ||||
|  | @ -16,39 +16,41 @@ import ( | |||
| 
 | ||||
| // JSON contains the given interface object. | ||||
| type JSON struct { | ||||
| 	Data interface{} | ||||
| 	Data any | ||||
| } | ||||
| 
 | ||||
| // IndentedJSON contains the given interface object. | ||||
| type IndentedJSON struct { | ||||
| 	Data interface{} | ||||
| 	Data any | ||||
| } | ||||
| 
 | ||||
| // SecureJSON contains the given interface object and its prefix. | ||||
| type SecureJSON struct { | ||||
| 	Prefix string | ||||
| 	Data   interface{} | ||||
| 	Data   any | ||||
| } | ||||
| 
 | ||||
| // JsonpJSON contains the given interface object its callback. | ||||
| type JsonpJSON struct { | ||||
| 	Callback string | ||||
| 	Data     interface{} | ||||
| 	Data     any | ||||
| } | ||||
| 
 | ||||
| // AsciiJSON contains the given interface object. | ||||
| type AsciiJSON struct { | ||||
| 	Data interface{} | ||||
| 	Data any | ||||
| } | ||||
| 
 | ||||
| // PureJSON contains the given interface object. | ||||
| type PureJSON struct { | ||||
| 	Data interface{} | ||||
| 	Data any | ||||
| } | ||||
| 
 | ||||
| var jsonContentType = []string{"application/json; charset=utf-8"} | ||||
| var jsonpContentType = []string{"application/javascript; charset=utf-8"} | ||||
| var jsonAsciiContentType = []string{"application/json"} | ||||
| var ( | ||||
| 	jsonContentType      = []string{"application/json; charset=utf-8"} | ||||
| 	jsonpContentType     = []string{"application/javascript; charset=utf-8"} | ||||
| 	jsonASCIIContentType = []string{"application/json"} | ||||
| ) | ||||
| 
 | ||||
| // Render (JSON) writes data with custom ContentType. | ||||
| func (r JSON) Render(w http.ResponseWriter) (err error) { | ||||
|  | @ -64,7 +66,7 @@ func (r JSON) WriteContentType(w http.ResponseWriter) { | |||
| } | ||||
| 
 | ||||
| // WriteJSON marshals the given interface object and writes it with custom ContentType. | ||||
| func WriteJSON(w http.ResponseWriter, obj interface{}) error { | ||||
| func WriteJSON(w http.ResponseWriter, obj any) error { | ||||
| 	writeContentType(w, jsonContentType) | ||||
| 	jsonBytes, err := json.Marshal(obj) | ||||
| 	if err != nil { | ||||
|  | @ -100,8 +102,7 @@ func (r SecureJSON) Render(w http.ResponseWriter) error { | |||
| 	// if the jsonBytes is array values | ||||
| 	if bytes.HasPrefix(jsonBytes, bytesconv.StringToBytes("[")) && bytes.HasSuffix(jsonBytes, | ||||
| 		bytesconv.StringToBytes("]")) { | ||||
| 		_, err = w.Write(bytesconv.StringToBytes(r.Prefix)) | ||||
| 		if err != nil { | ||||
| 		if _, err = w.Write(bytesconv.StringToBytes(r.Prefix)); err != nil { | ||||
| 			return err | ||||
| 		} | ||||
| 	} | ||||
|  | @ -128,20 +129,19 @@ func (r JsonpJSON) Render(w http.ResponseWriter) (err error) { | |||
| 	} | ||||
| 
 | ||||
| 	callback := template.JSEscapeString(r.Callback) | ||||
| 	_, err = w.Write(bytesconv.StringToBytes(callback)) | ||||
| 	if err != nil { | ||||
| 	if _, err = w.Write(bytesconv.StringToBytes(callback)); err != nil { | ||||
| 		return err | ||||
| 	} | ||||
| 	_, err = w.Write(bytesconv.StringToBytes("(")) | ||||
| 	if err != nil { | ||||
| 
 | ||||
| 	if _, err = w.Write(bytesconv.StringToBytes("(")); err != nil { | ||||
| 		return err | ||||
| 	} | ||||
| 	_, err = w.Write(ret) | ||||
| 	if err != nil { | ||||
| 
 | ||||
| 	if _, err = w.Write(ret); err != nil { | ||||
| 		return err | ||||
| 	} | ||||
| 	_, err = w.Write(bytesconv.StringToBytes(");")) | ||||
| 	if err != nil { | ||||
| 
 | ||||
| 	if _, err = w.Write(bytesconv.StringToBytes(");")); err != nil { | ||||
| 		return err | ||||
| 	} | ||||
| 
 | ||||
|  | @ -176,7 +176,7 @@ func (r AsciiJSON) Render(w http.ResponseWriter) (err error) { | |||
| 
 | ||||
| // WriteContentType (AsciiJSON) writes JSON ContentType. | ||||
| func (r AsciiJSON) WriteContentType(w http.ResponseWriter) { | ||||
| 	writeContentType(w, jsonAsciiContentType) | ||||
| 	writeContentType(w, jsonASCIIContentType) | ||||
| } | ||||
| 
 | ||||
| // Render (PureJSON) writes custom ContentType and encodes the given interface object. | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue