2020-09-08 18:45:10 +03:00
// Copyright 2019 The Gitea Authors. All rights reserved.
2022-11-27 21:20:29 +03:00
// SPDX-License-Identifier: MIT
2020-09-08 18:45:10 +03:00
package setting
import (
"encoding/base64"
"time"
"code.gitea.io/gitea/modules/generate"
"code.gitea.io/gitea/modules/log"
)
// LFS represents the configuration for Git LFS
var LFS = struct {
StartServer bool ` ini:"LFS_START_SERVER" `
JWTSecretBase64 string ` ini:"LFS_JWT_SECRET" `
JWTSecretBytes [ ] byte ` ini:"-" `
HTTPAuthExpiry time . Duration ` ini:"LFS_HTTP_AUTH_EXPIRY" `
MaxFileSize int64 ` ini:"LFS_MAX_FILE_SIZE" `
LocksPagingNum int ` ini:"LFS_LOCKS_PAGING_NUM" `
2020-09-29 12:05:13 +03:00
Storage
} { }
2020-09-08 18:45:10 +03:00
2023-02-19 19:12:01 +03:00
func loadLFSFrom ( rootCfg ConfigProvider ) {
sec := rootCfg . Section ( "server" )
2020-09-08 18:45:10 +03:00
if err := sec . MapTo ( & LFS ) ; err != nil {
log . Fatal ( "Failed to map LFS settings: %v" , err )
}
2023-02-19 19:12:01 +03:00
lfsSec := rootCfg . Section ( "lfs" )
2020-10-13 06:58:34 +03:00
storageType := lfsSec . Key ( "STORAGE_TYPE" ) . MustString ( "" )
2020-09-29 12:05:13 +03:00
2020-10-13 06:58:34 +03:00
// Specifically default PATH to LFS_CONTENT_PATH
2023-02-21 01:18:26 +03:00
// DEPRECATED should not be removed because users maybe upgrade from lower version to the latest version
// if these are removed, the warning will not be shown
deprecatedSetting ( rootCfg , "server" , "LFS_CONTENT_PATH" , "lfs" , "PATH" , "v1.19.0" )
2023-04-25 18:06:39 +03:00
lfsSec . Key ( "PATH" ) . MustString ( sec . Key ( "LFS_CONTENT_PATH" ) . String ( ) )
2020-09-29 12:05:13 +03:00
2023-02-19 19:12:01 +03:00
LFS . Storage = getStorage ( rootCfg , "lfs" , storageType , lfsSec )
2020-09-29 12:05:13 +03:00
2020-10-13 06:58:34 +03:00
// Rest of LFS service settings
2020-09-08 18:45:10 +03:00
if LFS . LocksPagingNum == 0 {
LFS . LocksPagingNum = 50
}
LFS . HTTPAuthExpiry = sec . Key ( "LFS_HTTP_AUTH_EXPIRY" ) . MustDuration ( 20 * time . Minute )
if LFS . StartServer {
LFS . JWTSecretBytes = make ( [ ] byte , 32 )
n , err := base64 . RawURLEncoding . Decode ( LFS . JWTSecretBytes , [ ] byte ( LFS . JWTSecretBase64 ) )
if err != nil || n != 32 {
2021-06-18 00:56:46 +03:00
LFS . JWTSecretBase64 , err = generate . NewJwtSecretBase64 ( )
2020-09-08 18:45:10 +03:00
if err != nil {
log . Fatal ( "Error generating JWT Secret for custom config: %v" , err )
return
}
// Save secret
2023-04-25 18:06:39 +03:00
sec . Key ( "LFS_JWT_SECRET" ) . SetValue ( LFS . JWTSecretBase64 )
if err := rootCfg . Save ( ) ; err != nil {
log . Fatal ( "Error saving JWT Secret for custom config: %v" , err )
return
}
2020-09-08 18:45:10 +03:00
}
}
}