aboutsummaryrefslogtreecommitdiff
path: root/internal/route
diff options
context:
space:
mode:
Diffstat (limited to 'internal/route')
-rw-r--r--internal/route/admin/users.go2
-rw-r--r--internal/route/api/v1/admin/user.go2
-rw-r--r--internal/route/lfs/mocks_test.go121
-rw-r--r--internal/route/org/setting.go8
-rw-r--r--internal/route/repo/setting.go8
-rw-r--r--internal/route/user/auth.go6
-rw-r--r--internal/route/user/setting.go2
7 files changed, 131 insertions, 18 deletions
diff --git a/internal/route/admin/users.go b/internal/route/admin/users.go
index ad876011..ebdaf460 100644
--- a/internal/route/admin/users.go
+++ b/internal/route/admin/users.go
@@ -189,7 +189,7 @@ func EditUserPost(c *context.Context, f form.AdminEditUser) {
if len(f.Password) > 0 {
u.Password = f.Password
var err error
- if u.Salt, err = db.GetUserSalt(); err != nil {
+ if u.Salt, err = userutil.RandomSalt(); err != nil {
c.Error(err, "get user salt")
return
}
diff --git a/internal/route/api/v1/admin/user.go b/internal/route/api/v1/admin/user.go
index 59550f4c..caca77d5 100644
--- a/internal/route/api/v1/admin/user.go
+++ b/internal/route/api/v1/admin/user.go
@@ -85,7 +85,7 @@ func EditUser(c *context.APIContext, form api.EditUserOption) {
if len(form.Password) > 0 {
u.Password = form.Password
var err error
- if u.Salt, err = db.GetUserSalt(); err != nil {
+ if u.Salt, err = userutil.RandomSalt(); err != nil {
c.Error(err, "get user salt")
return
}
diff --git a/internal/route/lfs/mocks_test.go b/internal/route/lfs/mocks_test.go
index e929b4ae..8a087e0b 100644
--- a/internal/route/lfs/mocks_test.go
+++ b/internal/route/lfs/mocks_test.go
@@ -2313,6 +2313,9 @@ type MockUsersStore struct {
// HasForkedRepositoryFunc is an instance of a mock function object
// controlling the behavior of the method HasForkedRepository.
HasForkedRepositoryFunc *UsersStoreHasForkedRepositoryFunc
+ // IsUsernameUsedFunc is an instance of a mock function object
+ // controlling the behavior of the method IsUsernameUsed.
+ IsUsernameUsedFunc *UsersStoreIsUsernameUsedFunc
// ListFollowersFunc is an instance of a mock function object
// controlling the behavior of the method ListFollowers.
ListFollowersFunc *UsersStoreListFollowersFunc
@@ -2363,6 +2366,11 @@ func NewMockUsersStore() *MockUsersStore {
return
},
},
+ IsUsernameUsedFunc: &UsersStoreIsUsernameUsedFunc{
+ defaultHook: func(context.Context, string) (r0 bool) {
+ return
+ },
+ },
ListFollowersFunc: &UsersStoreListFollowersFunc{
defaultHook: func(context.Context, int64, int, int) (r0 []*db.User, r1 error) {
return
@@ -2420,6 +2428,11 @@ func NewStrictMockUsersStore() *MockUsersStore {
panic("unexpected invocation of MockUsersStore.HasForkedRepository")
},
},
+ IsUsernameUsedFunc: &UsersStoreIsUsernameUsedFunc{
+ defaultHook: func(context.Context, string) bool {
+ panic("unexpected invocation of MockUsersStore.IsUsernameUsed")
+ },
+ },
ListFollowersFunc: &UsersStoreListFollowersFunc{
defaultHook: func(context.Context, int64, int, int) ([]*db.User, error) {
panic("unexpected invocation of MockUsersStore.ListFollowers")
@@ -2463,6 +2476,9 @@ func NewMockUsersStoreFrom(i db.UsersStore) *MockUsersStore {
HasForkedRepositoryFunc: &UsersStoreHasForkedRepositoryFunc{
defaultHook: i.HasForkedRepository,
},
+ IsUsernameUsedFunc: &UsersStoreIsUsernameUsedFunc{
+ defaultHook: i.IsUsernameUsed,
+ },
ListFollowersFunc: &UsersStoreListFollowersFunc{
defaultHook: i.ListFollowers,
},
@@ -3242,6 +3258,111 @@ func (c UsersStoreHasForkedRepositoryFuncCall) Results() []interface{} {
return []interface{}{c.Result0}
}
+// UsersStoreIsUsernameUsedFunc describes the behavior when the
+// IsUsernameUsed method of the parent MockUsersStore instance is invoked.
+type UsersStoreIsUsernameUsedFunc struct {
+ defaultHook func(context.Context, string) bool
+ hooks []func(context.Context, string) bool
+ history []UsersStoreIsUsernameUsedFuncCall
+ mutex sync.Mutex
+}
+
+// IsUsernameUsed delegates to the next hook function in the queue and
+// stores the parameter and result values of this invocation.
+func (m *MockUsersStore) IsUsernameUsed(v0 context.Context, v1 string) bool {
+ r0 := m.IsUsernameUsedFunc.nextHook()(v0, v1)
+ m.IsUsernameUsedFunc.appendCall(UsersStoreIsUsernameUsedFuncCall{v0, v1, r0})
+ return r0
+}
+
+// SetDefaultHook sets function that is called when the IsUsernameUsed
+// method of the parent MockUsersStore instance is invoked and the hook
+// queue is empty.
+func (f *UsersStoreIsUsernameUsedFunc) SetDefaultHook(hook func(context.Context, string) bool) {
+ f.defaultHook = hook
+}
+
+// PushHook adds a function to the end of hook queue. Each invocation of the
+// IsUsernameUsed method of the parent MockUsersStore instance invokes the
+// hook at the front of the queue and discards it. After the queue is empty,
+// the default hook function is invoked for any future action.
+func (f *UsersStoreIsUsernameUsedFunc) PushHook(hook func(context.Context, string) bool) {
+ f.mutex.Lock()
+ f.hooks = append(f.hooks, hook)
+ f.mutex.Unlock()
+}
+
+// SetDefaultReturn calls SetDefaultHook with a function that returns the
+// given values.
+func (f *UsersStoreIsUsernameUsedFunc) SetDefaultReturn(r0 bool) {
+ f.SetDefaultHook(func(context.Context, string) bool {
+ return r0
+ })
+}
+
+// PushReturn calls PushHook with a function that returns the given values.
+func (f *UsersStoreIsUsernameUsedFunc) PushReturn(r0 bool) {
+ f.PushHook(func(context.Context, string) bool {
+ return r0
+ })
+}
+
+func (f *UsersStoreIsUsernameUsedFunc) nextHook() func(context.Context, string) bool {
+ f.mutex.Lock()
+ defer f.mutex.Unlock()
+
+ if len(f.hooks) == 0 {
+ return f.defaultHook
+ }
+
+ hook := f.hooks[0]
+ f.hooks = f.hooks[1:]
+ return hook
+}
+
+func (f *UsersStoreIsUsernameUsedFunc) appendCall(r0 UsersStoreIsUsernameUsedFuncCall) {
+ f.mutex.Lock()
+ f.history = append(f.history, r0)
+ f.mutex.Unlock()
+}
+
+// History returns a sequence of UsersStoreIsUsernameUsedFuncCall objects
+// describing the invocations of this function.
+func (f *UsersStoreIsUsernameUsedFunc) History() []UsersStoreIsUsernameUsedFuncCall {
+ f.mutex.Lock()
+ history := make([]UsersStoreIsUsernameUsedFuncCall, len(f.history))
+ copy(history, f.history)
+ f.mutex.Unlock()
+
+ return history
+}
+
+// UsersStoreIsUsernameUsedFuncCall is an object that describes an
+// invocation of method IsUsernameUsed on an instance of MockUsersStore.
+type UsersStoreIsUsernameUsedFuncCall struct {
+ // Arg0 is the value of the 1st argument passed to this method
+ // invocation.
+ Arg0 context.Context
+ // Arg1 is the value of the 2nd argument passed to this method
+ // invocation.
+ Arg1 string
+ // Result0 is the value of the 1st result returned from this method
+ // invocation.
+ Result0 bool
+}
+
+// Args returns an interface slice containing the arguments of this
+// invocation.
+func (c UsersStoreIsUsernameUsedFuncCall) Args() []interface{} {
+ return []interface{}{c.Arg0, c.Arg1}
+}
+
+// Results returns an interface slice containing the results of this
+// invocation.
+func (c UsersStoreIsUsernameUsedFuncCall) Results() []interface{} {
+ return []interface{}{c.Result0}
+}
+
// UsersStoreListFollowersFunc describes the behavior when the ListFollowers
// method of the parent MockUsersStore instance is invoked.
type UsersStoreListFollowersFunc struct {
diff --git a/internal/route/org/setting.go b/internal/route/org/setting.go
index 5047a7d5..198012ef 100644
--- a/internal/route/org/setting.go
+++ b/internal/route/org/setting.go
@@ -41,15 +41,11 @@ func SettingsPost(c *context.Context, f form.UpdateOrgSetting) {
// Check if organization name has been changed.
if org.LowerName != strings.ToLower(f.Name) {
- isExist, err := db.IsUserExist(org.ID, f.Name)
- if err != nil {
- c.Error(err, "check if user exists")
- return
- } else if isExist {
+ if db.Users.IsUsernameUsed(c.Req.Context(), f.Name) {
c.Data["OrgName"] = true
c.RenderWithErr(c.Tr("form.username_been_taken"), SETTINGS_OPTIONS, &f)
return
- } else if err = db.ChangeUserName(org, f.Name); err != nil {
+ } else if err := db.ChangeUserName(org, f.Name); err != nil {
c.Data["OrgName"] = true
switch {
case db.IsErrNameNotAllowed(err):
diff --git a/internal/route/repo/setting.go b/internal/route/repo/setting.go
index a6df14b6..bc7c62bc 100644
--- a/internal/route/repo/setting.go
+++ b/internal/route/repo/setting.go
@@ -225,16 +225,12 @@ func SettingsPost(c *context.Context, f form.RepoSetting) {
}
newOwner := c.Query("new_owner_name")
- isExist, err := db.IsUserExist(0, newOwner)
- if err != nil {
- c.Error(err, "check if user exists")
- return
- } else if !isExist {
+ if !db.Users.IsUsernameUsed(c.Req.Context(), newOwner) {
c.RenderWithErr(c.Tr("form.enterred_invalid_owner_name"), SETTINGS_OPTIONS, nil)
return
}
- if err = db.TransferOwnership(c.User, newOwner, repo); err != nil {
+ if err := db.TransferOwnership(c.User, newOwner, repo); err != nil {
if db.IsErrRepoAlreadyExist(err) {
c.RenderWithErr(c.Tr("repo.settings.new_owner_has_same_repo"), SETTINGS_OPTIONS, nil)
} else {
diff --git a/internal/route/user/auth.go b/internal/route/user/auth.go
index cf6fa5e3..74c1a98f 100644
--- a/internal/route/user/auth.go
+++ b/internal/route/user/auth.go
@@ -414,7 +414,7 @@ func Activate(c *context.Context) {
if user := db.VerifyUserActiveCode(code); user != nil {
user.IsActive = true
var err error
- if user.Rands, err = db.GetUserSalt(); err != nil {
+ if user.Rands, err = userutil.RandomSalt(); err != nil {
c.Error(err, "get user salt")
return
}
@@ -547,11 +547,11 @@ func ResetPasswdPost(c *context.Context) {
u.Password = passwd
var err error
- if u.Rands, err = db.GetUserSalt(); err != nil {
+ if u.Rands, err = userutil.RandomSalt(); err != nil {
c.Error(err, "get user salt")
return
}
- if u.Salt, err = db.GetUserSalt(); err != nil {
+ if u.Salt, err = userutil.RandomSalt(); err != nil {
c.Error(err, "get user salt")
return
}
diff --git a/internal/route/user/setting.go b/internal/route/user/setting.go
index f29ffb36..6d781cbe 100644
--- a/internal/route/user/setting.go
+++ b/internal/route/user/setting.go
@@ -198,7 +198,7 @@ func SettingsPasswordPost(c *context.Context, f form.ChangePassword) {
} else {
c.User.Password = f.Password
var err error
- if c.User.Salt, err = db.GetUserSalt(); err != nil {
+ if c.User.Salt, err = userutil.RandomSalt(); err != nil {
c.Errorf(err, "get user salt")
return
}