mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-30 06:38:37 -04:00 
			
		
		
		
	* Add a storage layer for attachments * Fix some bug * fix test * Fix copyright head and lint * Fix bug * Add setting for minio and flags for migrate-storage * Add documents * fix lint * Add test for minio store type on attachments * fix test * fix test * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Add warning when storage migrated successfully * Fix drone * fix test * rebase * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * remove log on xorm * Fi download bug * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * refactor the codes * add trace * Fix test * Add URL function to serve attachments directly from S3/Minio * Add ability to enable/disable redirection in attachment configuration * Fix typo * Add a storage layer for attachments * Add setting for minio and flags for migrate-storage * fix lint * Add test for minio store type on attachments * Apply suggestions from code review Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> * Fix drone * fix test * Fix test * display the error on console * Move minio test to amd64 since minio docker don't support arm64 * don't change unrelated files * Fix lint * Fix build * update go.mod and go.sum * Use github.com/minio/minio-go/v6 * Remove unused function * Upgrade minio to v7 and some other improvements * fix lint * Fix go mod Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: Tyler <tystuyfzand@gmail.com>
		
			
				
	
	
		
			100 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			100 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
| //+build !jsoniter_sloppy
 | |
| 
 | |
| package jsoniter
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| 	"io"
 | |
| )
 | |
| 
 | |
| func (iter *Iterator) skipNumber() {
 | |
| 	if !iter.trySkipNumber() {
 | |
| 		iter.unreadByte()
 | |
| 		if iter.Error != nil && iter.Error != io.EOF {
 | |
| 			return
 | |
| 		}
 | |
| 		iter.ReadFloat64()
 | |
| 		if iter.Error != nil && iter.Error != io.EOF {
 | |
| 			iter.Error = nil
 | |
| 			iter.ReadBigFloat()
 | |
| 		}
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func (iter *Iterator) trySkipNumber() bool {
 | |
| 	dotFound := false
 | |
| 	for i := iter.head; i < iter.tail; i++ {
 | |
| 		c := iter.buf[i]
 | |
| 		switch c {
 | |
| 		case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9':
 | |
| 		case '.':
 | |
| 			if dotFound {
 | |
| 				iter.ReportError("validateNumber", `more than one dot found in number`)
 | |
| 				return true // already failed
 | |
| 			}
 | |
| 			if i+1 == iter.tail {
 | |
| 				return false
 | |
| 			}
 | |
| 			c = iter.buf[i+1]
 | |
| 			switch c {
 | |
| 			case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9':
 | |
| 			default:
 | |
| 				iter.ReportError("validateNumber", `missing digit after dot`)
 | |
| 				return true // already failed
 | |
| 			}
 | |
| 			dotFound = true
 | |
| 		default:
 | |
| 			switch c {
 | |
| 			case ',', ']', '}', ' ', '\t', '\n', '\r':
 | |
| 				if iter.head == i {
 | |
| 					return false // if - without following digits
 | |
| 				}
 | |
| 				iter.head = i
 | |
| 				return true // must be valid
 | |
| 			}
 | |
| 			return false // may be invalid
 | |
| 		}
 | |
| 	}
 | |
| 	return false
 | |
| }
 | |
| 
 | |
| func (iter *Iterator) skipString() {
 | |
| 	if !iter.trySkipString() {
 | |
| 		iter.unreadByte()
 | |
| 		iter.ReadString()
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func (iter *Iterator) trySkipString() bool {
 | |
| 	for i := iter.head; i < iter.tail; i++ {
 | |
| 		c := iter.buf[i]
 | |
| 		if c == '"' {
 | |
| 			iter.head = i + 1
 | |
| 			return true // valid
 | |
| 		} else if c == '\\' {
 | |
| 			return false
 | |
| 		} else if c < ' ' {
 | |
| 			iter.ReportError("trySkipString",
 | |
| 				fmt.Sprintf(`invalid control character found: %d`, c))
 | |
| 			return true // already failed
 | |
| 		}
 | |
| 	}
 | |
| 	return false
 | |
| }
 | |
| 
 | |
| func (iter *Iterator) skipObject() {
 | |
| 	iter.unreadByte()
 | |
| 	iter.ReadObjectCB(func(iter *Iterator, field string) bool {
 | |
| 		iter.Skip()
 | |
| 		return true
 | |
| 	})
 | |
| }
 | |
| 
 | |
| func (iter *Iterator) skipArray() {
 | |
| 	iter.unreadByte()
 | |
| 	iter.ReadArrayCB(func(iter *Iterator) bool {
 | |
| 		iter.Skip()
 | |
| 		return true
 | |
| 	})
 | |
| }
 |