-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for the Friendly Forge Format (F3) #21081
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
// Copyright 2022 The Gitea Authors. All rights reserved. | ||
// Use of this source code is governed by a MIT-style | ||
// license that can be found in the LICENSE file. | ||
|
||
package cmd | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
|
||
user_model "code.gitea.io/gitea/models/user" | ||
"code.gitea.io/gitea/modules/git" | ||
"code.gitea.io/gitea/services/f3/util" | ||
"lab.forgefriends.org/friendlyforgeformat/gof3" | ||
f3_format "lab.forgefriends.org/friendlyforgeformat/gof3/format" | ||
|
||
"github.com/urfave/cli" | ||
) | ||
|
||
var CmdF3 = cli.Command{ | ||
Name: "f3", | ||
Usage: "Friendly Forge Format (F3) format export/import.", | ||
Description: "Import or export a repository from or to the Friendly Forge Format (F3) format.", | ||
Action: runF3, | ||
Flags: []cli.Flag{ | ||
cli.StringFlag{ | ||
Name: "directory", | ||
Value: "./f3", | ||
Usage: "Path of the directory where the F3 dump is stored", | ||
}, | ||
cli.StringFlag{ | ||
Name: "user", | ||
Value: "", | ||
Usage: "The name of the user who owns the repository", | ||
}, | ||
cli.StringFlag{ | ||
Name: "repository", | ||
Value: "", | ||
Usage: "The name of the repository", | ||
}, | ||
cli.BoolFlag{ | ||
Name: "no-pull-request", | ||
Usage: "Do not dump pull requests", | ||
}, | ||
cli.BoolFlag{ | ||
Name: "import", | ||
Usage: "Import from the directory", | ||
}, | ||
cli.BoolFlag{ | ||
Name: "export", | ||
Usage: "Export to the directory", | ||
}, | ||
}, | ||
} | ||
|
||
func runF3(ctx *cli.Context) error { | ||
stdCtx, cancel := installSignals() | ||
defer cancel() | ||
|
||
if err := initDB(stdCtx); err != nil { | ||
return err | ||
} | ||
|
||
if err := git.InitSimple(stdCtx); err != nil { | ||
return err | ||
} | ||
|
||
return RunF3(stdCtx, ctx) | ||
} | ||
|
||
func RunF3(stdCtx context.Context, ctx *cli.Context) error { | ||
doer, err := user_model.GetAdminUser() | ||
if err != nil { | ||
return err | ||
} | ||
|
||
features := gof3.AllFeatures | ||
if ctx.Bool("no-pull-request") { | ||
features.PullRequests = false | ||
} | ||
|
||
gitea := util.GiteaForgeRoot(stdCtx, features, doer) | ||
f3 := util.F3ForgeRoot(stdCtx, features, ctx.String("directory")) | ||
|
||
if ctx.Bool("export") { | ||
gitea.Forge.Users.List() | ||
user := gitea.Forge.Users.GetFromFormat(&f3_format.User{UserName: ctx.String("user")}) | ||
if user.IsNil() { | ||
return fmt.Errorf("%s is not a known user", ctx.String("user")) | ||
} | ||
|
||
user.Projects.List() | ||
project := user.Projects.GetFromFormat(&f3_format.Project{Name: ctx.String("repository")}) | ||
if project.IsNil() { | ||
return fmt.Errorf("%s/%s is not a known repository", ctx.String("user"), ctx.String("repository")) | ||
} | ||
|
||
f3.Forge.Mirror(gitea.Forge, user, project) | ||
fmt.Println("exported") | ||
} else if ctx.Bool("import") { | ||
gitea.Forge.Mirror(f3.Forge) | ||
fmt.Println("imported") | ||
} else { | ||
return fmt.Errorf("either --import or --export must be specified") | ||
} | ||
|
||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,24 @@ | ||||||
// Copyright 2022 The Gitea Authors. All rights reserved. | ||||||
// Use of this source code is governed by a MIT-style | ||||||
// license that can be found in the LICENSE file. | ||||||
|
||||||
package setting | ||||||
|
||||||
import ( | ||||||
"code.gitea.io/gitea/modules/log" | ||||||
) | ||||||
|
||||||
// Friendly Forge Format (F3) settings | ||||||
var ( | ||||||
F3 = struct { | ||||||
Enabled bool | ||||||
}{ | ||||||
Enabled: true, | ||||||
} | ||||||
) | ||||||
|
||||||
func newF3Service() { | ||||||
if err := Cfg.Section("F3").MapTo(&F3); err != nil { | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. all other sections are lowercase
Suggested change
|
||||||
log.Fatal("Failed to map F3 settings: %v", err) | ||||||
} | ||||||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.