2020-09-08 08:45:10 -07:00
// Copyright 2019 The Gitea Authors. All rights reserved.
2022-11-27 11:20:29 -07:00
// SPDX-License-Identifier: MIT
2020-09-08 08:45:10 -07:00
package setting
import (
2023-06-13 20:42:38 -07:00
"fmt"
2020-09-08 08:45:10 -07:00
"time"
"code.gitea.io/gitea/modules/generate"
)
2024-10-29 22:41:55 -07: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 08:45:10 -07:00
var LFS = struct {
2024-02-18 10:39:04 -07:00
StartServer bool ` ini:"LFS_START_SERVER" `
2024-09-27 07:27:37 -07:00
AllowPureSSH bool ` ini:"LFS_ALLOW_PURE_SSH" `
2024-02-18 10:39:04 -07: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-29 22:41:55 -07:00
MaxBatchSize int ` ini:"LFS_MAX_BATCH_SIZE" `
2020-09-08 08:45:10 -07:00
2023-06-13 20:42:38 -07:00
Storage * Storage
2020-09-29 02:05:13 -07:00
} { }
2020-09-08 08:45:10 -07:00
2024-10-29 22:41:55 -07:00
// LFSClient represents configuration for Gitea's LFS clients, for example: mirroring upstream Git LFS
var LFSClient = struct {
2024-11-03 21:49:08 -07:00
BatchSize int ` ini:"BATCH_SIZE" `
BatchOperationConcurrency int ` ini:"BATCH_OPERATION_CONCURRENCY" `
2024-10-29 22:41:55 -07:00
} { }
2023-06-13 20:42:38 -07:00
func loadLFSFrom ( rootCfg ConfigProvider ) error {
2024-10-29 22:41:55 -07:00
mustMapSetting ( rootCfg , "lfs_client" , & LFSClient )
mustMapSetting ( rootCfg , "server" , & LFS )
2023-02-19 09:12:01 -07:00
sec := rootCfg . Section ( "server" )
2020-09-08 08:45:10 -07:00
2023-06-13 20:42:38 -07:00
lfsSec , _ := rootCfg . GetSection ( "lfs" )
2020-09-29 02:05:13 -07:00
2020-10-12 20:58:34 -07:00
// Specifically default PATH to LFS_CONTENT_PATH
2023-02-20 15:18:26 -07: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-25 20:53:37 -07: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 02:05:13 -07:00
2023-06-13 20:42:38 -07:00
var err error
LFS . Storage , err = getStorage ( rootCfg , "lfs" , "" , lfsSec )
if err != nil {
return err
}
2020-09-29 02:05:13 -07:00
2020-10-12 20:58:34 -07:00
// Rest of LFS service settings
2020-09-08 08:45:10 -07:00
if LFS . LocksPagingNum == 0 {
LFS . LocksPagingNum = 50
}
2024-10-29 22:41:55 -07:00
if LFSClient . BatchSize < 1 {
LFSClient . BatchSize = 20
}
2024-11-03 21:49:08 -07:00
if LFSClient . BatchOperationConcurrency < 1 {
2024-11-05 06:10:57 -07: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-03 21:49:08 -07:00
}
2023-05-10 07:23:47 -07:00
LFS . HTTPAuthExpiry = sec . Key ( "LFS_HTTP_AUTH_EXPIRY" ) . MustDuration ( 24 * time . Hour )
2020-09-08 08:45:10 -07:00
2023-08-14 03:30:16 -07:00
if ! LFS . StartServer || ! InstallLock {
2023-06-13 20:42:38 -07:00
return nil
}
2024-02-18 10:39:04 -07:00
jwtSecretBase64 := loadSecret ( rootCfg . Section ( "server" ) , "LFS_JWT_SECRET_URI" , "LFS_JWT_SECRET" )
LFS . JWTSecretBytes , err = generate . DecodeJwtSecretBase64 ( jwtSecretBase64 )
2023-08-14 03:30:16 -07:00
if err != nil {
2024-02-18 10:39:04 -07:00
LFS . JWTSecretBytes , jwtSecretBase64 , err = generate . NewJwtSecretWithBase64 ( )
2023-06-13 20:42:38 -07:00
if err != nil {
2023-06-20 19:31:40 -07:00
return fmt . Errorf ( "error generating JWT Secret for custom config: %v" , err )
2023-06-13 20:42:38 -07:00
}
// Save secret
2023-06-20 19:31:40 -07:00
saveCfg , err := rootCfg . PrepareSaving ( )
if err != nil {
return fmt . Errorf ( "error saving JWT Secret for custom config: %v" , err )
}
2024-02-18 10:39:04 -07:00
rootCfg . Section ( "server" ) . Key ( "LFS_JWT_SECRET" ) . SetValue ( jwtSecretBase64 )
saveCfg . Section ( "server" ) . Key ( "LFS_JWT_SECRET" ) . SetValue ( jwtSecretBase64 )
2023-06-20 19:31:40 -07:00
if err := saveCfg . Save ( ) ; err != nil {
return fmt . Errorf ( "error saving JWT Secret for custom config: %v" , err )
2020-09-08 08:45:10 -07:00
}
}
2023-06-13 20:42:38 -07:00
return nil
2020-09-08 08:45:10 -07:00
}