1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
// Copyright Earl Warren <contact@earl-warren.org>
// Copyright Loïc Dachary <loic@dachary.org>
// SPDX-License-Identifier: MIT
package forgejo
import (
"context"
"fmt"
"code.forgejo.org/f3/gof3/v3/f3"
forgejo_sdk "code.forgejo.org/f3/gof3/v3/forges/forgejo/sdk"
helpers_repository "code.forgejo.org/f3/gof3/v3/forges/helpers/repository"
"code.forgejo.org/f3/gof3/v3/id"
f3_tree "code.forgejo.org/f3/gof3/v3/tree/f3"
"code.forgejo.org/f3/gof3/v3/tree/generic"
)
type repository struct {
common
name string
h helpers_repository.Interface
f *f3.Repository
}
func (o *repository) SetNative(repository any) {
o.name = repository.(string)
}
func (o *repository) GetNativeID() string {
return o.name
}
func (o *repository) NewFormat() f3.Interface {
return &f3.Repository{}
}
func (o *repository) ToFormat() f3.Interface {
return &f3.Repository{
Common: f3.NewCommon(o.GetNativeID()),
Name: o.GetNativeID(),
FetchFunc: o.f.FetchFunc,
}
}
func (o *repository) FromFormat(content f3.Interface) {
f := content.Clone().(*f3.Repository)
o.f = f
o.f.SetID(f.Name)
o.name = f.Name
}
func (o *repository) Get(ctx context.Context) bool {
return o.h.Get(ctx)
}
func (o *repository) Put(ctx context.Context) id.NodeID {
return o.upsert(ctx)
}
func (o *repository) Patch(ctx context.Context) {
o.upsert(ctx)
}
func (o *repository) upsert(ctx context.Context) id.NodeID {
o.Trace("%s", o.GetNativeID())
o.h.Upsert(ctx, o.f)
return id.NewNodeID(o.f.Name)
}
func (o *repository) urlToRepositoryURL(url string) string {
owner := f3_tree.GetOwnerName(o.GetNode())
project := f3_tree.GetProjectName(o.GetNode())
repositoryURL := fmt.Sprintf("%s/%s/%s", url, owner, project)
if o.f.GetID() == f3.RepositoryNameWiki {
repositoryURL += ".wiki"
}
return repositoryURL
}
func (o *repository) GetHelper() any {
return o.h
}
func (o *repository) SetFetchFunc(fetchFunc func(ctx context.Context, destination, internalRef string)) {
o.f.FetchFunc = fetchFunc
}
func (o *repository) GetRepositoryURL() string {
return o.urlToRepositoryURL(o.getPushURL())
}
func (o *repository) GetRepositoryInternalRef() string {
return "refs/pull/*"
}
func (o *repository) GetPullRequestBranch(prBranch *f3.PullRequestBranch) *f3.PullRequestBranch {
owner := f3_tree.GetOwnerName(o.GetNode())
project := f3_tree.GetProjectName(o.GetNode())
branch, resp, err := o.getClient().GetRepoBranch(owner, project, prBranch.Ref)
if resp.StatusCode == 404 {
return nil
}
if err != nil {
panic(fmt.Errorf("GetRepoBranch: %v %w", prBranch, err))
}
return &f3.PullRequestBranch{
Ref: branch.Name,
SHA: branch.Commit.ID,
}
}
func (o *repository) CreatePullRequestBranch(prBranch *f3.PullRequestBranch) {
owner := f3_tree.GetOwnerName(o.GetNode())
project := f3_tree.GetProjectName(o.GetNode())
_, _, err := o.getClient().CreateBranch(owner, project, forgejo_sdk.CreateBranchOption{
BranchName: prBranch.Ref,
OldRefName: prBranch.SHA,
})
if err != nil {
panic(fmt.Errorf("CreateRepoBranch: %v %w", prBranch, err))
}
}
func (o *repository) DeletePullRequestBranch(prBranch *f3.PullRequestBranch) {
owner := f3_tree.GetOwnerName(o.GetNode())
project := f3_tree.GetProjectName(o.GetNode())
_, _, err := o.getClient().DeleteRepoBranch(owner, project, prBranch.Ref)
if err != nil {
panic(fmt.Errorf("CreateRepoBranch: %v %w", prBranch, err))
}
}
func newRepository(ctx context.Context) generic.NodeDriverInterface {
r := &repository{
f: &f3.Repository{},
}
r.h = helpers_repository.NewHelper(r)
return r
}
|