mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-26 12:27:06 +00:00 
			
		
		
		
	LFS support to be stored on minio (#12518)
* LFS support to be stored on minio * Fix test * Fix lint * Fix lint * Fix check * Fix test * Update documents and add migration for LFS * Fix some bugs
This commit is contained in:
		| @@ -12,6 +12,7 @@ import ( | ||||
| 	"code.gitea.io/gitea/models" | ||||
| 	"code.gitea.io/gitea/modules/base" | ||||
| 	"code.gitea.io/gitea/modules/setting" | ||||
| 	"code.gitea.io/gitea/modules/storage" | ||||
| ) | ||||
|  | ||||
| // ReadPointerFile will return a partially filled LFSMetaObject if the provided reader is a pointer file | ||||
| @@ -53,9 +54,10 @@ func IsPointerFile(buf *[]byte) *models.LFSMetaObject { | ||||
| 		return nil | ||||
| 	} | ||||
|  | ||||
| 	contentStore := &ContentStore{BasePath: setting.LFS.ContentPath} | ||||
| 	contentStore := &ContentStore{ObjectStorage: storage.LFS} | ||||
| 	meta := &models.LFSMetaObject{Oid: oid, Size: size} | ||||
| 	if !contentStore.Exists(meta) { | ||||
| 	exist, err := contentStore.Exists(meta) | ||||
| 	if err != nil || !exist { | ||||
| 		return nil | ||||
| 	} | ||||
|  | ||||
| @@ -64,6 +66,6 @@ func IsPointerFile(buf *[]byte) *models.LFSMetaObject { | ||||
|  | ||||
| // ReadMetaObject will read a models.LFSMetaObject and return a reader | ||||
| func ReadMetaObject(meta *models.LFSMetaObject) (io.ReadCloser, error) { | ||||
| 	contentStore := &ContentStore{BasePath: setting.LFS.ContentPath} | ||||
| 	contentStore := &ContentStore{ObjectStorage: storage.LFS} | ||||
| 	return contentStore.Get(meta, 0) | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Lunny Xiao
					Lunny Xiao