mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	Add avif image file support (#32508)
Most modern browsers support it now ` Update ALLOWED_TYPES #96 ` https://gitea.com/gitea/docs/pulls/96 --------- Co-authored-by: silverwind <me@silverwind.io>
This commit is contained in:
		| @@ -3,33 +3,33 @@ | ||||
|  | ||||
| package setting | ||||
|  | ||||
| // Attachment settings | ||||
| var Attachment = struct { | ||||
| type AttachmentSettingType struct { | ||||
| 	Storage      *Storage | ||||
| 	AllowedTypes string | ||||
| 	MaxSize      int64 | ||||
| 	MaxFiles     int | ||||
| 	Enabled      bool | ||||
| }{ | ||||
| 	Storage:      &Storage{}, | ||||
| 	AllowedTypes: ".cpuprofile,.csv,.dmp,.docx,.fodg,.fodp,.fods,.fodt,.gif,.gz,.jpeg,.jpg,.json,.jsonc,.log,.md,.mov,.mp4,.odf,.odg,.odp,.ods,.odt,.patch,.pdf,.png,.pptx,.svg,.tgz,.txt,.webm,.xls,.xlsx,.zip", | ||||
| 	MaxSize:      2048, | ||||
| 	MaxFiles:     5, | ||||
| 	Enabled:      true, | ||||
| } | ||||
|  | ||||
| var Attachment AttachmentSettingType | ||||
|  | ||||
| func loadAttachmentFrom(rootCfg ConfigProvider) (err error) { | ||||
| 	Attachment = AttachmentSettingType{ | ||||
| 		AllowedTypes: ".avif,.cpuprofile,.csv,.dmp,.docx,.fodg,.fodp,.fods,.fodt,.gif,.gz,.jpeg,.jpg,.json,.jsonc,.log,.md,.mov,.mp4,.odf,.odg,.odp,.ods,.odt,.patch,.pdf,.png,.pptx,.svg,.tgz,.txt,.webm,.webp,.xls,.xlsx,.zip", | ||||
| 		MaxSize:      2048, | ||||
| 		MaxFiles:     5, | ||||
| 		Enabled:      true, | ||||
| 	} | ||||
| 	sec, _ := rootCfg.GetSection("attachment") | ||||
| 	if sec == nil { | ||||
| 		Attachment.Storage, err = getStorage(rootCfg, "attachments", "", nil) | ||||
| 		return err | ||||
| 	} | ||||
|  | ||||
| 	Attachment.AllowedTypes = sec.Key("ALLOWED_TYPES").MustString(".cpuprofile,.csv,.dmp,.docx,.fodg,.fodp,.fods,.fodt,.gif,.gz,.jpeg,.jpg,.json,.jsonc,.log,.md,.mov,.mp4,.odf,.odg,.odp,.ods,.odt,.patch,.pdf,.png,.pptx,.svg,.tgz,.txt,.webm,.xls,.xlsx,.zip") | ||||
| 	Attachment.MaxSize = sec.Key("MAX_SIZE").MustInt64(2048) | ||||
| 	Attachment.MaxFiles = sec.Key("MAX_FILES").MustInt(5) | ||||
| 	Attachment.Enabled = sec.Key("ENABLED").MustBool(true) | ||||
|  | ||||
| 	Attachment.AllowedTypes = sec.Key("ALLOWED_TYPES").MustString(Attachment.AllowedTypes) | ||||
| 	Attachment.MaxSize = sec.Key("MAX_SIZE").MustInt64(Attachment.MaxSize) | ||||
| 	Attachment.MaxFiles = sec.Key("MAX_FILES").MustInt(Attachment.MaxFiles) | ||||
| 	Attachment.Enabled = sec.Key("ENABLED").MustBool(Attachment.Enabled) | ||||
| 	Attachment.Storage, err = getStorage(rootCfg, "attachments", "", sec) | ||||
| 	return err | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user