2022-03-30 14:12:47 +05:30
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2022-03-30 14:12:47 +05:30
|
|
|
|
|
|
|
package packages
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
"path"
|
2022-11-15 13:38:59 +05:30
|
|
|
"strings"
|
2022-03-30 14:12:47 +05:30
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/storage"
|
2022-11-15 13:38:59 +05:30
|
|
|
"code.gitea.io/gitea/modules/util"
|
2022-03-30 14:12:47 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
// BlobHash256Key is the key to address a blob content
|
|
|
|
type BlobHash256Key string
|
|
|
|
|
|
|
|
// ContentStore is a wrapper around ObjectStorage
|
|
|
|
type ContentStore struct {
|
|
|
|
store storage.ObjectStorage
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewContentStore creates the default package store
|
|
|
|
func NewContentStore() *ContentStore {
|
|
|
|
contentStore := &ContentStore{storage.Packages}
|
|
|
|
return contentStore
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get gets a package blob
|
|
|
|
func (s *ContentStore) Get(key BlobHash256Key) (storage.Object, error) {
|
2022-08-16 09:35:15 +05:30
|
|
|
return s.store.Open(KeyToRelativePath(key))
|
2022-03-30 14:12:47 +05:30
|
|
|
}
|
|
|
|
|
2022-11-25 11:17:46 +05:30
|
|
|
// FIXME: Workaround to be removed in v1.20
|
|
|
|
// https://github.com/go-gitea/gitea/issues/19586
|
|
|
|
func (s *ContentStore) Has(key BlobHash256Key) error {
|
|
|
|
_, err := s.store.Stat(KeyToRelativePath(key))
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-03-30 14:12:47 +05:30
|
|
|
// Save stores a package blob
|
|
|
|
func (s *ContentStore) Save(key BlobHash256Key, r io.Reader, size int64) error {
|
2022-08-16 09:35:15 +05:30
|
|
|
_, err := s.store.Save(KeyToRelativePath(key), r, size)
|
2022-03-30 14:12:47 +05:30
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete deletes a package blob
|
|
|
|
func (s *ContentStore) Delete(key BlobHash256Key) error {
|
2022-08-16 09:35:15 +05:30
|
|
|
return s.store.Delete(KeyToRelativePath(key))
|
2022-03-30 14:12:47 +05:30
|
|
|
}
|
|
|
|
|
2022-08-16 09:35:15 +05:30
|
|
|
// KeyToRelativePath converts the sha256 key aabb000000... to aa/bb/aabb000000...
|
|
|
|
func KeyToRelativePath(key BlobHash256Key) string {
|
2022-03-30 14:12:47 +05:30
|
|
|
return path.Join(string(key)[0:2], string(key)[2:4], string(key))
|
|
|
|
}
|
2022-11-15 13:38:59 +05:30
|
|
|
|
|
|
|
// RelativePathToKey converts a relative path aa/bb/aabb000000... to the sha256 key aabb000000...
|
|
|
|
func RelativePathToKey(relativePath string) (BlobHash256Key, error) {
|
|
|
|
parts := strings.SplitN(relativePath, "/", 3)
|
|
|
|
if len(parts) != 3 || len(parts[0]) != 2 || len(parts[1]) != 2 || len(parts[2]) < 4 || parts[0]+parts[1] != parts[2][0:4] {
|
|
|
|
return "", util.ErrInvalidArgument
|
|
|
|
}
|
|
|
|
|
|
|
|
return BlobHash256Key(parts[2]), nil
|
|
|
|
}
|