Returned User TermsOfService Data in Certain GetUser APIs To Be Used on Webapp for Decicion Making (#10478)
* Used user TOS data embedded in user object itself * #MI-372 Added user TOS data in getUserByUsername API and updated tests * #MI-372 returned user TOS data only for admin or self * #MI-372 fixed tests * #MI-372 added user ID checks in a missing place
Этот коммит содержится в:
коммит произвёл
Hanzei
родитель
f17de7929b
Коммит
f84be43937
26
api4/user.go
26
api4/user.go
@@ -119,6 +119,19 @@ func getUser(c *Context, w http.ResponseWriter, r *http.Request) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if c.IsSystemAdmin() || c.App.Session.UserId == user.Id {
|
||||||
|
userTermsOfService, err := c.App.GetUserTermsOfService(user.Id)
|
||||||
|
if err != nil && err.StatusCode != http.StatusNotFound {
|
||||||
|
c.Err = err
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if userTermsOfService != nil {
|
||||||
|
user.TermsOfServiceId = userTermsOfService.TermsOfServiceId
|
||||||
|
user.TermsOfServiceCreateAt = userTermsOfService.CreateAt
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
etag := user.Etag(*c.App.Config().PrivacySettings.ShowFullName, *c.App.Config().PrivacySettings.ShowEmailAddress)
|
etag := user.Etag(*c.App.Config().PrivacySettings.ShowFullName, *c.App.Config().PrivacySettings.ShowEmailAddress)
|
||||||
|
|
||||||
if c.HandleEtag(etag, "Get User", w, r) {
|
if c.HandleEtag(etag, "Get User", w, r) {
|
||||||
@@ -149,6 +162,19 @@ func getUserByUsername(c *Context, w http.ResponseWriter, r *http.Request) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if c.IsSystemAdmin() || c.App.Session.UserId == user.Id {
|
||||||
|
userTermsOfService, err := c.App.GetUserTermsOfService(user.Id)
|
||||||
|
if err != nil && err.StatusCode != http.StatusNotFound {
|
||||||
|
c.Err = err
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if userTermsOfService != nil {
|
||||||
|
user.TermsOfServiceId = userTermsOfService.TermsOfServiceId
|
||||||
|
user.TermsOfServiceCreateAt = userTermsOfService.CreateAt
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
etag := user.Etag(*c.App.Config().PrivacySettings.ShowFullName, *c.App.Config().PrivacySettings.ShowEmailAddress)
|
etag := user.Etag(*c.App.Config().PrivacySettings.ShowFullName, *c.App.Config().PrivacySettings.ShowEmailAddress)
|
||||||
|
|
||||||
if c.HandleEtag(etag, "Get User", w, r) {
|
if c.HandleEtag(etag, "Get User", w, r) {
|
||||||
|
|||||||
@@ -417,6 +417,105 @@ func TestGetUser(t *testing.T) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestGetUserWithAcceptedTermsOfServiceForOtherUser(t *testing.T) {
|
||||||
|
th := Setup().InitBasic()
|
||||||
|
defer th.TearDown()
|
||||||
|
|
||||||
|
user := th.CreateUser()
|
||||||
|
|
||||||
|
tos, _ := th.App.CreateTermsOfService("Dummy TOS", user.Id)
|
||||||
|
|
||||||
|
th.App.UpdateUser(user, false)
|
||||||
|
|
||||||
|
ruser, resp := th.Client.GetUser(user.Id, "")
|
||||||
|
CheckNoError(t, resp)
|
||||||
|
CheckUserSanitization(t, ruser)
|
||||||
|
|
||||||
|
if ruser.Email != user.Email {
|
||||||
|
t.Fatal("emails did not match")
|
||||||
|
}
|
||||||
|
|
||||||
|
assert.Empty(t, ruser.TermsOfServiceId)
|
||||||
|
|
||||||
|
th.App.SaveUserTermsOfService(user.Id, tos.Id, true)
|
||||||
|
|
||||||
|
ruser, resp = th.Client.GetUser(user.Id, "")
|
||||||
|
CheckNoError(t, resp)
|
||||||
|
CheckUserSanitization(t, ruser)
|
||||||
|
|
||||||
|
if ruser.Email != user.Email {
|
||||||
|
t.Fatal("emails did not match")
|
||||||
|
}
|
||||||
|
|
||||||
|
// user TOS data cannot be fetched for other users by non-admin users
|
||||||
|
assert.Empty(t, ruser.TermsOfServiceId)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestGetUserWithAcceptedTermsOfService(t *testing.T) {
|
||||||
|
th := Setup().InitBasic()
|
||||||
|
defer th.TearDown()
|
||||||
|
|
||||||
|
user := th.BasicUser
|
||||||
|
|
||||||
|
tos, _ := th.App.CreateTermsOfService("Dummy TOS", user.Id)
|
||||||
|
|
||||||
|
ruser, resp := th.Client.GetUser(user.Id, "")
|
||||||
|
CheckNoError(t, resp)
|
||||||
|
CheckUserSanitization(t, ruser)
|
||||||
|
|
||||||
|
if ruser.Email != user.Email {
|
||||||
|
t.Fatal("emails did not match")
|
||||||
|
}
|
||||||
|
|
||||||
|
assert.Empty(t, ruser.TermsOfServiceId)
|
||||||
|
|
||||||
|
th.App.SaveUserTermsOfService(user.Id, tos.Id, true)
|
||||||
|
|
||||||
|
ruser, resp = th.Client.GetUser(user.Id, "")
|
||||||
|
CheckNoError(t, resp)
|
||||||
|
CheckUserSanitization(t, ruser)
|
||||||
|
|
||||||
|
if ruser.Email != user.Email {
|
||||||
|
t.Fatal("emails did not match")
|
||||||
|
}
|
||||||
|
|
||||||
|
// a user can view their own TOS details
|
||||||
|
assert.Equal(t, tos.Id, ruser.TermsOfServiceId)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestGetUserWithAcceptedTermsOfServiceWithAdminUser(t *testing.T) {
|
||||||
|
th := Setup().InitBasic()
|
||||||
|
th.LoginSystemAdmin()
|
||||||
|
defer th.TearDown()
|
||||||
|
|
||||||
|
user := th.BasicUser
|
||||||
|
|
||||||
|
tos, _ := th.App.CreateTermsOfService("Dummy TOS", user.Id)
|
||||||
|
|
||||||
|
ruser, resp := th.SystemAdminClient.GetUser(user.Id, "")
|
||||||
|
CheckNoError(t, resp)
|
||||||
|
CheckUserSanitization(t, ruser)
|
||||||
|
|
||||||
|
if ruser.Email != user.Email {
|
||||||
|
t.Fatal("emails did not match")
|
||||||
|
}
|
||||||
|
|
||||||
|
assert.Empty(t, ruser.TermsOfServiceId)
|
||||||
|
|
||||||
|
th.App.SaveUserTermsOfService(user.Id, tos.Id, true)
|
||||||
|
|
||||||
|
ruser, resp = th.SystemAdminClient.GetUser(user.Id, "")
|
||||||
|
CheckNoError(t, resp)
|
||||||
|
CheckUserSanitization(t, ruser)
|
||||||
|
|
||||||
|
if ruser.Email != user.Email {
|
||||||
|
t.Fatal("emails did not match")
|
||||||
|
}
|
||||||
|
|
||||||
|
// admin can view anyone's TOS details
|
||||||
|
assert.Equal(t, tos.Id, ruser.TermsOfServiceId)
|
||||||
|
}
|
||||||
|
|
||||||
func TestGetBotUser(t *testing.T) {
|
func TestGetBotUser(t *testing.T) {
|
||||||
th := Setup().InitBasic()
|
th := Setup().InitBasic()
|
||||||
defer th.TearDown()
|
defer th.TearDown()
|
||||||
@@ -501,6 +600,36 @@ func TestGetUserByUsername(t *testing.T) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestGetUserByUsernameWithAcceptedTermsOfService(t *testing.T) {
|
||||||
|
th := Setup().InitBasic()
|
||||||
|
defer th.TearDown()
|
||||||
|
|
||||||
|
user := th.BasicUser
|
||||||
|
|
||||||
|
ruser, resp := th.Client.GetUserByUsername(user.Username, "")
|
||||||
|
CheckNoError(t, resp)
|
||||||
|
CheckUserSanitization(t, ruser)
|
||||||
|
|
||||||
|
if ruser.Email != user.Email {
|
||||||
|
t.Fatal("emails did not match")
|
||||||
|
}
|
||||||
|
|
||||||
|
tos, _ := th.App.CreateTermsOfService("Dummy TOS", user.Id)
|
||||||
|
th.App.SaveUserTermsOfService(ruser.Id, tos.Id, true)
|
||||||
|
|
||||||
|
ruser, resp = th.Client.GetUserByUsername(user.Username, "")
|
||||||
|
CheckNoError(t, resp)
|
||||||
|
CheckUserSanitization(t, ruser)
|
||||||
|
|
||||||
|
if ruser.Email != user.Email {
|
||||||
|
t.Fatal("emails did not match")
|
||||||
|
}
|
||||||
|
|
||||||
|
if ruser.TermsOfServiceId != tos.Id {
|
||||||
|
t.Fatal("Terms of service ID didn't match")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func TestGetUserByEmail(t *testing.T) {
|
func TestGetUserByEmail(t *testing.T) {
|
||||||
th := Setup().InitBasic()
|
th := Setup().InitBasic()
|
||||||
defer th.TearDown()
|
defer th.TearDown()
|
||||||
|
|||||||
@@ -54,33 +54,35 @@ const (
|
|||||||
)
|
)
|
||||||
|
|
||||||
type User struct {
|
type User struct {
|
||||||
Id string `json:"id"`
|
Id string `json:"id"`
|
||||||
CreateAt int64 `json:"create_at,omitempty"`
|
CreateAt int64 `json:"create_at,omitempty"`
|
||||||
UpdateAt int64 `json:"update_at,omitempty"`
|
UpdateAt int64 `json:"update_at,omitempty"`
|
||||||
DeleteAt int64 `json:"delete_at"`
|
DeleteAt int64 `json:"delete_at"`
|
||||||
Username string `json:"username"`
|
Username string `json:"username"`
|
||||||
Password string `json:"password,omitempty"`
|
Password string `json:"password,omitempty"`
|
||||||
AuthData *string `json:"auth_data,omitempty"`
|
AuthData *string `json:"auth_data,omitempty"`
|
||||||
AuthService string `json:"auth_service"`
|
AuthService string `json:"auth_service"`
|
||||||
Email string `json:"email"`
|
Email string `json:"email"`
|
||||||
EmailVerified bool `json:"email_verified,omitempty"`
|
EmailVerified bool `json:"email_verified,omitempty"`
|
||||||
Nickname string `json:"nickname"`
|
Nickname string `json:"nickname"`
|
||||||
FirstName string `json:"first_name"`
|
FirstName string `json:"first_name"`
|
||||||
LastName string `json:"last_name"`
|
LastName string `json:"last_name"`
|
||||||
Position string `json:"position"`
|
Position string `json:"position"`
|
||||||
Roles string `json:"roles"`
|
Roles string `json:"roles"`
|
||||||
AllowMarketing bool `json:"allow_marketing,omitempty"`
|
AllowMarketing bool `json:"allow_marketing,omitempty"`
|
||||||
Props StringMap `json:"props,omitempty"`
|
Props StringMap `json:"props,omitempty"`
|
||||||
NotifyProps StringMap `json:"notify_props,omitempty"`
|
NotifyProps StringMap `json:"notify_props,omitempty"`
|
||||||
LastPasswordUpdate int64 `json:"last_password_update,omitempty"`
|
LastPasswordUpdate int64 `json:"last_password_update,omitempty"`
|
||||||
LastPictureUpdate int64 `json:"last_picture_update,omitempty"`
|
LastPictureUpdate int64 `json:"last_picture_update,omitempty"`
|
||||||
FailedAttempts int `json:"failed_attempts,omitempty"`
|
FailedAttempts int `json:"failed_attempts,omitempty"`
|
||||||
Locale string `json:"locale"`
|
Locale string `json:"locale"`
|
||||||
Timezone StringMap `json:"timezone"`
|
Timezone StringMap `json:"timezone"`
|
||||||
MfaActive bool `json:"mfa_active,omitempty"`
|
MfaActive bool `json:"mfa_active,omitempty"`
|
||||||
MfaSecret string `json:"mfa_secret,omitempty"`
|
MfaSecret string `json:"mfa_secret,omitempty"`
|
||||||
LastActivityAt int64 `db:"-" json:"last_activity_at,omitempty"`
|
LastActivityAt int64 `db:"-" json:"last_activity_at,omitempty"`
|
||||||
IsBot bool `db:"-" json:"is_bot,omitempty"`
|
IsBot bool `db:"-" json:"is_bot,omitempty"`
|
||||||
|
TermsOfServiceId string `db:"-" json:"terms_of_service_id,omitempty"`
|
||||||
|
TermsOfServiceCreateAt int64 `db:"-" json:"terms_of_service_create_at,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type UserPatch struct {
|
type UserPatch struct {
|
||||||
@@ -372,7 +374,7 @@ func (u *UserAuth) ToJson() string {
|
|||||||
|
|
||||||
// Generate a valid strong etag so the browser can cache the results
|
// Generate a valid strong etag so the browser can cache the results
|
||||||
func (u *User) Etag(showFullName, showEmail bool) string {
|
func (u *User) Etag(showFullName, showEmail bool) string {
|
||||||
return Etag(u.Id, u.UpdateAt, showFullName, showEmail)
|
return Etag(u.Id, u.UpdateAt, u.TermsOfServiceId, u.TermsOfServiceCreateAt, showFullName, showEmail)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Remove any private data from the user object
|
// Remove any private data from the user object
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user