9a5720e8ad
Universal: PR Check / Branch Policy (pull_request) Successful in 1s
Branch Policy Check / Verify merge target (pull_request) Successful in 1s
PR RC Release / Build RC Release (pull_request) Successful in 3s
Universal: PR Check / Validate PR (pull_request) Failing after 6s
Branch Cleanup / Delete merged branch (pull_request) Successful in 1s
Universal: PR Check / Build RC Package (pull_request) Has been cancelled
Full namespace migration: update the Go module path and all import statements from git.mokoconsulting.tech to code.mokoconsulting.tech. Also updates all URL references in templates, workflows, configs, tests, and documentation. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
56 lines
1.1 KiB
Go
56 lines
1.1 KiB
Go
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
//go:build gogit
|
|
|
|
package lfs
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"code.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/git"
|
|
|
|
"github.com/go-git/go-git/v5/plumbing/object"
|
|
)
|
|
|
|
// SearchPointerBlobs scans the whole repository for LFS pointer files
|
|
func SearchPointerBlobs(ctx context.Context, repo *git.Repository, pointerChan chan<- PointerBlob) error {
|
|
gitRepo := repo.GoGitRepo()
|
|
|
|
err := func() error {
|
|
blobs, err := gitRepo.BlobObjects()
|
|
if err != nil {
|
|
return fmt.Errorf("lfs.SearchPointerBlobs BlobObjects: %w", err)
|
|
}
|
|
|
|
return blobs.ForEach(func(blob *object.Blob) error {
|
|
select {
|
|
case <-ctx.Done():
|
|
return ctx.Err()
|
|
default:
|
|
}
|
|
|
|
if blob.Size > MetaFileMaxSize {
|
|
return nil
|
|
}
|
|
|
|
reader, err := blob.Reader()
|
|
if err != nil {
|
|
return fmt.Errorf("lfs.SearchPointerBlobs blob.Reader: %w", err)
|
|
}
|
|
defer reader.Close()
|
|
|
|
pointer, _ := ReadPointer(reader)
|
|
if pointer.IsValid() {
|
|
pointerChan <- PointerBlob{Hash: blob.Hash.String(), Pointer: pointer}
|
|
}
|
|
|
|
return nil
|
|
})
|
|
}()
|
|
|
|
close(pointerChan)
|
|
return err
|
|
}
|