-
-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Some updates to the API for archived repos #27149
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
Merged
Merged
Changes from 2 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
b952b9d
Some updates to the API for archived repos
JakobDev 3f1d43f
Use Sprintf
JakobDev 174d4df
Changes requested by delvh
JakobDev cf1f6a2
Merge branch 'main' into archiveapi
jolheiser 6db4c77
Merge branch 'main' into archiveapi
GiteaBot 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 | ||||||
---|---|---|---|---|---|---|---|---|
|
@@ -117,17 +117,13 @@ func DeleteBranch(ctx *context.APIContext) { | |||||||
// "$ref": "#/responses/error" | ||||||||
// "404": | ||||||||
// "$ref": "#/responses/notFound" | ||||||||
|
||||||||
// "423": | ||||||||
// "$ref": "#/responses/repoArchived" | ||||||||
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. Please also add a description, here and everywhere else:
Suggested change
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. The description is added by swagger automatically |
||||||||
if ctx.Repo.Repository.IsEmpty { | ||||||||
ctx.Error(http.StatusNotFound, "", "Git Repository is empty.") | ||||||||
return | ||||||||
} | ||||||||
|
||||||||
if ctx.Repo.Repository.IsArchived { | ||||||||
ctx.Error(http.StatusForbidden, "", "Git Repository is archived.") | ||||||||
return | ||||||||
} | ||||||||
|
||||||||
if ctx.Repo.Repository.IsMirror { | ||||||||
ctx.Error(http.StatusForbidden, "", "Git Repository is a mirror.") | ||||||||
return | ||||||||
|
@@ -157,10 +153,6 @@ func DeleteBranch(ctx *context.APIContext) { | |||||||
} | ||||||||
} | ||||||||
|
||||||||
if ctx.Repo.Repository.IsArchived { | ||||||||
ctx.Error(http.StatusForbidden, "IsArchived", fmt.Errorf("can not delete branch of an archived repository")) | ||||||||
return | ||||||||
} | ||||||||
if ctx.Repo.Repository.IsMirror { | ||||||||
ctx.Error(http.StatusForbidden, "IsMirrored", fmt.Errorf("can not delete branch of an mirror repository")) | ||||||||
return | ||||||||
|
@@ -216,17 +208,14 @@ func CreateBranch(ctx *context.APIContext) { | |||||||
// description: The old branch does not exist. | ||||||||
// "409": | ||||||||
// description: The branch with the same name already exists. | ||||||||
// "423": | ||||||||
// "$ref": "#/responses/repoArchived" | ||||||||
|
||||||||
if ctx.Repo.Repository.IsEmpty { | ||||||||
ctx.Error(http.StatusNotFound, "", "Git Repository is empty.") | ||||||||
return | ||||||||
} | ||||||||
|
||||||||
if ctx.Repo.Repository.IsArchived { | ||||||||
ctx.Error(http.StatusForbidden, "", "Git Repository is archived.") | ||||||||
return | ||||||||
} | ||||||||
|
||||||||
if ctx.Repo.Repository.IsMirror { | ||||||||
ctx.Error(http.StatusForbidden, "", "Git Repository is a mirror.") | ||||||||
return | ||||||||
|
@@ -519,6 +508,8 @@ func CreateBranchProtection(ctx *context.APIContext) { | |||||||
// "$ref": "#/responses/notFound" | ||||||||
// "422": | ||||||||
// "$ref": "#/responses/validationError" | ||||||||
// "423": | ||||||||
// "$ref": "#/responses/repoArchived" | ||||||||
|
||||||||
form := web.GetForm(ctx).(*api.CreateBranchProtectionOption) | ||||||||
repo := ctx.Repo.Repository | ||||||||
|
@@ -727,6 +718,8 @@ func EditBranchProtection(ctx *context.APIContext) { | |||||||
// "$ref": "#/responses/notFound" | ||||||||
// "422": | ||||||||
// "$ref": "#/responses/validationError" | ||||||||
// "423": | ||||||||
// "$ref": "#/responses/repoArchived" | ||||||||
form := web.GetForm(ctx).(*api.EditBranchProtectionOption) | ||||||||
repo := ctx.Repo.Repository | ||||||||
bpName := ctx.Params(":name") | ||||||||
|
@@ -1004,7 +997,7 @@ func DeleteBranchProtection(ctx *context.APIContext) { | |||||||
return | ||||||||
} | ||||||||
|
||||||||
if err := git_model.DeleteProtectedBranch(ctx, ctx.Repo.Repository.ID, bp.ID); err != nil { | ||||||||
if err := git_model.DeleteProtectedBranch(ctx, ctx.Repo.Repository, bp.ID); err != nil { | ||||||||
ctx.Error(http.StatusInternalServerError, "DeleteProtectedBranch", err) | ||||||||
return | ||||||||
} | ||||||||
|
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Uh oh!
There was an error while loading. Please reload this page.