mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 14:31:02 +00:00 
			
		
		
		
	This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | code.forgejo.org/f3/gof3/v3 | require | minor | `v3.10.8` -> `v3.11.0` | --- ### Configuration 📅 **Schedule**: Branch creation - On day 1 of the month, every 3 months ( * * 1 */3 * ) (UTC), Automerge - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) (UTC). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC40MC4wIiwidXBkYXRlZEluVmVyIjoiNDAuNDAuMCIsInRhcmdldEJyYW5jaCI6ImZvcmdlam8iLCJsYWJlbHMiOlsiZGVwZW5kZW5jeS11cGdyYWRlIiwidGVzdC9ub3QtbmVlZGVkIl19--> Co-authored-by: limiting-factor <limiting-factor@posteo.com> Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/8056 Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org> Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
		
			
				
	
	
		
			112 lines
		
	
	
	
		
			2.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			112 lines
		
	
	
	
		
			2.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright Earl Warren <contact@earl-warren.org>
 | |
| // Copyright Loïc Dachary <loic@dachary.org>
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package driver
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 
 | |
| 	repo_model "forgejo.org/models/repo"
 | |
| 
 | |
| 	"code.forgejo.org/f3/gof3/v3/f3"
 | |
| 	helpers_repository "code.forgejo.org/f3/gof3/v3/forges/helpers/repository"
 | |
| 	f3_id "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"
 | |
| )
 | |
| 
 | |
| var _ f3_tree.ForgeDriverInterface = &repository{}
 | |
| 
 | |
| 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) f3_id.NodeID {
 | |
| 	return o.upsert(ctx)
 | |
| }
 | |
| 
 | |
| func (o *repository) Patch(ctx context.Context) {
 | |
| 	o.upsert(ctx)
 | |
| }
 | |
| 
 | |
| func (o *repository) upsert(ctx context.Context) f3_id.NodeID {
 | |
| 	o.Trace("%s", o.GetNativeID())
 | |
| 	o.h.Upsert(ctx, o.f)
 | |
| 	return f3_id.NewNodeID(o.f.Name)
 | |
| }
 | |
| 
 | |
| func (o *repository) SetFetchFunc(fetchFunc func(ctx context.Context, destination, internalRef string)) {
 | |
| 	o.f.FetchFunc = fetchFunc
 | |
| }
 | |
| 
 | |
| func (o *repository) getURL() string {
 | |
| 	owner := f3_tree.GetOwnerName(o.GetNode())
 | |
| 	repoName := f3_tree.GetProjectName(o.GetNode())
 | |
| 	if o.f.GetID() == f3.RepositoryNameWiki {
 | |
| 		repoName += ".wiki"
 | |
| 	}
 | |
| 	return repo_model.RepoPath(owner, repoName)
 | |
| }
 | |
| 
 | |
| func (o *repository) GetRepositoryURL() string {
 | |
| 	return o.getURL()
 | |
| }
 | |
| 
 | |
| func (o *repository) GetRepositoryPushURL() string {
 | |
| 	return o.getURL()
 | |
| }
 | |
| 
 | |
| func (o *repository) GetRepositoryInternalRef() string {
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func (o *repository) GetPullRequestBranch(pr *f3.PullRequestBranch) *f3.PullRequestBranch {
 | |
| 	panic("")
 | |
| }
 | |
| func (o *repository) CreatePullRequestBranch(pr *f3.PullRequestBranch) {}
 | |
| func (o *repository) DeletePullRequestBranch(pr *f3.PullRequestBranch) {}
 | |
| 
 | |
| func newRepository(_ context.Context) generic.NodeDriverInterface {
 | |
| 	r := &repository{
 | |
| 		f: &f3.Repository{},
 | |
| 	}
 | |
| 	r.h = helpers_repository.NewHelper(r)
 | |
| 	return r
 | |
| }
 |