mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-21 23:02:41 +01:00
Convert User expose ID each time (#12855)
* git blame tells me a lot of gitea things happen here around 2018, add header * move user code int its own file * expose user id * adopt things from APIFormat * fix test * CI.restart()
This commit is contained in:
parent
afea4faa33
commit
06480af472
4 changed files with 47 additions and 26 deletions
|
@ -43,7 +43,7 @@ func TestAPIPullReview(t *testing.T) {
|
||||||
assert.EqualValues(t, 10, reviews[5].ID)
|
assert.EqualValues(t, 10, reviews[5].ID)
|
||||||
assert.EqualValues(t, "REQUEST_CHANGES", reviews[5].State)
|
assert.EqualValues(t, "REQUEST_CHANGES", reviews[5].State)
|
||||||
assert.EqualValues(t, 1, reviews[5].CodeCommentsCount)
|
assert.EqualValues(t, 1, reviews[5].CodeCommentsCount)
|
||||||
assert.EqualValues(t, 0, reviews[5].Reviewer.ID) // ghost user
|
assert.EqualValues(t, -1, reviews[5].Reviewer.ID) // ghost user
|
||||||
assert.EqualValues(t, false, reviews[5].Stale)
|
assert.EqualValues(t, false, reviews[5].Stale)
|
||||||
assert.EqualValues(t, true, reviews[5].Official)
|
assert.EqualValues(t, true, reviews[5].Official)
|
||||||
|
|
||||||
|
|
|
@ -5,9 +5,12 @@
|
||||||
package integrations
|
package integrations
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"code.gitea.io/gitea/models"
|
||||||
|
"code.gitea.io/gitea/modules/setting"
|
||||||
api "code.gitea.io/gitea/modules/structs"
|
api "code.gitea.io/gitea/modules/structs"
|
||||||
|
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
|
@ -45,8 +48,14 @@ func TestAPIUserSearchNotLoggedIn(t *testing.T) {
|
||||||
var results SearchResults
|
var results SearchResults
|
||||||
DecodeJSON(t, resp, &results)
|
DecodeJSON(t, resp, &results)
|
||||||
assert.NotEmpty(t, results.Data)
|
assert.NotEmpty(t, results.Data)
|
||||||
|
var modelUser *models.User
|
||||||
for _, user := range results.Data {
|
for _, user := range results.Data {
|
||||||
assert.Contains(t, user.UserName, query)
|
assert.Contains(t, user.UserName, query)
|
||||||
assert.Empty(t, user.Email)
|
modelUser = models.AssertExistsAndLoadBean(t, &models.User{ID: user.ID}).(*models.User)
|
||||||
|
if modelUser.KeepEmailPrivate {
|
||||||
|
assert.EqualValues(t, fmt.Sprintf("%s@%s", modelUser.LowerName, setting.Service.NoReplyAddress), user.Email)
|
||||||
|
} else {
|
||||||
|
assert.EqualValues(t, modelUser.Email, user.Email)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
// Copyright 2015 The Gogs Authors. All rights reserved.
|
// Copyright 2015 The Gogs Authors. All rights reserved.
|
||||||
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
||||||
// Use of this source code is governed by a MIT-style
|
// Use of this source code is governed by a MIT-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
||||||
|
@ -11,7 +12,6 @@ import (
|
||||||
"code.gitea.io/gitea/models"
|
"code.gitea.io/gitea/models"
|
||||||
"code.gitea.io/gitea/modules/git"
|
"code.gitea.io/gitea/modules/git"
|
||||||
"code.gitea.io/gitea/modules/log"
|
"code.gitea.io/gitea/modules/log"
|
||||||
"code.gitea.io/gitea/modules/markup"
|
|
||||||
"code.gitea.io/gitea/modules/structs"
|
"code.gitea.io/gitea/modules/structs"
|
||||||
api "code.gitea.io/gitea/modules/structs"
|
api "code.gitea.io/gitea/modules/structs"
|
||||||
"code.gitea.io/gitea/modules/util"
|
"code.gitea.io/gitea/modules/util"
|
||||||
|
@ -331,29 +331,6 @@ func ToTeam(team *models.Team) *api.Team {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// ToUser convert models.User to api.User
|
|
||||||
// signed shall only be set if requester is logged in. authed shall only be set if user is site admin or user himself
|
|
||||||
func ToUser(user *models.User, signed, authed bool) *api.User {
|
|
||||||
result := &api.User{
|
|
||||||
UserName: user.Name,
|
|
||||||
AvatarURL: user.AvatarLink(),
|
|
||||||
FullName: markup.Sanitize(user.FullName),
|
|
||||||
Created: user.CreatedUnix.AsTime(),
|
|
||||||
}
|
|
||||||
// hide primary email if API caller is anonymous or user keep email private
|
|
||||||
if signed && (!user.KeepEmailPrivate || authed) {
|
|
||||||
result.Email = user.Email
|
|
||||||
}
|
|
||||||
// only site admin will get these information and possibly user himself
|
|
||||||
if authed {
|
|
||||||
result.ID = user.ID
|
|
||||||
result.IsAdmin = user.IsAdmin
|
|
||||||
result.LastLogin = user.LastLoginUnix.AsTime()
|
|
||||||
result.Language = user.Language
|
|
||||||
}
|
|
||||||
return result
|
|
||||||
}
|
|
||||||
|
|
||||||
// ToAnnotatedTag convert git.Tag to api.AnnotatedTag
|
// ToAnnotatedTag convert git.Tag to api.AnnotatedTag
|
||||||
func ToAnnotatedTag(repo *models.Repository, t *git.Tag, c *git.Commit) *api.AnnotatedTag {
|
func ToAnnotatedTag(repo *models.Repository, t *git.Tag, c *git.Commit) *api.AnnotatedTag {
|
||||||
return &api.AnnotatedTag{
|
return &api.AnnotatedTag{
|
||||||
|
|
35
modules/convert/user.go
Normal file
35
modules/convert/user.go
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
// Copyright 2020 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 convert
|
||||||
|
|
||||||
|
import (
|
||||||
|
"code.gitea.io/gitea/models"
|
||||||
|
"code.gitea.io/gitea/modules/markup"
|
||||||
|
api "code.gitea.io/gitea/modules/structs"
|
||||||
|
)
|
||||||
|
|
||||||
|
// ToUser convert models.User to api.User
|
||||||
|
// signed shall only be set if requester is logged in. authed shall only be set if user is site admin or user himself
|
||||||
|
func ToUser(user *models.User, signed, authed bool) *api.User {
|
||||||
|
result := &api.User{
|
||||||
|
ID: user.ID,
|
||||||
|
UserName: user.Name,
|
||||||
|
FullName: markup.Sanitize(user.FullName),
|
||||||
|
Email: user.GetEmail(),
|
||||||
|
AvatarURL: user.AvatarLink(),
|
||||||
|
Created: user.CreatedUnix.AsTime(),
|
||||||
|
}
|
||||||
|
// hide primary email if API caller is anonymous or user keep email private
|
||||||
|
if signed && (!user.KeepEmailPrivate || authed) {
|
||||||
|
result.Email = user.Email
|
||||||
|
}
|
||||||
|
// only site admin will get these information and possibly user himself
|
||||||
|
if authed {
|
||||||
|
result.IsAdmin = user.IsAdmin
|
||||||
|
result.LastLogin = user.LastLoginUnix.AsTime()
|
||||||
|
result.Language = user.Language
|
||||||
|
}
|
||||||
|
return result
|
||||||
|
}
|
Loading…
Reference in a new issue