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>
54 lines
1.6 KiB
Go
54 lines
1.6 KiB
Go
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package convert
|
|
|
|
import (
|
|
"context"
|
|
|
|
"code.mokoconsulting.tech/MokoConsulting/MokoGitea/models/packages"
|
|
access_model "code.mokoconsulting.tech/MokoConsulting/MokoGitea/models/perm/access"
|
|
user_model "code.mokoconsulting.tech/MokoConsulting/MokoGitea/models/user"
|
|
api "code.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/structs"
|
|
)
|
|
|
|
// ToPackage convert a packages.PackageDescriptor to api.Package
|
|
func ToPackage(ctx context.Context, pd *packages.PackageDescriptor, doer *user_model.User) (*api.Package, error) {
|
|
var repo *api.Repository
|
|
if pd.Repository != nil {
|
|
permission, err := access_model.GetDoerRepoPermission(ctx, pd.Repository, doer)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if permission.HasAnyUnitAccess() {
|
|
repo = ToRepo(ctx, pd.Repository, permission)
|
|
}
|
|
}
|
|
|
|
return &api.Package{
|
|
ID: pd.Version.ID,
|
|
Owner: ToUser(ctx, pd.Owner, doer),
|
|
Repository: repo,
|
|
Creator: ToUser(ctx, pd.Creator, doer),
|
|
Type: string(pd.Package.Type),
|
|
Name: pd.Package.Name,
|
|
Version: pd.Version.Version,
|
|
CreatedAt: pd.Version.CreatedUnix.AsTime(),
|
|
HTMLURL: pd.VersionHTMLURL(ctx),
|
|
}, nil
|
|
}
|
|
|
|
// ToPackageFile converts packages.PackageFileDescriptor to api.PackageFile
|
|
func ToPackageFile(pfd *packages.PackageFileDescriptor) *api.PackageFile {
|
|
return &api.PackageFile{
|
|
ID: pfd.File.ID,
|
|
Size: pfd.Blob.Size,
|
|
Name: pfd.File.Name,
|
|
HashMD5: pfd.Blob.HashMD5,
|
|
HashSHA1: pfd.Blob.HashSHA1,
|
|
HashSHA256: pfd.Blob.HashSHA256,
|
|
HashSHA512: pfd.Blob.HashSHA512,
|
|
}
|
|
}
|