forked from go-gitea/gitea
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add admin API route for managing user's badges (go-gitea#23106)
Fix go-gitea#22785 --------- Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
- Loading branch information
1 parent
e71eb89
commit cb52b17
Showing
9 changed files
with
523 additions
and
2 deletions.
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,46 @@ | ||
// Copyright 2023 The Gitea Authors. All rights reserved. | ||
// SPDX-License-Identifier: MIT | ||
|
||
package v1_22 //nolint | ||
|
||
import ( | ||
"xorm.io/xorm" | ||
) | ||
|
||
type BadgeUnique struct { | ||
ID int64 `xorm:"pk autoincr"` | ||
Slug string `xorm:"UNIQUE"` | ||
} | ||
|
||
func (BadgeUnique) TableName() string { | ||
return "badge" | ||
} | ||
|
||
func UseSlugInsteadOfIDForBadges(x *xorm.Engine) error { | ||
type Badge struct { | ||
Slug string | ||
} | ||
|
||
err := x.Sync(new(Badge)) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
sess := x.NewSession() | ||
defer sess.Close() | ||
if err := sess.Begin(); err != nil { | ||
return err | ||
} | ||
|
||
_, err = sess.Exec("UPDATE `badge` SET `slug` = `id` Where `slug` IS NULL") | ||
if err != nil { | ||
return err | ||
} | ||
|
||
err = sess.Sync(new(BadgeUnique)) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
return sess.Commit() | ||
} |
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,57 @@ | ||
// Copyright 2024 The Gitea Authors. All rights reserved. | ||
// SPDX-License-Identifier: MIT | ||
|
||
package v1_22 //nolint | ||
|
||
import ( | ||
"fmt" | ||
"testing" | ||
|
||
"code.gitea.io/gitea/models/migrations/base" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func Test_UpdateBadgeColName(t *testing.T) { | ||
type Badge struct { | ||
ID int64 `xorm:"pk autoincr"` | ||
Description string | ||
ImageURL string | ||
} | ||
|
||
// Prepare and load the testing database | ||
x, deferable := base.PrepareTestEnv(t, 0, new(BadgeUnique), new(Badge)) | ||
defer deferable() | ||
if x == nil || t.Failed() { | ||
return | ||
} | ||
|
||
oldBadges := []Badge{ | ||
{ID: 1, Description: "Test Badge 1", ImageURL: "https://example.com/badge1.png"}, | ||
{ID: 2, Description: "Test Badge 2", ImageURL: "https://example.com/badge2.png"}, | ||
{ID: 3, Description: "Test Badge 3", ImageURL: "https://example.com/badge3.png"}, | ||
} | ||
|
||
for _, badge := range oldBadges { | ||
_, err := x.Insert(&badge) | ||
assert.NoError(t, err) | ||
} | ||
|
||
if err := UseSlugInsteadOfIDForBadges(x); err != nil { | ||
assert.NoError(t, err) | ||
return | ||
} | ||
|
||
got := []BadgeUnique{} | ||
if err := x.Table("badge").Asc("id").Find(&got); !assert.NoError(t, err) { | ||
return | ||
} | ||
|
||
for i, e := range oldBadges { | ||
got := got[i] | ||
assert.Equal(t, e.ID, got.ID) | ||
assert.Equal(t, fmt.Sprintf("%d", e.ID), got.Slug) | ||
} | ||
|
||
// TODO: check if badges have been updated | ||
} |
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,124 @@ | ||
// Copyright 2023 The Gitea Authors. All rights reserved. | ||
// SPDX-License-Identifier: MIT | ||
|
||
package admin | ||
|
||
import ( | ||
"net/http" | ||
|
||
user_model "code.gitea.io/gitea/models/user" | ||
api "code.gitea.io/gitea/modules/structs" | ||
"code.gitea.io/gitea/modules/web" | ||
"code.gitea.io/gitea/services/context" | ||
) | ||
|
||
// ListUserBadges lists all badges belonging to a user | ||
func ListUserBadges(ctx *context.APIContext) { | ||
// swagger:operation GET /admin/users/{username}/badges admin adminListUserBadges | ||
// --- | ||
// summary: List a user's badges | ||
// produces: | ||
// - application/json | ||
// parameters: | ||
// - name: username | ||
// in: path | ||
// description: username of user | ||
// type: string | ||
// required: true | ||
// responses: | ||
// "200": | ||
// "$ref": "#/responses/BadgeList" | ||
// "404": | ||
// "$ref": "#/responses/notFound" | ||
|
||
badges, maxResults, err := user_model.GetUserBadges(ctx, ctx.ContextUser) | ||
if err != nil { | ||
ctx.Error(http.StatusInternalServerError, "GetUserBadges", err) | ||
return | ||
} | ||
|
||
ctx.SetTotalCountHeader(maxResults) | ||
ctx.JSON(http.StatusOK, &badges) | ||
} | ||
|
||
// AddUserBadges add badges to a user | ||
func AddUserBadges(ctx *context.APIContext) { | ||
// swagger:operation POST /admin/users/{username}/badges admin adminAddUserBadges | ||
// --- | ||
// summary: Add a badge to a user | ||
// consumes: | ||
// - application/json | ||
// produces: | ||
// - application/json | ||
// parameters: | ||
// - name: username | ||
// in: path | ||
// description: username of user | ||
// type: string | ||
// required: true | ||
// - name: body | ||
// in: body | ||
// schema: | ||
// "$ref": "#/definitions/UserBadgeOption" | ||
// responses: | ||
// "204": | ||
// "$ref": "#/responses/empty" | ||
// "403": | ||
// "$ref": "#/responses/forbidden" | ||
|
||
form := web.GetForm(ctx).(*api.UserBadgeOption) | ||
badges := prepareBadgesForReplaceOrAdd(ctx, *form) | ||
|
||
if err := user_model.AddUserBadges(ctx, ctx.ContextUser, badges); err != nil { | ||
ctx.Error(http.StatusInternalServerError, "ReplaceUserBadges", err) | ||
return | ||
} | ||
|
||
ctx.Status(http.StatusNoContent) | ||
} | ||
|
||
// DeleteUserBadges delete a badge from a user | ||
func DeleteUserBadges(ctx *context.APIContext) { | ||
// swagger:operation DELETE /admin/users/{username}/badges admin adminDeleteUserBadges | ||
// --- | ||
// summary: Remove a badge from a user | ||
// produces: | ||
// - application/json | ||
// parameters: | ||
// - name: username | ||
// in: path | ||
// description: username of user | ||
// type: string | ||
// required: true | ||
// - name: body | ||
// in: body | ||
// schema: | ||
// "$ref": "#/definitions/UserBadgeOption" | ||
// responses: | ||
// "204": | ||
// "$ref": "#/responses/empty" | ||
// "403": | ||
// "$ref": "#/responses/forbidden" | ||
// "422": | ||
// "$ref": "#/responses/validationError" | ||
|
||
form := web.GetForm(ctx).(*api.UserBadgeOption) | ||
badges := prepareBadgesForReplaceOrAdd(ctx, *form) | ||
|
||
if err := user_model.RemoveUserBadges(ctx, ctx.ContextUser, badges); err != nil { | ||
ctx.Error(http.StatusInternalServerError, "ReplaceUserBadges", err) | ||
return | ||
} | ||
|
||
ctx.Status(http.StatusNoContent) | ||
} | ||
|
||
func prepareBadgesForReplaceOrAdd(ctx *context.APIContext, form api.UserBadgeOption) []*user_model.Badge { | ||
badges := make([]*user_model.Badge, len(form.BadgeSlugs)) | ||
for i, badge := range form.BadgeSlugs { | ||
badges[i] = &user_model.Badge{ | ||
Slug: badge, | ||
} | ||
} | ||
return badges | ||
} |
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.