9a5720e8ad
Branch Policy Check / Verify merge target (pull_request) Has been cancelled
Universal: PR Check / Branch Policy (pull_request) Has been cancelled
PR RC Release / Build RC Release (pull_request) Has been cancelled
Universal: PR Check / Validate PR (pull_request) Has been cancelled
Branch Cleanup / Delete merged branch (pull_request) Has been cancelled
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>
45 lines
1.3 KiB
Go
45 lines
1.3 KiB
Go
// Copyright 2026 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package terraform
|
|
|
|
import (
|
|
"context"
|
|
|
|
packages_model "code.mokoconsulting.tech/MokoConsulting/MokoGitea/models/packages"
|
|
"code.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/optional"
|
|
terraform_module "code.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/packages/terraform"
|
|
)
|
|
|
|
// IsLocked is a helper function to check if the terraform state is locked
|
|
func IsLocked(ctx context.Context, pkg *packages_model.Package) (bool, error) {
|
|
// Non terraform state packages aren't handled here
|
|
if pkg.Type == packages_model.TypeTerraformState {
|
|
return false, nil
|
|
}
|
|
|
|
lock, err := terraform_module.GetLock(ctx, pkg.ID)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
return lock.IsLocked(), nil
|
|
}
|
|
|
|
// IsLatest is a helper function to check if the terraform state is the latest version
|
|
func IsLatest(ctx context.Context, pd *packages_model.PackageDescriptor) (bool, error) {
|
|
if pd.Package.Type == packages_model.TypeTerraformState {
|
|
return false, nil
|
|
}
|
|
latestPvs, _, err := packages_model.SearchLatestVersions(ctx, &packages_model.PackageSearchOptions{
|
|
PackageID: pd.Package.ID,
|
|
IsInternal: optional.Some(false),
|
|
})
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
if len(latestPvs) > 0 && latestPvs[0].ID == pd.Version.ID {
|
|
return true, nil
|
|
}
|
|
return false, nil
|
|
}
|