2020-10-14 16:07:51 +03:00
// Copyright 2020 The Gitea Authors. All rights reserved.
2022-11-27 21:20:29 +03:00
// SPDX-License-Identifier: MIT
2020-10-14 16:07:51 +03:00
package setting
// settings
var (
// Picture settings
Avatar = struct {
Storage
2021-12-16 05:18:38 +03:00
MaxWidth int
MaxHeight int
MaxFileSize int64
RenderedSizeFactor int
2020-10-14 16:07:51 +03:00
} {
2021-12-16 05:18:38 +03:00
MaxWidth : 4096 ,
MaxHeight : 3072 ,
MaxFileSize : 1048576 ,
RenderedSizeFactor : 3 ,
2020-10-14 16:07:51 +03:00
}
GravatarSource string
2022-10-17 02:29:26 +03:00
DisableGravatar bool // Depreciated: migrated to database
EnableFederatedAvatar bool // Depreciated: migrated to database
2020-10-14 16:07:51 +03:00
RepoAvatar = struct {
Storage
Fallback string
FallbackImage string
} { }
)
2023-02-19 19:12:01 +03:00
func loadPictureFrom ( rootCfg ConfigProvider ) {
sec := rootCfg . Section ( "picture" )
2020-10-14 16:07:51 +03:00
2023-02-19 19:12:01 +03:00
avatarSec := rootCfg . Section ( "avatar" )
2020-10-14 16:07:51 +03:00
storageType := sec . Key ( "AVATAR_STORAGE_TYPE" ) . MustString ( "" )
// Specifically default PATH to AVATAR_UPLOAD_PATH
avatarSec . Key ( "PATH" ) . MustString (
sec . Key ( "AVATAR_UPLOAD_PATH" ) . String ( ) )
2023-02-19 19:12:01 +03:00
Avatar . Storage = getStorage ( rootCfg , "avatars" , storageType , avatarSec )
2020-10-14 16:07:51 +03:00
Avatar . MaxWidth = sec . Key ( "AVATAR_MAX_WIDTH" ) . MustInt ( 4096 )
Avatar . MaxHeight = sec . Key ( "AVATAR_MAX_HEIGHT" ) . MustInt ( 3072 )
Avatar . MaxFileSize = sec . Key ( "AVATAR_MAX_FILE_SIZE" ) . MustInt64 ( 1048576 )
2021-12-16 05:18:38 +03:00
Avatar . RenderedSizeFactor = sec . Key ( "AVATAR_RENDERED_SIZE_FACTOR" ) . MustInt ( 3 )
2020-10-14 16:07:51 +03:00
switch source := sec . Key ( "GRAVATAR_SOURCE" ) . MustString ( "gravatar" ) ; source {
case "duoshuo" :
GravatarSource = "http://gravatar.duoshuo.com/avatar/"
case "gravatar" :
GravatarSource = "https://secure.gravatar.com/avatar/"
case "libravatar" :
GravatarSource = "https://seccdn.libravatar.org/avatar/"
default :
GravatarSource = source
}
2022-10-17 02:29:26 +03:00
DisableGravatar = sec . Key ( "DISABLE_GRAVATAR" ) . MustBool ( GetDefaultDisableGravatar ( ) )
2023-02-19 19:12:01 +03:00
deprecatedSettingDB ( rootCfg , "" , "DISABLE_GRAVATAR" )
2022-10-17 02:29:26 +03:00
EnableFederatedAvatar = sec . Key ( "ENABLE_FEDERATED_AVATAR" ) . MustBool ( GetDefaultEnableFederatedAvatar ( DisableGravatar ) )
2023-02-19 19:12:01 +03:00
deprecatedSettingDB ( rootCfg , "" , "ENABLE_FEDERATED_AVATAR" )
2020-10-14 16:07:51 +03:00
2023-02-19 19:12:01 +03:00
loadRepoAvatarFrom ( rootCfg )
2020-10-14 16:07:51 +03:00
}
2022-10-17 02:29:26 +03:00
func GetDefaultDisableGravatar ( ) bool {
2023-01-01 15:19:23 +03:00
return OfflineMode
2022-10-17 02:29:26 +03:00
}
func GetDefaultEnableFederatedAvatar ( disableGravatar bool ) bool {
v := ! InstallLock
if OfflineMode {
v = false
}
if disableGravatar {
v = false
}
return v
}
2023-02-19 19:12:01 +03:00
func loadRepoAvatarFrom ( rootCfg ConfigProvider ) {
sec := rootCfg . Section ( "picture" )
2020-10-14 16:07:51 +03:00
2023-02-19 19:12:01 +03:00
repoAvatarSec := rootCfg . Section ( "repo-avatar" )
2020-10-14 16:07:51 +03:00
storageType := sec . Key ( "REPOSITORY_AVATAR_STORAGE_TYPE" ) . MustString ( "" )
// Specifically default PATH to AVATAR_UPLOAD_PATH
repoAvatarSec . Key ( "PATH" ) . MustString (
sec . Key ( "REPOSITORY_AVATAR_UPLOAD_PATH" ) . String ( ) )
2023-02-19 19:12:01 +03:00
RepoAvatar . Storage = getStorage ( rootCfg , "repo-avatars" , storageType , repoAvatarSec )
2020-10-14 16:07:51 +03:00
RepoAvatar . Fallback = sec . Key ( "REPOSITORY_AVATAR_FALLBACK" ) . MustString ( "none" )
2021-04-28 15:35:06 +03:00
RepoAvatar . FallbackImage = sec . Key ( "REPOSITORY_AVATAR_FALLBACK_IMAGE" ) . MustString ( "/assets/img/repo_default.png" )
2020-10-14 16:07:51 +03:00
}