2020-09-08 15:45:10 +00:00
// Copyright 2019 The Gitea Authors. All rights reserved.
2022-11-27 18:20:29 +00:00
// SPDX-License-Identifier: MIT
2020-09-08 15:45:10 +00:00
package setting
import (
2023-06-14 03:42:38 +00:00
"fmt"
2020-09-08 15:45:10 +00:00
"time"
"code.gitea.io/gitea/modules/generate"
)
2024-10-30 05:41:55 +00:00
// LFS represents the server-side configuration for Git LFS.
// Ideally these options should be in a section like "[lfs_server]",
// but they are in "[server]" section due to historical reasons.
// Could be refactored in the future while keeping backwards compatibility.
2020-09-08 15:45:10 +00:00
var LFS = struct {
2024-02-18 17:39:04 +00:00
StartServer bool ` ini:"LFS_START_SERVER" `
2024-09-27 14:27:37 +00:00
AllowPureSSH bool ` ini:"LFS_ALLOW_PURE_SSH" `
2024-02-18 17:39:04 +00:00
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" `
2024-10-30 05:41:55 +00:00
MaxBatchSize int ` ini:"LFS_MAX_BATCH_SIZE" `
2020-09-08 15:45:10 +00:00
2023-06-14 03:42:38 +00:00
Storage * Storage
2020-09-29 09:05:13 +00:00
} { }
2020-09-08 15:45:10 +00:00
2024-10-30 05:41:55 +00:00
// LFSClient represents configuration for Gitea's LFS clients, for example: mirroring upstream Git LFS
var LFSClient = struct {
2024-11-04 04:49:08 +00:00
BatchSize int ` ini:"BATCH_SIZE" `
BatchOperationConcurrency int ` ini:"BATCH_OPERATION_CONCURRENCY" `
2024-10-30 05:41:55 +00:00
} { }
2023-06-14 03:42:38 +00:00
func loadLFSFrom ( rootCfg ConfigProvider ) error {
2024-10-30 05:41:55 +00:00
mustMapSetting ( rootCfg , "lfs_client" , & LFSClient )
mustMapSetting ( rootCfg , "server" , & LFS )
2023-02-19 16:12:01 +00:00
sec := rootCfg . Section ( "server" )
2020-09-08 15:45:10 +00:00
2023-06-14 03:42:38 +00:00
lfsSec , _ := rootCfg . GetSection ( "lfs" )
2020-09-29 09:05:13 +00:00
2020-10-13 03:58:34 +00:00
// Specifically default PATH to LFS_CONTENT_PATH
2023-02-20 22:18:26 +00: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
2023-07-26 03:53:37 +00:00
deprecatedSetting ( rootCfg , "server" , "LFS_CONTENT_PATH" , "lfs" , "PATH" , "v1.19.0" )
if val := sec . Key ( "LFS_CONTENT_PATH" ) . String ( ) ; val != "" {
if lfsSec == nil {
lfsSec = rootCfg . Section ( "lfs" )
}
lfsSec . Key ( "PATH" ) . MustString ( val )
}
2020-09-29 09:05:13 +00:00
2023-06-14 03:42:38 +00:00
var err error
LFS . Storage , err = getStorage ( rootCfg , "lfs" , "" , lfsSec )
if err != nil {
return err
}
2020-09-29 09:05:13 +00:00
2020-10-13 03:58:34 +00:00
// Rest of LFS service settings
2020-09-08 15:45:10 +00:00
if LFS . LocksPagingNum == 0 {
LFS . LocksPagingNum = 50
}
2024-10-30 05:41:55 +00:00
if LFSClient . BatchSize < 1 {
LFSClient . BatchSize = 20
}
2024-11-04 04:49:08 +00:00
if LFSClient . BatchOperationConcurrency < 1 {
2024-11-05 13:10:57 +00:00
// match the default git-lfs's `lfs.concurrenttransfers` https://github.com/git-lfs/git-lfs/blob/main/docs/man/git-lfs-config.adoc#upload-and-download-transfer-settings
LFSClient . BatchOperationConcurrency = 8
2024-11-04 04:49:08 +00:00
}
2023-05-10 14:23:47 +00:00
LFS . HTTPAuthExpiry = sec . Key ( "LFS_HTTP_AUTH_EXPIRY" ) . MustDuration ( 24 * time . Hour )
2020-09-08 15:45:10 +00:00
2023-08-14 10:30:16 +00:00
if ! LFS . StartServer || ! InstallLock {
2023-06-14 03:42:38 +00:00
return nil
}
2024-02-18 17:39:04 +00:00
jwtSecretBase64 := loadSecret ( rootCfg . Section ( "server" ) , "LFS_JWT_SECRET_URI" , "LFS_JWT_SECRET" )
LFS . JWTSecretBytes , err = generate . DecodeJwtSecretBase64 ( jwtSecretBase64 )
2023-08-14 10:30:16 +00:00
if err != nil {
2024-02-18 17:39:04 +00:00
LFS . JWTSecretBytes , jwtSecretBase64 , err = generate . NewJwtSecretWithBase64 ( )
2023-06-14 03:42:38 +00:00
if err != nil {
2023-06-21 02:31:40 +00:00
return fmt . Errorf ( "error generating JWT Secret for custom config: %v" , err )
2023-06-14 03:42:38 +00:00
}
// Save secret
2023-06-21 02:31:40 +00:00
saveCfg , err := rootCfg . PrepareSaving ( )
if err != nil {
return fmt . Errorf ( "error saving JWT Secret for custom config: %v" , err )
}
2024-02-18 17:39:04 +00:00
rootCfg . Section ( "server" ) . Key ( "LFS_JWT_SECRET" ) . SetValue ( jwtSecretBase64 )
saveCfg . Section ( "server" ) . Key ( "LFS_JWT_SECRET" ) . SetValue ( jwtSecretBase64 )
2023-06-21 02:31:40 +00:00
if err := saveCfg . Save ( ) ; err != nil {
return fmt . Errorf ( "error saving JWT Secret for custom config: %v" , err )
2020-09-08 15:45:10 +00:00
}
}
2023-06-14 03:42:38 +00:00
return nil
2020-09-08 15:45:10 +00:00
}