From d9ecdcaef02346ac1980b359ed006a4f2a51349f Mon Sep 17 00:00:00 2001 From: Joe Chen Date: Wed, 27 Mar 2024 23:18:59 -0400 Subject: [PATCH] all: unwrap `database.UsersStore` interface (#7708) --- internal/cmd/admin.go | 4 +- internal/cmd/serv.go | 4 +- internal/context/auth.go | 38 +- internal/context/go_get.go | 2 +- internal/context/org.go | 2 +- internal/context/repo.go | 2 +- internal/context/store.go | 42 + internal/context/user.go | 2 +- internal/database/actions.go | 12 +- internal/database/actions_test.go | 20 +- internal/database/comment.go | 2 +- internal/database/database.go | 8 +- internal/database/issue.go | 4 +- internal/database/issue_mail.go | 4 +- internal/database/login_sources_test.go | 2 +- internal/database/mocks.go | 17 - internal/database/models.go | 2 +- internal/database/org.go | 10 +- internal/database/org_team.go | 2 +- internal/database/organizations_test.go | 4 +- internal/database/pull.go | 2 +- internal/database/repo.go | 12 +- internal/database/repositories_test.go | 2 +- internal/database/update.go | 2 +- internal/database/users.go | 371 +- internal/database/users_test.go | 472 +-- internal/route/admin/admin.go | 2 +- internal/route/admin/users.go | 14 +- internal/route/api/v1/admin/user.go | 8 +- internal/route/api/v1/api.go | 4 +- internal/route/api/v1/convert/convert.go | 4 +- internal/route/api/v1/org/org.go | 2 +- internal/route/api/v1/repo/collaborators.go | 6 +- internal/route/api/v1/repo/commits.go | 4 +- internal/route/api/v1/repo/issue.go | 4 +- internal/route/api/v1/repo/repo.go | 10 +- internal/route/api/v1/user/email.go | 6 +- internal/route/api/v1/user/follower.go | 10 +- internal/route/api/v1/user/key.go | 2 +- internal/route/api/v1/user/user.go | 4 +- internal/route/home.go | 6 +- internal/route/install.go | 4 +- internal/route/lfs/mocks_test.go | 4037 +++---------------- internal/route/lfs/route.go | 4 +- internal/route/lfs/route_test.go | 102 +- internal/route/lfs/store.go | 42 + internal/route/org/members.go | 2 +- internal/route/org/setting.go | 8 +- internal/route/org/teams.go | 2 +- internal/route/repo/commit.go | 5 +- internal/route/repo/http.go | 4 +- internal/route/repo/pull.go | 2 +- internal/route/repo/repo.go | 2 +- internal/route/repo/setting.go | 4 +- internal/route/repo/store.go | 42 + internal/route/repo/tasks.go | 4 +- internal/route/repo/webhook.go | 4 +- internal/route/user/auth.go | 26 +- internal/route/user/home.go | 6 +- internal/route/user/profile.go | 8 +- internal/route/user/setting.go | 28 +- mockgen.yaml | 3 - 62 files changed, 1246 insertions(+), 4223 deletions(-) delete mode 100644 internal/database/mocks.go diff --git a/internal/cmd/admin.go b/internal/cmd/admin.go index 78c9e8929..f7c3b0fe0 100644 --- a/internal/cmd/admin.go +++ b/internal/cmd/admin.go @@ -52,7 +52,7 @@ to make automatic initialization process more smoothly`, Name: "delete-inactive-users", Usage: "Delete all inactive accounts", Action: adminDashboardOperation( - func() error { return database.Users.DeleteInactivated() }, + func() error { return database.Handle.Users().DeleteInactivated() }, "All inactivated accounts have been deleted successfully", ), Flags: []cli.Flag{ @@ -152,7 +152,7 @@ func runCreateUser(c *cli.Context) error { return errors.Wrap(err, "set engine") } - user, err := database.Users.Create( + user, err := database.Handle.Users().Create( context.Background(), c.String("name"), c.String("email"), diff --git a/internal/cmd/serv.go b/internal/cmd/serv.go index 6120b93ea..a90b82f1f 100644 --- a/internal/cmd/serv.go +++ b/internal/cmd/serv.go @@ -162,7 +162,7 @@ func runServ(c *cli.Context) error { repoName := strings.TrimSuffix(strings.ToLower(repoFields[1]), ".git") repoName = strings.TrimSuffix(repoName, ".wiki") - owner, err := database.Users.GetByUsername(ctx, ownerName) + owner, err := database.Handle.Users().GetByUsername(ctx, ownerName) if err != nil { if database.IsErrUserNotExist(err) { fail("Repository owner does not exist", "Unregistered owner: %s", ownerName) @@ -205,7 +205,7 @@ func runServ(c *cli.Context) error { } checkDeployKey(key, repo) } else { - user, err = database.Users.GetByKeyID(ctx, key.ID) + user, err = database.Handle.Users().GetByKeyID(ctx, key.ID) if err != nil { fail("Internal error", "Failed to get user by key ID '%d': %v", key.ID, err) } diff --git a/internal/context/auth.go b/internal/context/auth.go index f98f27971..62b26b266 100644 --- a/internal/context/auth.go +++ b/internal/context/auth.go @@ -113,6 +113,32 @@ type AuthStore interface { // TouchAccessTokenByID updates the updated time of the given access token to // the current time. TouchAccessTokenByID(ctx context.Context, id int64) error + + // GetUserByID returns the user with given ID. It returns + // database.ErrUserNotExist when not found. + GetUserByID(ctx context.Context, id int64) (*database.User, error) + // GetUserByUsername returns the user with given username. It returns + // database.ErrUserNotExist when not found. + GetUserByUsername(ctx context.Context, username string) (*database.User, error) + // CreateUser creates a new user and persists to database. It returns + // database.ErrNameNotAllowed if the given name or pattern of the name is not + // allowed as a username, or database.ErrUserAlreadyExist when a user with same + // name already exists, or database.ErrEmailAlreadyUsed if the email has been + // verified by another user. + CreateUser(ctx context.Context, username, email string, opts database.CreateUserOptions) (*database.User, error) + // AuthenticateUser validates username and password via given login source ID. + // It returns database.ErrUserNotExist when the user was not found. + // + // When the "loginSourceID" is negative, it aborts the process and returns + // database.ErrUserNotExist if the user was not found in the database. + // + // When the "loginSourceID" is non-negative, it returns + // database.ErrLoginSourceMismatch if the user has different login source ID + // than the "loginSourceID". + // + // When the "loginSourceID" is positive, it tries to authenticate via given + // login source and creates a new user when not yet exists in the database. + AuthenticateUser(ctx context.Context, login, password string, loginSourceID int64) (*database.User, error) } // authenticatedUserID returns the ID of the authenticated user, along with a bool value @@ -160,7 +186,7 @@ func authenticatedUserID(store AuthStore, c *macaron.Context, sess session.Store return 0, false } if id, ok := uid.(int64); ok { - _, err := database.Users.GetByID(c.Req.Context(), id) + _, err := store.GetUserByID(c.Req.Context(), id) if err != nil { if !database.IsErrUserNotExist(err) { log.Error("Failed to get user by ID: %v", err) @@ -185,7 +211,7 @@ func authenticatedUser(store AuthStore, ctx *macaron.Context, sess session.Store if conf.Auth.EnableReverseProxyAuthentication { webAuthUser := ctx.Req.Header.Get(conf.Auth.ReverseProxyAuthenticationHeader) if len(webAuthUser) > 0 { - user, err := database.Users.GetByUsername(ctx.Req.Context(), webAuthUser) + user, err := store.GetUserByUsername(ctx.Req.Context(), webAuthUser) if err != nil { if !database.IsErrUserNotExist(err) { log.Error("Failed to get user by name: %v", err) @@ -194,7 +220,7 @@ func authenticatedUser(store AuthStore, ctx *macaron.Context, sess session.Store // Check if enabled auto-registration. if conf.Auth.EnableReverseProxyAutoRegistration { - user, err = database.Users.Create( + user, err = store.CreateUser( ctx.Req.Context(), webAuthUser, gouuid.NewV4().String()+"@localhost", @@ -219,7 +245,7 @@ func authenticatedUser(store AuthStore, ctx *macaron.Context, sess session.Store if len(auths) == 2 && auths[0] == "Basic" { uname, passwd, _ := tool.BasicAuthDecode(auths[1]) - u, err := database.Users.Authenticate(ctx.Req.Context(), uname, passwd, -1) + u, err := store.AuthenticateUser(ctx.Req.Context(), uname, passwd, -1) if err != nil { if !auth.IsErrBadCredentials(err) { log.Error("Failed to authenticate user: %v", err) @@ -233,7 +259,7 @@ func authenticatedUser(store AuthStore, ctx *macaron.Context, sess session.Store return nil, false, false } - u, err := database.Users.GetByID(ctx.Req.Context(), uid) + u, err := store.GetUserByID(ctx.Req.Context(), uid) if err != nil { log.Error("GetUserByID: %v", err) return nil, false, false @@ -254,7 +280,7 @@ func AuthenticateByToken(store AuthStore, ctx context.Context, token string) (*d log.Error("Failed to touch access token [id: %d]: %v", t.ID, err) } - user, err := database.Users.GetByID(ctx, t.UserID) + user, err := store.GetUserByID(ctx, t.UserID) if err != nil { return nil, errors.Wrapf(err, "get user by ID [user_id: %d]", t.UserID) } diff --git a/internal/context/go_get.go b/internal/context/go_get.go index fbb3185f8..8a5336c3e 100644 --- a/internal/context/go_get.go +++ b/internal/context/go_get.go @@ -27,7 +27,7 @@ func ServeGoGet() macaron.Handler { repoName := c.Params(":reponame") branchName := "master" - owner, err := database.Users.GetByUsername(c.Req.Context(), ownerName) + owner, err := database.Handle.Users().GetByUsername(c.Req.Context(), ownerName) if err == nil { repo, err := database.Handle.Repositories().GetByName(c.Req.Context(), owner.ID, repoName) if err == nil && repo.DefaultBranch != "" { diff --git a/internal/context/org.go b/internal/context/org.go index c48def235..7fb9560b8 100644 --- a/internal/context/org.go +++ b/internal/context/org.go @@ -47,7 +47,7 @@ func HandleOrgAssignment(c *Context, args ...bool) { orgName := c.Params(":org") var err error - c.Org.Organization, err = database.Users.GetByUsername(c.Req.Context(), orgName) + c.Org.Organization, err = database.Handle.Users().GetByUsername(c.Req.Context(), orgName) if err != nil { c.NotFoundOrError(err, "get organization by name") return diff --git a/internal/context/repo.go b/internal/context/repo.go index 519af4deb..802a55a46 100644 --- a/internal/context/repo.go +++ b/internal/context/repo.go @@ -145,7 +145,7 @@ func RepoAssignment(pages ...bool) macaron.Handler { if c.IsLogged && c.User.LowerName == strings.ToLower(ownerName) { owner = c.User } else { - owner, err = database.Users.GetByUsername(c.Req.Context(), ownerName) + owner, err = database.Handle.Users().GetByUsername(c.Req.Context(), ownerName) if err != nil { c.NotFoundOrError(err, "get user by name") return diff --git a/internal/context/store.go b/internal/context/store.go index 8e312bed1..0045464c5 100644 --- a/internal/context/store.go +++ b/internal/context/store.go @@ -16,6 +16,32 @@ type Store interface { // TouchAccessTokenByID updates the updated time of the given access token to // the current time. TouchAccessTokenByID(ctx context.Context, id int64) error + + // GetUserByID returns the user with given ID. It returns + // database.ErrUserNotExist when not found. + GetUserByID(ctx context.Context, id int64) (*database.User, error) + // GetUserByUsername returns the user with given username. It returns + // database.ErrUserNotExist when not found. + GetUserByUsername(ctx context.Context, username string) (*database.User, error) + // CreateUser creates a new user and persists to database. It returns + // database.ErrNameNotAllowed if the given name or pattern of the name is not + // allowed as a username, or database.ErrUserAlreadyExist when a user with same + // name already exists, or database.ErrEmailAlreadyUsed if the email has been + // verified by another user. + CreateUser(ctx context.Context, username, email string, opts database.CreateUserOptions) (*database.User, error) + // AuthenticateUser validates username and password via given login source ID. + // It returns database.ErrUserNotExist when the user was not found. + // + // When the "loginSourceID" is negative, it aborts the process and returns + // database.ErrUserNotExist if the user was not found in the database. + // + // When the "loginSourceID" is non-negative, it returns + // database.ErrLoginSourceMismatch if the user has different login source ID + // than the "loginSourceID". + // + // When the "loginSourceID" is positive, it tries to authenticate via given + // login source and creates a new user when not yet exists in the database. + AuthenticateUser(ctx context.Context, login, password string, loginSourceID int64) (*database.User, error) } type store struct{} @@ -32,3 +58,19 @@ func (*store) GetAccessTokenBySHA1(ctx context.Context, sha1 string) (*database. func (*store) TouchAccessTokenByID(ctx context.Context, id int64) error { return database.Handle.AccessTokens().Touch(ctx, id) } + +func (*store) GetUserByID(ctx context.Context, id int64) (*database.User, error) { + return database.Handle.Users().GetByID(ctx, id) +} + +func (*store) GetUserByUsername(ctx context.Context, username string) (*database.User, error) { + return database.Handle.Users().GetByUsername(ctx, username) +} + +func (*store) CreateUser(ctx context.Context, username, email string, opts database.CreateUserOptions) (*database.User, error) { + return database.Handle.Users().Create(ctx, username, email, opts) +} + +func (*store) AuthenticateUser(ctx context.Context, login, password string, loginSourceID int64) (*database.User, error) { + return database.Handle.Users().Authenticate(ctx, login, password, loginSourceID) +} diff --git a/internal/context/user.go b/internal/context/user.go index 7069f7835..d6ea227b4 100644 --- a/internal/context/user.go +++ b/internal/context/user.go @@ -19,7 +19,7 @@ type ParamsUser struct { // and injects it as *ParamsUser. func InjectParamsUser() macaron.Handler { return func(c *Context) { - user, err := database.Users.GetByUsername(c.Req.Context(), c.Params(":username")) + user, err := database.Handle.Users().GetByUsername(c.Req.Context(), c.Params(":username")) if err != nil { c.NotFoundOrError(err, "get user by name") return diff --git a/internal/database/actions.go b/internal/database/actions.go index 561a5832d..3bab2012b 100644 --- a/internal/database/actions.go +++ b/internal/database/actions.go @@ -221,7 +221,7 @@ func (s *ActionsStore) MirrorSyncPush(ctx context.Context, opts MirrorSyncPushOp } apiCommits, err := opts.Commits.APIFormat(ctx, - NewUsersStore(s.db), + newUsersStore(s.db), repoutil.RepositoryPath(opts.Owner.Name, opts.Repo.Name), repoutil.HTMLURL(opts.Owner.Name, opts.Repo.Name), ) @@ -470,7 +470,7 @@ func (s *ActionsStore) CommitRepo(ctx context.Context, opts CommitRepoOptions) e return errors.Wrap(err, "touch repository") } - pusher, err := NewUsersStore(s.db).GetByUsername(ctx, opts.PusherName) + pusher, err := newUsersStore(s.db).GetByUsername(ctx, opts.PusherName) if err != nil { return errors.Wrapf(err, "get pusher [name: %s]", opts.PusherName) } @@ -566,7 +566,7 @@ func (s *ActionsStore) CommitRepo(ctx context.Context, opts CommitRepoOptions) e } commits, err := opts.Commits.APIFormat(ctx, - NewUsersStore(s.db), + newUsersStore(s.db), repoutil.RepositoryPath(opts.Owner.Name, opts.Repo.Name), repoutil.HTMLURL(opts.Owner.Name, opts.Repo.Name), ) @@ -617,7 +617,7 @@ func (s *ActionsStore) PushTag(ctx context.Context, opts PushTagOptions) error { return errors.Wrap(err, "touch repository") } - pusher, err := NewUsersStore(s.db).GetByUsername(ctx, opts.PusherName) + pusher, err := newUsersStore(s.db).GetByUsername(ctx, opts.PusherName) if err != nil { return errors.Wrapf(err, "get pusher [name: %s]", opts.PusherName) } @@ -852,7 +852,7 @@ func NewPushCommits() *PushCommits { } } -func (pcs *PushCommits) APIFormat(ctx context.Context, usersStore UsersStore, repoPath, repoURL string) ([]*api.PayloadCommit, error) { +func (pcs *PushCommits) APIFormat(ctx context.Context, usersStore *UsersStore, repoPath, repoURL string) ([]*api.PayloadCommit, error) { // NOTE: We cache query results in case there are many commits in a single push. usernameByEmail := make(map[string]string) getUsernameByEmail := func(email string) (string, error) { @@ -925,7 +925,7 @@ func (pcs *PushCommits) APIFormat(ctx context.Context, usersStore UsersStore, re func (pcs *PushCommits) AvatarLink(email string) string { _, ok := pcs.avatars[email] if !ok { - u, err := Users.GetByEmail(context.Background(), email) + u, err := Handle.Users().GetByEmail(context.Background(), email) if err != nil { pcs.avatars[email] = tool.AvatarLink(email) if !IsErrUserNotExist(err) { diff --git a/internal/database/actions_test.go b/internal/database/actions_test.go index d3a032358..bd203d145 100644 --- a/internal/database/actions_test.go +++ b/internal/database/actions_test.go @@ -133,7 +133,7 @@ func TestActions(t *testing.T) { } func actionsCommitRepo(t *testing.T, ctx context.Context, s *ActionsStore) { - alice, err := NewUsersStore(s.db).Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) + alice, err := newUsersStore(s.db).Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) require.NoError(t, err) repo, err := newReposStore(s.db).Create(ctx, alice.ID, @@ -436,7 +436,7 @@ func actionsListByUser(t *testing.T, ctx context.Context, s *ActionsStore) { } func actionsMergePullRequest(t *testing.T, ctx context.Context, s *ActionsStore) { - alice, err := NewUsersStore(s.db).Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) + alice, err := newUsersStore(s.db).Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) require.NoError(t, err) repo, err := newReposStore(s.db).Create(ctx, alice.ID, @@ -481,7 +481,7 @@ func actionsMergePullRequest(t *testing.T, ctx context.Context, s *ActionsStore) } func actionsMirrorSyncCreate(t *testing.T, ctx context.Context, s *ActionsStore) { - alice, err := NewUsersStore(s.db).Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) + alice, err := newUsersStore(s.db).Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) require.NoError(t, err) repo, err := newReposStore(s.db).Create(ctx, alice.ID, @@ -522,7 +522,7 @@ func actionsMirrorSyncCreate(t *testing.T, ctx context.Context, s *ActionsStore) } func actionsMirrorSyncDelete(t *testing.T, ctx context.Context, s *ActionsStore) { - alice, err := NewUsersStore(s.db).Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) + alice, err := newUsersStore(s.db).Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) require.NoError(t, err) repo, err := newReposStore(s.db).Create(ctx, alice.ID, @@ -563,7 +563,7 @@ func actionsMirrorSyncDelete(t *testing.T, ctx context.Context, s *ActionsStore) } func actionsMirrorSyncPush(t *testing.T, ctx context.Context, s *ActionsStore) { - alice, err := NewUsersStore(s.db).Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) + alice, err := newUsersStore(s.db).Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) require.NoError(t, err) repo, err := newReposStore(s.db).Create(ctx, alice.ID, @@ -628,7 +628,7 @@ func actionsMirrorSyncPush(t *testing.T, ctx context.Context, s *ActionsStore) { } func actionsNewRepo(t *testing.T, ctx context.Context, s *ActionsStore) { - alice, err := NewUsersStore(s.db).Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) + alice, err := newUsersStore(s.db).Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) require.NoError(t, err) repo, err := newReposStore(s.db).Create(ctx, alice.ID, @@ -707,7 +707,7 @@ func actionsPushTag(t *testing.T, ctx context.Context, s *ActionsStore) { // to the mock server because this function holds a lock. conf.SetMockServer(t, conf.ServerOpts{}) - alice, err := NewUsersStore(s.db).Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) + alice, err := newUsersStore(s.db).Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) require.NoError(t, err) repo, err := newReposStore(s.db).Create(ctx, alice.ID, @@ -799,7 +799,7 @@ func actionsPushTag(t *testing.T, ctx context.Context, s *ActionsStore) { } func actionsRenameRepo(t *testing.T, ctx context.Context, s *ActionsStore) { - alice, err := NewUsersStore(s.db).Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) + alice, err := newUsersStore(s.db).Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) require.NoError(t, err) repo, err := newReposStore(s.db).Create(ctx, alice.ID, @@ -836,9 +836,9 @@ func actionsRenameRepo(t *testing.T, ctx context.Context, s *ActionsStore) { } func actionsTransferRepo(t *testing.T, ctx context.Context, s *ActionsStore) { - alice, err := NewUsersStore(s.db).Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) + alice, err := newUsersStore(s.db).Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) require.NoError(t, err) - bob, err := NewUsersStore(s.db).Create(ctx, "bob", "bob@example.com", CreateUserOptions{}) + bob, err := newUsersStore(s.db).Create(ctx, "bob", "bob@example.com", CreateUserOptions{}) require.NoError(t, err) repo, err := newReposStore(s.db).Create(ctx, alice.ID, diff --git a/internal/database/comment.go b/internal/database/comment.go index ceb9ec106..54780cb51 100644 --- a/internal/database/comment.go +++ b/internal/database/comment.go @@ -95,7 +95,7 @@ func (c *Comment) AfterSet(colName string, _ xorm.Cell) { func (c *Comment) loadAttributes(e Engine) (err error) { if c.Poster == nil { - c.Poster, err = Users.GetByID(context.TODO(), c.PosterID) + c.Poster, err = Handle.Users().GetByID(context.TODO(), c.PosterID) if err != nil { if IsErrUserNotExist(err) { c.PosterID = -1 diff --git a/internal/database/database.go b/internal/database/database.go index 9d0d67a3c..af974f951 100644 --- a/internal/database/database.go +++ b/internal/database/database.go @@ -122,9 +122,7 @@ func NewConnection(w logger.Writer) (*gorm.DB, error) { return nil, errors.Wrap(err, "load login source files") } - // Initialize stores, sorted in alphabetical order. - Users = NewUsersStore(db) - + // Initialize the database handle. Handle = &DB{db: db} return db, nil } @@ -189,3 +187,7 @@ func (db *DB) Repositories() *RepositoriesStore { func (db *DB) TwoFactors() *TwoFactorsStore { return newTwoFactorsStore(db.db) } + +func (db *DB) Users() *UsersStore { + return newUsersStore(db.db) +} diff --git a/internal/database/issue.go b/internal/database/issue.go index 4808b7348..18cdef153 100644 --- a/internal/database/issue.go +++ b/internal/database/issue.go @@ -408,7 +408,7 @@ func (issue *Issue) GetAssignee() (err error) { return nil } - issue.Assignee, err = Users.GetByID(context.TODO(), issue.AssigneeID) + issue.Assignee, err = Handle.Users().GetByID(context.TODO(), issue.AssigneeID) if IsErrUserNotExist(err) { return nil } @@ -614,7 +614,7 @@ func (issue *Issue) ChangeAssignee(doer *User, assigneeID int64) (err error) { return fmt.Errorf("UpdateIssueUserByAssignee: %v", err) } - issue.Assignee, err = Users.GetByID(context.TODO(), issue.AssigneeID) + issue.Assignee, err = Handle.Users().GetByID(context.TODO(), issue.AssigneeID) if err != nil && !IsErrUserNotExist(err) { log.Error("Failed to get user by ID: %v", err) return nil diff --git a/internal/database/issue_mail.go b/internal/database/issue_mail.go index 2e6e5d247..84a68fc85 100644 --- a/internal/database/issue_mail.go +++ b/internal/database/issue_mail.go @@ -128,7 +128,7 @@ func mailIssueCommentToParticipants(issue *Issue, doer *User, mentions []string) continue } - to, err := Users.GetByID(ctx, watchers[i].UserID) + to, err := Handle.Users().GetByID(ctx, watchers[i].UserID) if err != nil { return fmt.Errorf("GetUserByID [%d]: %v", watchers[i].UserID, err) } @@ -168,7 +168,7 @@ func mailIssueCommentToParticipants(issue *Issue, doer *User, mentions []string) toUsernames = append(toUsernames, mentions[i]) } - tos, err = Users.GetMailableEmailsByUsernames(ctx, toUsernames) + tos, err = Handle.Users().GetMailableEmailsByUsernames(ctx, toUsernames) if err != nil { return errors.Wrap(err, "get mailable emails by usernames") } diff --git a/internal/database/login_sources_test.go b/internal/database/login_sources_test.go index 35b440338..2739f1f63 100644 --- a/internal/database/login_sources_test.go +++ b/internal/database/login_sources_test.go @@ -265,7 +265,7 @@ func loginSourcesDeleteByID(t *testing.T, ctx context.Context, s *LoginSourcesSt require.NoError(t, err) // Create a user that uses this login source - _, err = NewUsersStore(s.db).Create(ctx, "alice", "", + _, err = newUsersStore(s.db).Create(ctx, "alice", "", CreateUserOptions{ LoginSource: source.ID, }, diff --git a/internal/database/mocks.go b/internal/database/mocks.go deleted file mode 100644 index 67760be36..000000000 --- a/internal/database/mocks.go +++ /dev/null @@ -1,17 +0,0 @@ -// Copyright 2020 The Gogs 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 database - -import ( - "testing" -) - -func SetMockUsersStore(t *testing.T, mock UsersStore) { - before := Users - Users = mock - t.Cleanup(func() { - Users = before - }) -} diff --git a/internal/database/models.go b/internal/database/models.go index 0ea9875d6..167e52099 100644 --- a/internal/database/models.go +++ b/internal/database/models.go @@ -210,7 +210,7 @@ type Statistic struct { } func GetStatistic(ctx context.Context) (stats Statistic) { - stats.Counter.User = Users.Count(ctx) + stats.Counter.User = Handle.Users().Count(ctx) stats.Counter.Org = CountOrganizations() stats.Counter.PublicKey, _ = x.Count(new(PublicKey)) stats.Counter.Repo = CountRepositories(true) diff --git a/internal/database/org.go b/internal/database/org.go index dd6f559cf..ce1e565d6 100644 --- a/internal/database/org.go +++ b/internal/database/org.go @@ -73,7 +73,7 @@ func (org *User) GetMembers(limit int) error { org.Members = make([]*User, len(ous)) for i, ou := range ous { - org.Members[i], err = Users.GetByID(context.TODO(), ou.Uid) + org.Members[i], err = Handle.Users().GetByID(context.TODO(), ou.Uid) if err != nil { return err } @@ -106,7 +106,7 @@ func CreateOrganization(org, owner *User) (err error) { return err } - if Users.IsUsernameUsed(context.TODO(), org.Name, 0) { + if Handle.Users().IsUsernameUsed(context.TODO(), org.Name, 0) { return ErrUserAlreadyExist{ args: errutil.Args{ "name": org.Name, @@ -216,7 +216,7 @@ func deleteBeans(e Engine, beans ...any) (err error) { // DeleteOrganization completely and permanently deletes everything of organization. func DeleteOrganization(org *User) error { - err := Users.DeleteByID(context.TODO(), org.ID, false) + err := Handle.Users().DeleteByID(context.TODO(), org.ID, false) if err != nil { return err } @@ -373,11 +373,11 @@ func RemoveOrgUser(orgID, userID int64) error { return nil } - user, err := Users.GetByID(context.TODO(), userID) + user, err := Handle.Users().GetByID(context.TODO(), userID) if err != nil { return fmt.Errorf("GetUserByID [%d]: %v", userID, err) } - org, err := Users.GetByID(context.TODO(), orgID) + org, err := Handle.Users().GetByID(context.TODO(), orgID) if err != nil { return fmt.Errorf("GetUserByID [%d]: %v", orgID, err) } diff --git a/internal/database/org_team.go b/internal/database/org_team.go index 35fb007f2..82cb5d5d6 100644 --- a/internal/database/org_team.go +++ b/internal/database/org_team.go @@ -418,7 +418,7 @@ func DeleteTeam(t *Team) error { } // Get organization. - org, err := Users.GetByID(context.TODO(), t.OrgID) + org, err := Handle.Users().GetByID(context.TODO(), t.OrgID) if err != nil { return err } diff --git a/internal/database/organizations_test.go b/internal/database/organizations_test.go index daffdbeae..6c7b10e9c 100644 --- a/internal/database/organizations_test.go +++ b/internal/database/organizations_test.go @@ -47,7 +47,7 @@ func TestOrgs(t *testing.T) { } func orgsList(t *testing.T, ctx context.Context, s *OrganizationsStore) { - usersStore := NewUsersStore(s.db) + usersStore := newUsersStore(s.db) alice, err := usersStore.Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) require.NoError(t, err) bob, err := usersStore.Create(ctx, "bob", "bob@example.com", CreateUserOptions{}) @@ -118,7 +118,7 @@ func orgsList(t *testing.T, ctx context.Context, s *OrganizationsStore) { func organizationsSearchByName(t *testing.T, ctx context.Context, s *OrganizationsStore) { // TODO: Use Orgs.Create to replace SQL hack when the method is available. - usersStore := NewUsersStore(s.db) + usersStore := newUsersStore(s.db) org1, err := usersStore.Create(ctx, "org1", "org1@example.com", CreateUserOptions{FullName: "Acme Corp"}) require.NoError(t, err) org2, err := usersStore.Create(ctx, "org2", "org2@example.com", CreateUserOptions{FullName: "Acme Corp 2"}) diff --git a/internal/database/pull.go b/internal/database/pull.go index 5f7109d97..06f88b877 100644 --- a/internal/database/pull.go +++ b/internal/database/pull.go @@ -373,7 +373,7 @@ func (pr *PullRequest) Merge(doer *User, baseGitRepo *git.Repository, mergeStyle commits = append([]*git.Commit{mergeCommit}, commits...) } - pcs, err := CommitsToPushCommits(commits).APIFormat(ctx, Users, pr.BaseRepo.RepoPath(), pr.BaseRepo.HTMLURL()) + pcs, err := CommitsToPushCommits(commits).APIFormat(ctx, Handle.Users(), pr.BaseRepo.RepoPath(), pr.BaseRepo.HTMLURL()) if err != nil { log.Error("Failed to convert to API payload commits: %v", err) return nil diff --git a/internal/database/repo.go b/internal/database/repo.go index 3400d83c9..f55c35160 100644 --- a/internal/database/repo.go +++ b/internal/database/repo.go @@ -542,7 +542,7 @@ func (repo *Repository) GetAssigneeByID(userID int64) (*User, error) { ) { return nil, ErrUserNotExist{args: errutil.Args{"userID": userID}} } - return Users.GetByID(ctx, userID) + return Handle.Users().GetByID(ctx, userID) } // GetWriters returns all users that have write access to the repository. @@ -1255,7 +1255,7 @@ func CreateRepository(doer, owner *User, opts CreateRepoOptionsLegacy) (_ *Repos } // Remember visibility preference - err = Users.Update(context.TODO(), owner.ID, UpdateUserOptions{LastRepoVisibility: &repo.IsPrivate}) + err = Handle.Users().Update(context.TODO(), owner.ID, UpdateUserOptions{LastRepoVisibility: &repo.IsPrivate}) if err != nil { return nil, errors.Wrap(err, "update user") } @@ -1352,7 +1352,7 @@ func RepoPath(userName, repoName string) string { // TransferOwnership transfers all corresponding setting from old user to new one. func TransferOwnership(doer *User, newOwnerName string, repo *Repository) error { - newOwner, err := Users.GetByUsername(context.TODO(), newOwnerName) + newOwner, err := Handle.Users().GetByUsername(context.TODO(), newOwnerName) if err != nil { return fmt.Errorf("get new owner '%s': %v", newOwnerName, err) } @@ -1643,7 +1643,7 @@ func DeleteRepository(ownerID, repoID int64) error { } // In case is a organization. - org, err := Users.GetByID(context.TODO(), ownerID) + org, err := Handle.Users().GetByID(context.TODO(), ownerID) if err != nil { return err } @@ -1761,7 +1761,7 @@ func GetRepositoryByRef(ref string) (*Repository, error) { } userName, repoName := ref[:n], ref[n+1:] - user, err := Users.GetByUsername(context.TODO(), userName) + user, err := Handle.Users().GetByUsername(context.TODO(), userName) if err != nil { return nil, err } @@ -2577,7 +2577,7 @@ func ForkRepository(doer, owner *User, baseRepo *Repository, name, desc string) } // Remember visibility preference - err = Users.Update(context.TODO(), owner.ID, UpdateUserOptions{LastRepoVisibility: &repo.IsPrivate}) + err = Handle.Users().Update(context.TODO(), owner.ID, UpdateUserOptions{LastRepoVisibility: &repo.IsPrivate}) if err != nil { return nil, errors.Wrap(err, "update user") } diff --git a/internal/database/repositories_test.go b/internal/database/repositories_test.go index 69220688d..22be71b5e 100644 --- a/internal/database/repositories_test.go +++ b/internal/database/repositories_test.go @@ -245,7 +245,7 @@ func reposGetByName(t *testing.T, ctx context.Context, s *RepositoriesStore) { func reposStar(t *testing.T, ctx context.Context, s *RepositoriesStore) { repo1, err := s.Create(ctx, 1, CreateRepoOptions{Name: "repo1"}) require.NoError(t, err) - usersStore := NewUsersStore(s.db) + usersStore := newUsersStore(s.db) alice, err := usersStore.Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) require.NoError(t, err) diff --git a/internal/database/update.go b/internal/database/update.go index aef43d9b4..29c01cb78 100644 --- a/internal/database/update.go +++ b/internal/database/update.go @@ -73,7 +73,7 @@ func PushUpdate(opts PushUpdateOptions) (err error) { return fmt.Errorf("open repository: %v", err) } - owner, err := Users.GetByUsername(ctx, opts.RepoUserName) + owner, err := Handle.Users().GetByUsername(ctx, opts.RepoUserName) if err != nil { return fmt.Errorf("GetUserByName: %v", err) } diff --git a/internal/database/users.go b/internal/database/users.go index 018caa93a..9ddccbe05 100644 --- a/internal/database/users.go +++ b/internal/database/users.go @@ -32,130 +32,13 @@ import ( "gogs.io/gogs/internal/userutil" ) -// UsersStore is the persistent interface for users. -type UsersStore interface { - // Authenticate validates username and password via given login source ID. It - // returns ErrUserNotExist when the user was not found. - // - // When the "loginSourceID" is negative, it aborts the process and returns - // ErrUserNotExist if the user was not found in the database. - // - // When the "loginSourceID" is non-negative, it returns ErrLoginSourceMismatch - // if the user has different login source ID than the "loginSourceID". - // - // When the "loginSourceID" is positive, it tries to authenticate via given - // login source and creates a new user when not yet exists in the database. - Authenticate(ctx context.Context, username, password string, loginSourceID int64) (*User, error) - // Create creates a new user and persists to database. It returns - // ErrNameNotAllowed if the given name or pattern of the name is not allowed as - // a username, or ErrUserAlreadyExist when a user with same name already exists, - // or ErrEmailAlreadyUsed if the email has been verified by another user. - Create(ctx context.Context, username, email string, opts CreateUserOptions) (*User, error) - - // GetByEmail returns the user (not organization) with given email. It ignores - // records with unverified emails and returns ErrUserNotExist when not found. - GetByEmail(ctx context.Context, email string) (*User, error) - // GetByID returns the user with given ID. It returns ErrUserNotExist when not - // found. - GetByID(ctx context.Context, id int64) (*User, error) - // GetByUsername returns the user with given username. It returns - // ErrUserNotExist when not found. - GetByUsername(ctx context.Context, username string) (*User, error) - // GetByKeyID returns the owner of given public key ID. It returns - // ErrUserNotExist when not found. - GetByKeyID(ctx context.Context, keyID int64) (*User, error) - // GetMailableEmailsByUsernames returns a list of verified primary email - // addresses (where email notifications are sent to) of users with given list of - // usernames. Non-existing usernames are ignored. - GetMailableEmailsByUsernames(ctx context.Context, usernames []string) ([]string, error) - // SearchByName returns a list of users whose username or full name matches the - // given keyword case-insensitively. Results are paginated by given page and - // page size, and sorted by the given order (e.g. "id DESC"). A total count of - // all results is also returned. If the order is not given, it's up to the - // database to decide. - SearchByName(ctx context.Context, keyword string, page, pageSize int, orderBy string) ([]*User, int64, error) - - // IsUsernameUsed returns true if the given username has been used other than - // the excluded user (a non-positive ID effectively meaning check against all - // users). - IsUsernameUsed(ctx context.Context, username string, excludeUserId int64) bool - // ChangeUsername changes the username of the given user and updates all - // references to the old username. It returns ErrNameNotAllowed if the given - // name or pattern of the name is not allowed as a username, or - // ErrUserAlreadyExist when another user with same name already exists. - ChangeUsername(ctx context.Context, userID int64, newUsername string) error - // Update updates fields for the given user. - Update(ctx context.Context, userID int64, opts UpdateUserOptions) error - // UseCustomAvatar uses the given avatar as the user custom avatar. - UseCustomAvatar(ctx context.Context, userID int64, avatar []byte) error - - // DeleteCustomAvatar deletes the current user custom avatar and falls back to - // use look up avatar by email. - DeleteCustomAvatar(ctx context.Context, userID int64) error - // DeleteByID deletes the given user and all their resources. It returns - // ErrUserOwnRepos when the user still has repository ownership, or returns - // ErrUserHasOrgs when the user still has organization membership. It is more - // performant to skip rewriting the "authorized_keys" file for individual - // deletion in a batch operation. - DeleteByID(ctx context.Context, userID int64, skipRewriteAuthorizedKeys bool) error - // DeleteInactivated deletes all inactivated users. - DeleteInactivated() error - - // AddEmail adds a new email address to given user. It returns - // ErrEmailAlreadyUsed if the email has been verified by another user. - AddEmail(ctx context.Context, userID int64, email string, isActivated bool) error - // GetEmail returns the email address of the given user. If `needsActivated` is - // true, only activated email will be returned, otherwise, it may return - // inactivated email addresses. It returns ErrEmailNotExist when no qualified - // email is not found. - GetEmail(ctx context.Context, userID int64, email string, needsActivated bool) (*EmailAddress, error) - // ListEmails returns all email addresses of the given user. It always includes - // a primary email address. - ListEmails(ctx context.Context, userID int64) ([]*EmailAddress, error) - // MarkEmailActivated marks the email address of the given user as activated, - // and new rands are generated for the user. - MarkEmailActivated(ctx context.Context, userID int64, email string) error - // MarkEmailPrimary marks the email address of the given user as primary. It - // returns ErrEmailNotExist when the email is not found for the user, and - // ErrEmailNotActivated when the email is not activated. - MarkEmailPrimary(ctx context.Context, userID int64, email string) error - // DeleteEmail deletes the email address of the given user. - DeleteEmail(ctx context.Context, userID int64, email string) error - - // Follow marks the user to follow the other user. - Follow(ctx context.Context, userID, followID int64) error - // Unfollow removes the mark the user to follow the other user. - Unfollow(ctx context.Context, userID, followID int64) error - // IsFollowing returns true if the user is following the other user. - IsFollowing(ctx context.Context, userID, followID int64) bool - // ListFollowers returns a list of users that are following the given user. - // Results are paginated by given page and page size, and sorted by the time of - // follow in descending order. - ListFollowers(ctx context.Context, userID int64, page, pageSize int) ([]*User, error) - // ListFollowings returns a list of users that are followed by the given user. - // Results are paginated by given page and page size, and sorted by the time of - // follow in descending order. - ListFollowings(ctx context.Context, userID int64, page, pageSize int) ([]*User, error) - - // List returns a list of users. Results are paginated by given page and page - // size, and sorted by primary key (id) in ascending order. - List(ctx context.Context, page, pageSize int) ([]*User, error) - // Count returns the total number of users. - Count(ctx context.Context) int64 +// UsersStore is the storage layer for users. +type UsersStore struct { + db *gorm.DB } -var Users UsersStore - -var _ UsersStore = (*usersStore)(nil) - -type usersStore struct { - *gorm.DB -} - -// NewUsersStore returns a persistent interface for users with given database -// connection. -func NewUsersStore(db *gorm.DB) UsersStore { - return &usersStore{DB: db} +func newUsersStore(db *gorm.DB) *UsersStore { + return &UsersStore{db: db} } type ErrLoginSourceMismatch struct { @@ -165,18 +48,28 @@ type ErrLoginSourceMismatch struct { // IsErrLoginSourceMismatch returns true if the underlying error has the type // ErrLoginSourceMismatch. func IsErrLoginSourceMismatch(err error) bool { - _, ok := errors.Cause(err).(ErrLoginSourceMismatch) - return ok + return errors.As(err, &ErrLoginSourceMismatch{}) } func (err ErrLoginSourceMismatch) Error() string { return fmt.Sprintf("login source mismatch: %v", err.args) } -func (s *usersStore) Authenticate(ctx context.Context, login, password string, loginSourceID int64) (*User, error) { +// Authenticate validates username and password via given login source ID. It +// returns ErrUserNotExist when the user was not found. +// +// When the "loginSourceID" is negative, it aborts the process and returns +// ErrUserNotExist if the user was not found in the database. +// +// When the "loginSourceID" is non-negative, it returns ErrLoginSourceMismatch +// if the user has different login source ID than the "loginSourceID". +// +// When the "loginSourceID" is positive, it tries to authenticate via given +// login source and creates a new user when not yet exists in the database. +func (s *UsersStore) Authenticate(ctx context.Context, login, password string, loginSourceID int64) (*User, error) { login = strings.ToLower(login) - query := s.WithContext(ctx) + query := s.db.WithContext(ctx) if strings.Contains(login, "@") { query = query.Where("email = ?", login) } else { @@ -221,7 +114,7 @@ func (s *usersStore) Authenticate(ctx context.Context, login, password string, l createNewUser = true } - source, err := newLoginSourcesStore(s.DB, loadedLoginSourceFilesStore).GetByID(ctx, authSourceID) + source, err := newLoginSourcesStore(s.db, loadedLoginSourceFilesStore).GetByID(ctx, authSourceID) if err != nil { return nil, errors.Wrap(err, "get login source") } @@ -257,7 +150,11 @@ func (s *usersStore) Authenticate(ctx context.Context, login, password string, l ) } -func (s *usersStore) ChangeUsername(ctx context.Context, userID int64, newUsername string) error { +// ChangeUsername changes the username of the given user and updates all +// references to the old username. It returns ErrNameNotAllowed if the given +// name or pattern of the name is not allowed as a username, or +// ErrUserAlreadyExist when another user with same name already exists. +func (s *UsersStore) ChangeUsername(ctx context.Context, userID int64, newUsername string) error { err := isUsernameAllowed(newUsername) if err != nil { return err @@ -276,7 +173,7 @@ func (s *usersStore) ChangeUsername(ctx context.Context, userID int64, newUserna return errors.Wrap(err, "get user") } - return s.WithContext(ctx).Transaction(func(tx *gorm.DB) error { + return s.db.WithContext(ctx).Transaction(func(tx *gorm.DB) error { err := tx.Model(&User{}). Where("id = ?", user.ID). Updates(map[string]any{ @@ -338,9 +235,10 @@ func (s *usersStore) ChangeUsername(ctx context.Context, userID int64, newUserna }) } -func (s *usersStore) Count(ctx context.Context) int64 { +// Count returns the total number of users. +func (s *UsersStore) Count(ctx context.Context) int64 { var count int64 - s.WithContext(ctx).Model(&User{}).Where("type = ?", UserTypeIndividual).Count(&count) + s.db.WithContext(ctx).Model(&User{}).Where("type = ?", UserTypeIndividual).Count(&count) return count } @@ -362,8 +260,7 @@ type ErrUserAlreadyExist struct { // IsErrUserAlreadyExist returns true if the underlying error has the type // ErrUserAlreadyExist. func IsErrUserAlreadyExist(err error) bool { - _, ok := errors.Cause(err).(ErrUserAlreadyExist) - return ok + return errors.As(err, &ErrUserAlreadyExist{}) } func (err ErrUserAlreadyExist) Error() string { @@ -377,8 +274,7 @@ type ErrEmailAlreadyUsed struct { // IsErrEmailAlreadyUsed returns true if the underlying error has the type // ErrEmailAlreadyUsed. func IsErrEmailAlreadyUsed(err error) bool { - _, ok := errors.Cause(err).(ErrEmailAlreadyUsed) - return ok + return errors.As(err, &ErrEmailAlreadyUsed{}) } func (err ErrEmailAlreadyUsed) Email() string { @@ -393,7 +289,11 @@ func (err ErrEmailAlreadyUsed) Error() string { return fmt.Sprintf("email has been used: %v", err.args) } -func (s *usersStore) Create(ctx context.Context, username, email string, opts CreateUserOptions) (*User, error) { +// Create creates a new user and persists to database. It returns +// ErrNameNotAllowed if the given name or pattern of the name is not allowed as +// a username, or ErrUserAlreadyExist when a user with same name already exists, +// or ErrEmailAlreadyUsed if the email has been verified by another user. +func (s *UsersStore) Create(ctx context.Context, username, email string, opts CreateUserOptions) (*User, error) { err := isUsernameAllowed(username) if err != nil { return nil, err @@ -446,17 +346,19 @@ func (s *usersStore) Create(ctx context.Context, username, email string, opts Cr } user.Password = userutil.EncodePassword(user.Password, user.Salt) - return user, s.WithContext(ctx).Create(user).Error + return user, s.db.WithContext(ctx).Create(user).Error } -func (s *usersStore) DeleteCustomAvatar(ctx context.Context, userID int64) error { +// DeleteCustomAvatar deletes the current user custom avatar and falls back to +// use look up avatar by email. +func (s *UsersStore) DeleteCustomAvatar(ctx context.Context, userID int64) error { _ = os.Remove(userutil.CustomAvatarPath(userID)) - return s.WithContext(ctx). + return s.db.WithContext(ctx). Model(&User{}). Where("id = ?", userID). Updates(map[string]any{ "use_custom_avatar": false, - "updated_unix": s.NowFunc().Unix(), + "updated_unix": s.db.NowFunc().Unix(), }). Error } @@ -468,8 +370,7 @@ type ErrUserOwnRepos struct { // IsErrUserOwnRepos returns true if the underlying error has the type // ErrUserOwnRepos. func IsErrUserOwnRepos(err error) bool { - _, ok := errors.Cause(err).(ErrUserOwnRepos) - return ok + return errors.As(err, &ErrUserOwnRepos{}) } func (err ErrUserOwnRepos) Error() string { @@ -483,15 +384,19 @@ type ErrUserHasOrgs struct { // IsErrUserHasOrgs returns true if the underlying error has the type // ErrUserHasOrgs. func IsErrUserHasOrgs(err error) bool { - _, ok := errors.Cause(err).(ErrUserHasOrgs) - return ok + return errors.As(err, &ErrUserHasOrgs{}) } func (err ErrUserHasOrgs) Error() string { return fmt.Sprintf("user still has organization membership: %v", err.args) } -func (s *usersStore) DeleteByID(ctx context.Context, userID int64, skipRewriteAuthorizedKeys bool) error { +// DeleteByID deletes the given user and all their resources. It returns +// ErrUserOwnRepos when the user still has repository ownership, or returns +// ErrUserHasOrgs when the user still has organization membership. It is more +// performant to skip rewriting the "authorized_keys" file for individual +// deletion in a batch operation. +func (s *UsersStore) DeleteByID(ctx context.Context, userID int64, skipRewriteAuthorizedKeys bool) error { user, err := s.GetByID(ctx, userID) if err != nil { if IsErrUserNotExist(err) { @@ -500,17 +405,17 @@ func (s *usersStore) DeleteByID(ctx context.Context, userID int64, skipRewriteAu return errors.Wrap(err, "get user") } - // Double check the user is not a direct owner of any repository and not a + // Double-check the user is not a direct owner of any repository and not a // member of any organization. var count int64 - err = s.WithContext(ctx).Model(&Repository{}).Where("owner_id = ?", userID).Count(&count).Error + err = s.db.WithContext(ctx).Model(&Repository{}).Where("owner_id = ?", userID).Count(&count).Error if err != nil { return errors.Wrap(err, "count repositories") } else if count > 0 { return ErrUserOwnRepos{args: errutil.Args{"userID": userID}} } - err = s.WithContext(ctx).Model(&OrgUser{}).Where("uid = ?", userID).Count(&count).Error + err = s.db.WithContext(ctx).Model(&OrgUser{}).Where("uid = ?", userID).Count(&count).Error if err != nil { return errors.Wrap(err, "count organization membership") } else if count > 0 { @@ -518,7 +423,7 @@ func (s *usersStore) DeleteByID(ctx context.Context, userID int64, skipRewriteAu } needsRewriteAuthorizedKeys := false - err = s.WithContext(ctx).Transaction(func(tx *gorm.DB) error { + err = s.db.WithContext(ctx).Transaction(func(tx *gorm.DB) error { /* Equivalent SQL for PostgreSQL: @@ -645,7 +550,7 @@ func (s *usersStore) DeleteByID(ctx context.Context, userID int64, skipRewriteAu _ = os.Remove(userutil.CustomAvatarPath(userID)) if needsRewriteAuthorizedKeys { - err = newPublicKeysStore(s.DB).RewriteAuthorizedKeys() + err = newPublicKeysStore(s.db).RewriteAuthorizedKeys() if err != nil { return errors.Wrap(err, `rewrite "authorized_keys" file`) } @@ -653,11 +558,13 @@ func (s *usersStore) DeleteByID(ctx context.Context, userID int64, skipRewriteAu return nil } +// DeleteInactivated deletes all inactivated users. +// // NOTE: We do not take context.Context here because this operation in practice // could much longer than the general request timeout (e.g. one minute). -func (s *usersStore) DeleteInactivated() error { +func (s *UsersStore) DeleteInactivated() error { var userIDs []int64 - err := s.Model(&User{}).Where("is_active = ?", false).Pluck("id", &userIDs).Error + err := s.db.Model(&User{}).Where("is_active = ?", false).Pluck("id", &userIDs).Error if err != nil { return errors.Wrap(err, "get inactivated user IDs") } @@ -672,14 +579,14 @@ func (s *usersStore) DeleteInactivated() error { return errors.Wrapf(err, "delete user with ID %d", userID) } } - err = newPublicKeysStore(s.DB).RewriteAuthorizedKeys() + err = newPublicKeysStore(s.db).RewriteAuthorizedKeys() if err != nil { return errors.Wrap(err, `rewrite "authorized_keys" file`) } return nil } -func (*usersStore) recountFollows(tx *gorm.DB, userID, followID int64) error { +func (*UsersStore) recountFollows(tx *gorm.DB, userID, followID int64) error { /* Equivalent SQL for PostgreSQL: @@ -722,12 +629,13 @@ func (*usersStore) recountFollows(tx *gorm.DB, userID, followID int64) error { return nil } -func (s *usersStore) Follow(ctx context.Context, userID, followID int64) error { +// Follow marks the user to follow the other user. +func (s *UsersStore) Follow(ctx context.Context, userID, followID int64) error { if userID == followID { return nil } - return s.WithContext(ctx).Transaction(func(tx *gorm.DB) error { + return s.db.WithContext(ctx).Transaction(func(tx *gorm.DB) error { f := &Follow{ UserID: userID, FollowID: followID, @@ -743,12 +651,13 @@ func (s *usersStore) Follow(ctx context.Context, userID, followID int64) error { }) } -func (s *usersStore) Unfollow(ctx context.Context, userID, followID int64) error { +// Unfollow removes the mark the user to follow the other user. +func (s *UsersStore) Unfollow(ctx context.Context, userID, followID int64) error { if userID == followID { return nil } - return s.WithContext(ctx).Transaction(func(tx *gorm.DB) error { + return s.db.WithContext(ctx).Transaction(func(tx *gorm.DB) error { err := tx.Where("user_id = ? AND follow_id = ?", userID, followID).Delete(&Follow{}).Error if err != nil { return errors.Wrap(err, "delete") @@ -757,8 +666,9 @@ func (s *usersStore) Unfollow(ctx context.Context, userID, followID int64) error }) } -func (s *usersStore) IsFollowing(ctx context.Context, userID, followID int64) bool { - return s.WithContext(ctx).Where("user_id = ? AND follow_id = ?", userID, followID).First(&Follow{}).Error == nil +// IsFollowing returns true if the user is following the other user. +func (s *UsersStore) IsFollowing(ctx context.Context, userID, followID int64) bool { + return s.db.WithContext(ctx).Where("user_id = ? AND follow_id = ?", userID, followID).First(&Follow{}).Error == nil } var _ errutil.NotFound = (*ErrUserNotExist)(nil) @@ -782,7 +692,9 @@ func (ErrUserNotExist) NotFound() bool { return true } -func (s *usersStore) GetByEmail(ctx context.Context, email string) (*User, error) { +// GetByEmail returns the user (not organization) with given email. It ignores +// records with unverified emails and returns ErrUserNotExist when not found. +func (s *UsersStore) GetByEmail(ctx context.Context, email string) (*User, error) { if email == "" { return nil, ErrUserNotExist{args: errutil.Args{"email": email}} } @@ -801,17 +713,17 @@ func (s *usersStore) GetByEmail(ctx context.Context, email string) (*User, error ) */ user := new(User) - err := s.WithContext(ctx). + err := s.db.WithContext(ctx). Joins(dbutil.Quote("LEFT JOIN email_address ON email_address.uid = %s.id", "user"), true). Where(dbutil.Quote("%s.type = ?", "user"), UserTypeIndividual). - Where(s. + Where(s.db. Where(dbutil.Quote("%[1]s.email = ? AND %[1]s.is_active = ?", "user"), email, true). Or("email_address.email = ? AND email_address.is_activated = ?", email, true), ). First(&user). Error if err != nil { - if err == gorm.ErrRecordNotFound { + if errors.Is(err, gorm.ErrRecordNotFound) { return nil, ErrUserNotExist{args: errutil.Args{"email": email}} } return nil, err @@ -819,11 +731,13 @@ func (s *usersStore) GetByEmail(ctx context.Context, email string) (*User, error return user, nil } -func (s *usersStore) GetByID(ctx context.Context, id int64) (*User, error) { +// GetByID returns the user with given ID. It returns ErrUserNotExist when not +// found. +func (s *UsersStore) GetByID(ctx context.Context, id int64) (*User, error) { user := new(User) - err := s.WithContext(ctx).Where("id = ?", id).First(user).Error + err := s.db.WithContext(ctx).Where("id = ?", id).First(user).Error if err != nil { - if err == gorm.ErrRecordNotFound { + if errors.Is(err, gorm.ErrRecordNotFound) { return nil, ErrUserNotExist{args: errutil.Args{"userID": id}} } return nil, err @@ -831,11 +745,13 @@ func (s *usersStore) GetByID(ctx context.Context, id int64) (*User, error) { return user, nil } -func (s *usersStore) GetByUsername(ctx context.Context, username string) (*User, error) { +// GetByUsername returns the user with given username. It returns +// ErrUserNotExist when not found. +func (s *UsersStore) GetByUsername(ctx context.Context, username string) (*User, error) { user := new(User) - err := s.WithContext(ctx).Where("lower_name = ?", strings.ToLower(username)).First(user).Error + err := s.db.WithContext(ctx).Where("lower_name = ?", strings.ToLower(username)).First(user).Error if err != nil { - if err == gorm.ErrRecordNotFound { + if errors.Is(err, gorm.ErrRecordNotFound) { return nil, ErrUserNotExist{args: errutil.Args{"name": username}} } return nil, err @@ -843,15 +759,17 @@ func (s *usersStore) GetByUsername(ctx context.Context, username string) (*User, return user, nil } -func (s *usersStore) GetByKeyID(ctx context.Context, keyID int64) (*User, error) { +// GetByKeyID returns the owner of given public key ID. It returns +// ErrUserNotExist when not found. +func (s *UsersStore) GetByKeyID(ctx context.Context, keyID int64) (*User, error) { user := new(User) - err := s.WithContext(ctx). + err := s.db.WithContext(ctx). Joins(dbutil.Quote("JOIN public_key ON public_key.owner_id = %s.id", "user")). Where("public_key.id = ?", keyID). First(user). Error if err != nil { - if err == gorm.ErrRecordNotFound { + if errors.Is(err, gorm.ErrRecordNotFound) { return nil, ErrUserNotExist{args: errutil.Args{"keyID": keyID}} } return nil, err @@ -859,29 +777,37 @@ func (s *usersStore) GetByKeyID(ctx context.Context, keyID int64) (*User, error) return user, nil } -func (s *usersStore) GetMailableEmailsByUsernames(ctx context.Context, usernames []string) ([]string, error) { +// GetMailableEmailsByUsernames returns a list of verified primary email +// addresses (where email notifications are sent to) of users with given list of +// usernames. Non-existing usernames are ignored. +func (s *UsersStore) GetMailableEmailsByUsernames(ctx context.Context, usernames []string) ([]string, error) { emails := make([]string, 0, len(usernames)) - return emails, s.WithContext(ctx). + return emails, s.db.WithContext(ctx). Model(&User{}). Select("email"). Where("lower_name IN (?) AND is_active = ?", usernames, true). Find(&emails).Error } -func (s *usersStore) IsUsernameUsed(ctx context.Context, username string, excludeUserId int64) bool { +// IsUsernameUsed returns true if the given username has been used other than +// the excluded user (a non-positive ID effectively meaning check against all +// users). +func (s *UsersStore) IsUsernameUsed(ctx context.Context, username string, excludeUserId int64) bool { if username == "" { return false } - return s.WithContext(ctx). + return s.db.WithContext(ctx). Select("id"). Where("lower_name = ? AND id != ?", strings.ToLower(username), excludeUserId). First(&User{}). Error != gorm.ErrRecordNotFound } -func (s *usersStore) List(ctx context.Context, page, pageSize int) ([]*User, error) { +// List returns a list of users. Results are paginated by given page and page +// size, and sorted by primary key (id) in ascending order. +func (s *UsersStore) List(ctx context.Context, page, pageSize int) ([]*User, error) { users := make([]*User, 0, pageSize) - return users, s.WithContext(ctx). + return users, s.db.WithContext(ctx). Where("type = ?", UserTypeIndividual). Limit(pageSize).Offset((page - 1) * pageSize). Order("id ASC"). @@ -889,7 +815,10 @@ func (s *usersStore) List(ctx context.Context, page, pageSize int) ([]*User, err Error } -func (s *usersStore) ListFollowers(ctx context.Context, userID int64, page, pageSize int) ([]*User, error) { +// ListFollowers returns a list of users that are following the given user. +// Results are paginated by given page and page size, and sorted by the time of +// follow in descending order. +func (s *UsersStore) ListFollowers(ctx context.Context, userID int64, page, pageSize int) ([]*User, error) { /* Equivalent SQL for PostgreSQL: @@ -900,7 +829,7 @@ func (s *usersStore) ListFollowers(ctx context.Context, userID int64, page, page LIMIT @limit OFFSET @offset */ users := make([]*User, 0, pageSize) - return users, s.WithContext(ctx). + return users, s.db.WithContext(ctx). Joins(dbutil.Quote("LEFT JOIN follow ON follow.user_id = %s.id", "user")). Where("follow.follow_id = ?", userID). Limit(pageSize).Offset((page - 1) * pageSize). @@ -909,7 +838,10 @@ func (s *usersStore) ListFollowers(ctx context.Context, userID int64, page, page Error } -func (s *usersStore) ListFollowings(ctx context.Context, userID int64, page, pageSize int) ([]*User, error) { +// ListFollowings returns a list of users that are followed by the given user. +// Results are paginated by given page and page size, and sorted by the time of +// follow in descending order. +func (s *UsersStore) ListFollowings(ctx context.Context, userID int64, page, pageSize int) ([]*User, error) { /* Equivalent SQL for PostgreSQL: @@ -920,7 +852,7 @@ func (s *usersStore) ListFollowings(ctx context.Context, userID int64, page, pag LIMIT @limit OFFSET @offset */ users := make([]*User, 0, pageSize) - return users, s.WithContext(ctx). + return users, s.db.WithContext(ctx). Joins(dbutil.Quote("LEFT JOIN follow ON follow.follow_id = %s.id", "user")). Where("follow.user_id = ?", userID). Limit(pageSize).Offset((page - 1) * pageSize). @@ -948,8 +880,13 @@ func searchUserByName(ctx context.Context, db *gorm.DB, userType UserType, keywo return users, count, tx.Order(orderBy).Limit(pageSize).Offset((page - 1) * pageSize).Find(&users).Error } -func (s *usersStore) SearchByName(ctx context.Context, keyword string, page, pageSize int, orderBy string) ([]*User, int64, error) { - return searchUserByName(ctx, s.DB, UserTypeIndividual, keyword, page, pageSize, orderBy) +// SearchByName returns a list of users whose username or full name matches the +// given keyword case-insensitively. Results are paginated by given page and +// page size, and sorted by the given order (e.g. "id DESC"). A total count of +// all results is also returned. If the order is not given, it's up to the +// database to decide. +func (s *UsersStore) SearchByName(ctx context.Context, keyword string, page, pageSize int, orderBy string) ([]*User, int64, error) { + return searchUserByName(ctx, s.db, UserTypeIndividual, keyword, page, pageSize, orderBy) } type UpdateUserOptions struct { @@ -979,9 +916,10 @@ type UpdateUserOptions struct { AvatarEmail *string } -func (s *usersStore) Update(ctx context.Context, userID int64, opts UpdateUserOptions) error { +// Update updates fields for the given user. +func (s *UsersStore) Update(ctx context.Context, userID int64, opts UpdateUserOptions) error { updates := map[string]any{ - "updated_unix": s.NowFunc().Unix(), + "updated_unix": s.db.NowFunc().Unix(), } if opts.LoginSource != nil { @@ -1063,26 +1001,29 @@ func (s *usersStore) Update(ctx context.Context, userID int64, opts UpdateUserOp updates["avatar_email"] = strutil.Truncate(*opts.AvatarEmail, 255) } - return s.WithContext(ctx).Model(&User{}).Where("id = ?", userID).Updates(updates).Error + return s.db.WithContext(ctx).Model(&User{}).Where("id = ?", userID).Updates(updates).Error } -func (s *usersStore) UseCustomAvatar(ctx context.Context, userID int64, avatar []byte) error { +// UseCustomAvatar uses the given avatar as the user custom avatar. +func (s *UsersStore) UseCustomAvatar(ctx context.Context, userID int64, avatar []byte) error { err := userutil.SaveAvatar(userID, avatar) if err != nil { return errors.Wrap(err, "save avatar") } - return s.WithContext(ctx). + return s.db.WithContext(ctx). Model(&User{}). Where("id = ?", userID). Updates(map[string]any{ "use_custom_avatar": true, - "updated_unix": s.NowFunc().Unix(), + "updated_unix": s.db.NowFunc().Unix(), }). Error } -func (s *usersStore) AddEmail(ctx context.Context, userID int64, email string, isActivated bool) error { +// AddEmail adds a new email address to given user. It returns +// ErrEmailAlreadyUsed if the email has been verified by another user. +func (s *UsersStore) AddEmail(ctx context.Context, userID int64, email string, isActivated bool) error { email = strings.ToLower(strings.TrimSpace(email)) _, err := s.GetByEmail(ctx, email) if err == nil { @@ -1095,7 +1036,7 @@ func (s *usersStore) AddEmail(ctx context.Context, userID int64, email string, i return errors.Wrap(err, "check user by email") } - return s.WithContext(ctx).Create( + return s.db.WithContext(ctx).Create( &EmailAddress{ UserID: userID, Email: email, @@ -1125,8 +1066,12 @@ func (ErrEmailNotExist) NotFound() bool { return true } -func (s *usersStore) GetEmail(ctx context.Context, userID int64, email string, needsActivated bool) (*EmailAddress, error) { - tx := s.WithContext(ctx).Where("uid = ? AND email = ?", userID, email) +// GetEmail returns the email address of the given user. If `needsActivated` is +// true, only activated email will be returned, otherwise, it may return +// inactivated email addresses. It returns ErrEmailNotExist when no qualified +// email is not found. +func (s *UsersStore) GetEmail(ctx context.Context, userID int64, email string, needsActivated bool) (*EmailAddress, error) { + tx := s.db.WithContext(ctx).Where("uid = ? AND email = ?", userID, email) if needsActivated { tx = tx.Where("is_activated = ?", true) } @@ -1134,7 +1079,7 @@ func (s *usersStore) GetEmail(ctx context.Context, userID int64, email string, n emailAddress := new(EmailAddress) err := tx.First(emailAddress).Error if err != nil { - if err == gorm.ErrRecordNotFound { + if errors.Is(err, gorm.ErrRecordNotFound) { return nil, ErrEmailNotExist{ args: errutil.Args{ "email": email, @@ -1146,14 +1091,16 @@ func (s *usersStore) GetEmail(ctx context.Context, userID int64, email string, n return emailAddress, nil } -func (s *usersStore) ListEmails(ctx context.Context, userID int64) ([]*EmailAddress, error) { +// ListEmails returns all email addresses of the given user. It always includes +// a primary email address. +func (s *UsersStore) ListEmails(ctx context.Context, userID int64) ([]*EmailAddress, error) { user, err := s.GetByID(ctx, userID) if err != nil { return nil, errors.Wrap(err, "get user") } var emails []*EmailAddress - err = s.WithContext(ctx).Where("uid = ?", userID).Order("id ASC").Find(&emails).Error + err = s.db.WithContext(ctx).Where("uid = ?", userID).Order("id ASC").Find(&emails).Error if err != nil { return nil, errors.Wrap(err, "list emails") } @@ -1179,9 +1126,11 @@ func (s *usersStore) ListEmails(ctx context.Context, userID int64) ([]*EmailAddr return emails, nil } -func (s *usersStore) MarkEmailActivated(ctx context.Context, userID int64, email string) error { - return s.WithContext(ctx).Transaction(func(tx *gorm.DB) error { - err := s.WithContext(ctx). +// MarkEmailActivated marks the email address of the given user as activated, +// and new rands are generated for the user. +func (s *UsersStore) MarkEmailActivated(ctx context.Context, userID int64, email string) error { + return s.db.WithContext(ctx).Transaction(func(tx *gorm.DB) error { + err := s.db.WithContext(ctx). Model(&EmailAddress{}). Where("uid = ? AND email = ?", userID, email). Update("is_activated", true). @@ -1190,7 +1139,7 @@ func (s *usersStore) MarkEmailActivated(ctx context.Context, userID int64, email return errors.Wrap(err, "mark email activated") } - return NewUsersStore(tx).Update(ctx, userID, UpdateUserOptions{GenerateNewRands: true}) + return newUsersStore(tx).Update(ctx, userID, UpdateUserOptions{GenerateNewRands: true}) }) } @@ -1209,11 +1158,14 @@ func (err ErrEmailNotVerified) Error() string { return fmt.Sprintf("email has not been verified: %v", err.args) } -func (s *usersStore) MarkEmailPrimary(ctx context.Context, userID int64, email string) error { +// MarkEmailPrimary marks the email address of the given user as primary. It +// returns ErrEmailNotExist when the email is not found for the user, and +// ErrEmailNotActivated when the email is not activated. +func (s *UsersStore) MarkEmailPrimary(ctx context.Context, userID int64, email string) error { var emailAddress EmailAddress - err := s.WithContext(ctx).Where("uid = ? AND email = ?", userID, email).First(&emailAddress).Error + err := s.db.WithContext(ctx).Where("uid = ? AND email = ?", userID, email).First(&emailAddress).Error if err != nil { - if err == gorm.ErrRecordNotFound { + if errors.Is(err, gorm.ErrRecordNotFound) { return ErrEmailNotExist{args: errutil.Args{"email": email}} } return errors.Wrap(err, "get email address") @@ -1228,7 +1180,7 @@ func (s *usersStore) MarkEmailPrimary(ctx context.Context, userID int64, email s return errors.Wrap(err, "get user") } - return s.WithContext(ctx).Transaction(func(tx *gorm.DB) error { + return s.db.WithContext(ctx).Transaction(func(tx *gorm.DB) error { // Make sure the former primary email doesn't disappear. err = tx.FirstOrCreate( &EmailAddress{ @@ -1255,8 +1207,9 @@ func (s *usersStore) MarkEmailPrimary(ctx context.Context, userID int64, email s }) } -func (s *usersStore) DeleteEmail(ctx context.Context, userID int64, email string) error { - return s.WithContext(ctx).Where("uid = ? AND email = ?", userID, email).Delete(&EmailAddress{}).Error +// DeleteEmail deletes the email address of the given user. +func (s *UsersStore) DeleteEmail(ctx context.Context, userID int64, email string) error { + return s.db.WithContext(ctx).Where("uid = ? AND email = ?", userID, email).Delete(&EmailAddress{}).Error } // UserType indicates the type of the user account. @@ -1464,7 +1417,7 @@ func (u *User) AvatarURL() string { // TODO(unknwon): This is also used in templates, which should be fixed by // having a dedicated type `template.User`. func (u *User) IsFollowing(followID int64) bool { - return Users.IsFollowing(context.TODO(), u.ID, followID) + return Handle.Users().IsFollowing(context.TODO(), u.ID, followID) } // IsUserOrgOwner returns true if the user is in the owner team of the given diff --git a/internal/database/users_test.go b/internal/database/users_test.go index a874d90da..ec2661135 100644 --- a/internal/database/users_test.go +++ b/internal/database/users_test.go @@ -84,13 +84,13 @@ func TestUsers(t *testing.T) { t.Parallel() ctx := context.Background() - db := &usersStore{ - DB: newTestDB(t, "usersStore"), + s := &UsersStore{ + db: newTestDB(t, "UsersStore"), } for _, tc := range []struct { name string - test func(t *testing.T, ctx context.Context, db *usersStore) + test func(t *testing.T, ctx context.Context, s *UsersStore) }{ {"Authenticate", usersAuthenticate}, {"ChangeUsername", usersChangeUsername}, @@ -123,10 +123,10 @@ func TestUsers(t *testing.T) { } { t.Run(tc.name, func(t *testing.T) { t.Cleanup(func() { - err := clearTables(t, db.DB) + err := clearTables(t, s.db) require.NoError(t, err) }) - tc.test(t, ctx, db) + tc.test(t, ctx, s) }) if t.Failed() { break @@ -134,9 +134,9 @@ func TestUsers(t *testing.T) { } } -func usersAuthenticate(t *testing.T, ctx context.Context, db *usersStore) { +func usersAuthenticate(t *testing.T, ctx context.Context, s *UsersStore) { password := "pa$$word" - alice, err := db.Create(ctx, "alice", "alice@example.com", + alice, err := s.Create(ctx, "alice", "alice@example.com", CreateUserOptions{ Password: password, }, @@ -144,38 +144,38 @@ func usersAuthenticate(t *testing.T, ctx context.Context, db *usersStore) { require.NoError(t, err) t.Run("user not found", func(t *testing.T) { - _, err := db.Authenticate(ctx, "bob", password, -1) + _, err := s.Authenticate(ctx, "bob", password, -1) wantErr := auth.ErrBadCredentials{Args: map[string]any{"login": "bob"}} assert.Equal(t, wantErr, err) }) t.Run("invalid password", func(t *testing.T) { - _, err := db.Authenticate(ctx, alice.Name, "bad_password", -1) + _, err := s.Authenticate(ctx, alice.Name, "bad_password", -1) wantErr := auth.ErrBadCredentials{Args: map[string]any{"login": alice.Name, "userID": alice.ID}} assert.Equal(t, wantErr, err) }) t.Run("via email and password", func(t *testing.T) { - user, err := db.Authenticate(ctx, alice.Email, password, -1) + user, err := s.Authenticate(ctx, alice.Email, password, -1) require.NoError(t, err) assert.Equal(t, alice.Name, user.Name) }) t.Run("via username and password", func(t *testing.T) { - user, err := db.Authenticate(ctx, alice.Name, password, -1) + user, err := s.Authenticate(ctx, alice.Name, password, -1) require.NoError(t, err) assert.Equal(t, alice.Name, user.Name) }) t.Run("login source mismatch", func(t *testing.T) { - _, err := db.Authenticate(ctx, alice.Email, password, 1) + _, err := s.Authenticate(ctx, alice.Email, password, 1) gotErr := fmt.Sprintf("%v", err) wantErr := ErrLoginSourceMismatch{args: map[string]any{"actual": 0, "expect": 1}}.Error() assert.Equal(t, wantErr, gotErr) }) t.Run("via login source", func(t *testing.T) { - loginSourcesStore := newLoginSourcesStore(db.DB, NewMockLoginSourceFilesStore()) + loginSourcesStore := newLoginSourcesStore(s.db, NewMockLoginSourceFilesStore()) loginSource, err := loginSourcesStore.Create( ctx, CreateLoginSourceOptions{ @@ -189,7 +189,7 @@ func usersAuthenticate(t *testing.T, ctx context.Context, db *usersStore) { ) require.NoError(t, err) - bob, err := db.Create(ctx, "bob", "bob@example.com", + bob, err := s.Create(ctx, "bob", "bob@example.com", CreateUserOptions{ Password: password, LoginSource: 1, @@ -197,13 +197,13 @@ func usersAuthenticate(t *testing.T, ctx context.Context, db *usersStore) { ) require.NoError(t, err) - user, err := db.Authenticate(ctx, bob.Email, password, loginSource.ID) + user, err := s.Authenticate(ctx, bob.Email, password, loginSource.ID) require.NoError(t, err) assert.Equal(t, bob.Name, user.Name) }) t.Run("new user via login source", func(t *testing.T) { - loginSourcesStore := newLoginSourcesStore(db.DB, NewMockLoginSourceFilesStore()) + loginSourcesStore := newLoginSourcesStore(s.db, NewMockLoginSourceFilesStore()) loginSource, err := loginSourcesStore.Create( ctx, CreateLoginSourceOptions{ @@ -220,18 +220,18 @@ func usersAuthenticate(t *testing.T, ctx context.Context, db *usersStore) { ) require.NoError(t, err) - user, err := db.Authenticate(ctx, "cindy", password, loginSource.ID) + user, err := s.Authenticate(ctx, "cindy", password, loginSource.ID) require.NoError(t, err) assert.Equal(t, "cindy", user.Name) - user, err = db.GetByUsername(ctx, "cindy") + user, err = s.GetByUsername(ctx, "cindy") require.NoError(t, err) assert.Equal(t, "cindy@example.com", user.Email) }) } -func usersChangeUsername(t *testing.T, ctx context.Context, db *usersStore) { - alice, err := db.Create( +func usersChangeUsername(t *testing.T, ctx context.Context, s *UsersStore) { + alice, err := s.Create( ctx, "alice", "alice@example.com", @@ -242,7 +242,7 @@ func usersChangeUsername(t *testing.T, ctx context.Context, db *usersStore) { require.NoError(t, err) t.Run("name not allowed", func(t *testing.T) { - err := db.ChangeUsername(ctx, alice.ID, "-") + err := s.ChangeUsername(ctx, alice.ID, "-") wantErr := ErrNameNotAllowed{ args: errutil.Args{ "reason": "reserved", @@ -253,7 +253,7 @@ func usersChangeUsername(t *testing.T, ctx context.Context, db *usersStore) { }) t.Run("name already exists", func(t *testing.T) { - bob, err := db.Create( + bob, err := s.Create( ctx, "bob", "bob@example.com", @@ -263,7 +263,7 @@ func usersChangeUsername(t *testing.T, ctx context.Context, db *usersStore) { ) require.NoError(t, err) - err = db.ChangeUsername(ctx, alice.ID, bob.Name) + err = s.ChangeUsername(ctx, alice.ID, bob.Name) wantErr := ErrUserAlreadyExist{ args: errutil.Args{ "name": bob.Name, @@ -294,7 +294,7 @@ func usersChangeUsername(t *testing.T, ctx context.Context, db *usersStore) { require.NoError(t, err) defer func() { _ = os.RemoveAll(tempServerAppDataPath) }() - repo, err := newReposStore(db.DB).Create( + repo, err := newReposStore(s.db).Create( ctx, alice.ID, CreateRepoOptions{ @@ -304,10 +304,10 @@ func usersChangeUsername(t *testing.T, ctx context.Context, db *usersStore) { require.NoError(t, err) // TODO: Use PullRequests.Create to replace SQL hack when the method is available. - err = db.Exec(`INSERT INTO pull_request (head_user_name) VALUES (?)`, alice.Name).Error + err = s.db.Exec(`INSERT INTO pull_request (head_user_name) VALUES (?)`, alice.Name).Error require.NoError(t, err) - err = db.Model(&User{}).Where("id = ?", alice.ID).Update("updated_unix", 0).Error + err = s.db.Model(&User{}).Where("id = ?", alice.ID).Update("updated_unix", 0).Error require.NoError(t, err) err = os.MkdirAll(repoutil.UserPath(alice.Name), os.ModePerm) @@ -320,12 +320,12 @@ func usersChangeUsername(t *testing.T, ctx context.Context, db *usersStore) { // Make sure mock data is set up correctly // TODO: Use PullRequests.GetByID to replace SQL hack when the method is available. var headUserName string - err = db.Model(&PullRequest{}).Select("head_user_name").Row().Scan(&headUserName) + err = s.db.Model(&PullRequest{}).Select("head_user_name").Row().Scan(&headUserName) require.NoError(t, err) assert.Equal(t, headUserName, alice.Name) var updatedUnix int64 - err = db.Model(&User{}).Select("updated_unix").Where("id = ?", alice.ID).Row().Scan(&updatedUnix) + err = s.db.Model(&User{}).Select("updated_unix").Where("id = ?", alice.ID).Row().Scan(&updatedUnix) require.NoError(t, err) assert.Equal(t, int64(0), updatedUnix) @@ -334,11 +334,11 @@ func usersChangeUsername(t *testing.T, ctx context.Context, db *usersStore) { assert.True(t, osutil.IsExist(repoutil.RepositoryLocalWikiPath(repo.ID))) const newUsername = "alice-new" - err = db.ChangeUsername(ctx, alice.ID, newUsername) + err = s.ChangeUsername(ctx, alice.ID, newUsername) require.NoError(t, err) // TODO: Use PullRequests.GetByID to replace SQL hack when the method is available. - err = db.Model(&PullRequest{}).Select("head_user_name").Row().Scan(&headUserName) + err = s.db.Model(&PullRequest{}).Select("head_user_name").Row().Scan(&headUserName) require.NoError(t, err) assert.Equal(t, headUserName, newUsername) @@ -347,44 +347,44 @@ func usersChangeUsername(t *testing.T, ctx context.Context, db *usersStore) { assert.False(t, osutil.IsExist(repoutil.RepositoryLocalPath(repo.ID))) assert.False(t, osutil.IsExist(repoutil.RepositoryLocalWikiPath(repo.ID))) - alice, err = db.GetByID(ctx, alice.ID) + alice, err = s.GetByID(ctx, alice.ID) require.NoError(t, err) assert.Equal(t, newUsername, alice.Name) - assert.Equal(t, db.NowFunc().Unix(), alice.UpdatedUnix) + assert.Equal(t, s.db.NowFunc().Unix(), alice.UpdatedUnix) // Change the cases of the username should just be fine - err = db.ChangeUsername(ctx, alice.ID, strings.ToUpper(newUsername)) + err = s.ChangeUsername(ctx, alice.ID, strings.ToUpper(newUsername)) require.NoError(t, err) - alice, err = db.GetByID(ctx, alice.ID) + alice, err = s.GetByID(ctx, alice.ID) require.NoError(t, err) assert.Equal(t, strings.ToUpper(newUsername), alice.Name) } -func usersCount(t *testing.T, ctx context.Context, db *usersStore) { +func usersCount(t *testing.T, ctx context.Context, s *UsersStore) { // Has no user initially - got := db.Count(ctx) + got := s.Count(ctx) assert.Equal(t, int64(0), got) - _, err := db.Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) + _, err := s.Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) require.NoError(t, err) - got = db.Count(ctx) + got = s.Count(ctx) assert.Equal(t, int64(1), got) // Create an organization shouldn't count // TODO: Use Orgs.Create to replace SQL hack when the method is available. - org1, err := db.Create(ctx, "org1", "org1@example.com", CreateUserOptions{}) + org1, err := s.Create(ctx, "org1", "org1@example.com", CreateUserOptions{}) require.NoError(t, err) - err = db.Exec( + err = s.db.Exec( dbutil.Quote("UPDATE %s SET type = ? WHERE id = ?", "user"), UserTypeOrganization, org1.ID, ).Error require.NoError(t, err) - got = db.Count(ctx) + got = s.Count(ctx) assert.Equal(t, int64(1), got) } -func usersCreate(t *testing.T, ctx context.Context, db *usersStore) { - alice, err := db.Create( +func usersCreate(t *testing.T, ctx context.Context, s *UsersStore) { + alice, err := s.Create( ctx, "alice", "alice@example.com", @@ -395,7 +395,7 @@ func usersCreate(t *testing.T, ctx context.Context, db *usersStore) { require.NoError(t, err) t.Run("name not allowed", func(t *testing.T) { - _, err := db.Create(ctx, "-", "", CreateUserOptions{}) + _, err := s.Create(ctx, "-", "", CreateUserOptions{}) wantErr := ErrNameNotAllowed{ args: errutil.Args{ "reason": "reserved", @@ -406,7 +406,7 @@ func usersCreate(t *testing.T, ctx context.Context, db *usersStore) { }) t.Run("name already exists", func(t *testing.T) { - _, err := db.Create(ctx, alice.Name, "", CreateUserOptions{}) + _, err := s.Create(ctx, alice.Name, "", CreateUserOptions{}) wantErr := ErrUserAlreadyExist{ args: errutil.Args{ "name": alice.Name, @@ -416,7 +416,7 @@ func usersCreate(t *testing.T, ctx context.Context, db *usersStore) { }) t.Run("email already exists", func(t *testing.T) { - _, err := db.Create(ctx, "bob", alice.Email, CreateUserOptions{}) + _, err := s.Create(ctx, "bob", alice.Email, CreateUserOptions{}) wantErr := ErrEmailAlreadyUsed{ args: errutil.Args{ "email": alice.Email, @@ -425,14 +425,14 @@ func usersCreate(t *testing.T, ctx context.Context, db *usersStore) { assert.Equal(t, wantErr, err) }) - user, err := db.GetByUsername(ctx, alice.Name) + user, err := s.GetByUsername(ctx, alice.Name) require.NoError(t, err) - assert.Equal(t, db.NowFunc().Format(time.RFC3339), user.Created.UTC().Format(time.RFC3339)) - assert.Equal(t, db.NowFunc().Format(time.RFC3339), user.Updated.UTC().Format(time.RFC3339)) + assert.Equal(t, s.db.NowFunc().Format(time.RFC3339), user.Created.UTC().Format(time.RFC3339)) + assert.Equal(t, s.db.NowFunc().Format(time.RFC3339), user.Updated.UTC().Format(time.RFC3339)) } -func usersDeleteCustomAvatar(t *testing.T, ctx context.Context, db *usersStore) { - alice, err := db.Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) +func usersDeleteCustomAvatar(t *testing.T, ctx context.Context, s *UsersStore) { + alice, err := s.Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) require.NoError(t, err) avatar, err := public.Files.ReadFile("img/avatar_default.png") @@ -442,74 +442,74 @@ func usersDeleteCustomAvatar(t *testing.T, ctx context.Context, db *usersStore) _ = os.Remove(avatarPath) defer func() { _ = os.Remove(avatarPath) }() - err = db.UseCustomAvatar(ctx, alice.ID, avatar) + err = s.UseCustomAvatar(ctx, alice.ID, avatar) require.NoError(t, err) // Make sure avatar is saved and the user flag is updated. got := osutil.IsFile(avatarPath) assert.True(t, got) - alice, err = db.GetByID(ctx, alice.ID) + alice, err = s.GetByID(ctx, alice.ID) require.NoError(t, err) assert.True(t, alice.UseCustomAvatar) // Delete avatar should remove the file and revert the user flag. - err = db.DeleteCustomAvatar(ctx, alice.ID) + err = s.DeleteCustomAvatar(ctx, alice.ID) require.NoError(t, err) got = osutil.IsFile(avatarPath) assert.False(t, got) - alice, err = db.GetByID(ctx, alice.ID) + alice, err = s.GetByID(ctx, alice.ID) require.NoError(t, err) assert.False(t, alice.UseCustomAvatar) } -func usersDeleteByID(t *testing.T, ctx context.Context, db *usersStore) { - reposStore := newReposStore(db.DB) +func usersDeleteByID(t *testing.T, ctx context.Context, s *UsersStore) { + reposStore := newReposStore(s.db) t.Run("user still has repository ownership", func(t *testing.T) { - alice, err := db.Create(ctx, "alice", "alice@exmaple.com", CreateUserOptions{}) + alice, err := s.Create(ctx, "alice", "alice@exmaple.com", CreateUserOptions{}) require.NoError(t, err) _, err = reposStore.Create(ctx, alice.ID, CreateRepoOptions{Name: "repo1"}) require.NoError(t, err) - err = db.DeleteByID(ctx, alice.ID, false) + err = s.DeleteByID(ctx, alice.ID, false) wantErr := ErrUserOwnRepos{errutil.Args{"userID": alice.ID}} assert.Equal(t, wantErr, err) }) t.Run("user still has organization membership", func(t *testing.T) { - bob, err := db.Create(ctx, "bob", "bob@exmaple.com", CreateUserOptions{}) + bob, err := s.Create(ctx, "bob", "bob@exmaple.com", CreateUserOptions{}) require.NoError(t, err) // TODO: Use Orgs.Create to replace SQL hack when the method is available. - org1, err := db.Create(ctx, "org1", "org1@example.com", CreateUserOptions{}) + org1, err := s.Create(ctx, "org1", "org1@example.com", CreateUserOptions{}) require.NoError(t, err) - err = db.Exec( + err = s.db.Exec( dbutil.Quote("UPDATE %s SET type = ? WHERE id IN (?)", "user"), UserTypeOrganization, org1.ID, ).Error require.NoError(t, err) // TODO: Use Orgs.Join to replace SQL hack when the method is available. - err = db.Exec(`INSERT INTO org_user (uid, org_id) VALUES (?, ?)`, bob.ID, org1.ID).Error + err = s.db.Exec(`INSERT INTO org_user (uid, org_id) VALUES (?, ?)`, bob.ID, org1.ID).Error require.NoError(t, err) - err = db.DeleteByID(ctx, bob.ID, false) + err = s.DeleteByID(ctx, bob.ID, false) wantErr := ErrUserHasOrgs{errutil.Args{"userID": bob.ID}} assert.Equal(t, wantErr, err) }) - cindy, err := db.Create(ctx, "cindy", "cindy@exmaple.com", CreateUserOptions{}) + cindy, err := s.Create(ctx, "cindy", "cindy@exmaple.com", CreateUserOptions{}) require.NoError(t, err) - frank, err := db.Create(ctx, "frank", "frank@exmaple.com", CreateUserOptions{}) + frank, err := s.Create(ctx, "frank", "frank@exmaple.com", CreateUserOptions{}) require.NoError(t, err) repo2, err := reposStore.Create(ctx, cindy.ID, CreateRepoOptions{Name: "repo2"}) require.NoError(t, err) - testUser, err := db.Create(ctx, "testUser", "testUser@exmaple.com", CreateUserOptions{}) + testUser, err := s.Create(ctx, "testUser", "testUser@exmaple.com", CreateUserOptions{}) require.NoError(t, err) // Mock watches, stars and follows @@ -517,9 +517,9 @@ func usersDeleteByID(t *testing.T, ctx context.Context, db *usersStore) { require.NoError(t, err) err = reposStore.Star(ctx, testUser.ID, repo2.ID) require.NoError(t, err) - err = db.Follow(ctx, testUser.ID, cindy.ID) + err = s.Follow(ctx, testUser.ID, cindy.ID) require.NoError(t, err) - err = db.Follow(ctx, frank.ID, testUser.ID) + err = s.Follow(ctx, frank.ID, testUser.ID) require.NoError(t, err) // Mock "authorized_keys" file @@ -530,11 +530,11 @@ func usersDeleteByID(t *testing.T, ctx context.Context, db *usersStore) { Fingerprint: "12:f8:7e:78:61:b4:bf:e2:de:24:15:96:4e:d4:72:53", Content: "test-key-content", } - err = db.DB.Create(publicKey).Error + err = s.db.Create(publicKey).Error require.NoError(t, err) tempSSHRootPath := filepath.Join(os.TempDir(), "usersDeleteByID-tempSSHRootPath") conf.SetMockSSH(t, conf.SSHOpts{RootPath: tempSSHRootPath}) - err = newPublicKeysStore(db.DB).RewriteAuthorizedKeys() + err = newPublicKeysStore(s.db).RewriteAuthorizedKeys() require.NoError(t, err) // Mock issue assignee @@ -546,7 +546,7 @@ func usersDeleteByID(t *testing.T, ctx context.Context, db *usersStore) { Title: "test-issue", AssigneeID: testUser.ID, } - err = db.DB.Create(issue).Error + err = s.db.Create(issue).Error require.NoError(t, err) // Mock random entries in related tables @@ -558,7 +558,7 @@ func usersDeleteByID(t *testing.T, ctx context.Context, db *usersStore) { &IssueUser{UserID: testUser.ID}, &EmailAddress{UserID: testUser.ID}, } { - err = db.DB.Create(table).Error + err = s.db.Create(table).Error require.NoError(t, err, "table for %T", table) } @@ -584,10 +584,10 @@ func usersDeleteByID(t *testing.T, ctx context.Context, db *usersStore) { assert.Equal(t, 2, repo2.NumWatches) // The owner is watching the repo by default. assert.Equal(t, 1, repo2.NumStars) - cindy, err = db.GetByID(ctx, cindy.ID) + cindy, err = s.GetByID(ctx, cindy.ID) require.NoError(t, err) assert.Equal(t, 1, cindy.NumFollowers) - frank, err = db.GetByID(ctx, frank.ID) + frank, err = s.GetByID(ctx, frank.ID) require.NoError(t, err) assert.Equal(t, 1, frank.NumFollowing) @@ -597,7 +597,7 @@ func usersDeleteByID(t *testing.T, ctx context.Context, db *usersStore) { assert.Contains(t, string(authorizedKeys), publicKey.Content) // TODO: Use Issues.GetByID to replace SQL hack when the method is available. - err = db.DB.First(issue, issue.ID).Error + err = s.db.First(issue, issue.ID).Error require.NoError(t, err) assert.Equal(t, testUser.ID, issue.AssigneeID) @@ -615,7 +615,7 @@ func usersDeleteByID(t *testing.T, ctx context.Context, db *usersStore) { } for _, table := range relatedTables { var count int64 - err = db.DB.Model(table).Where(table).Count(&count).Error + err = s.db.Model(table).Where(table).Count(&count).Error require.NoError(t, err, "table for %T", table) assert.NotZero(t, count, "table for %T", table) } @@ -624,7 +624,7 @@ func usersDeleteByID(t *testing.T, ctx context.Context, db *usersStore) { assert.True(t, osutil.IsExist(tempCustomAvatarPath)) // Pull the trigger - err = db.DeleteByID(ctx, testUser.ID, false) + err = s.DeleteByID(ctx, testUser.ID, false) require.NoError(t, err) // Verify after-the-fact data @@ -633,10 +633,10 @@ func usersDeleteByID(t *testing.T, ctx context.Context, db *usersStore) { assert.Equal(t, 1, repo2.NumWatches) // The owner is watching the repo by default. assert.Equal(t, 0, repo2.NumStars) - cindy, err = db.GetByID(ctx, cindy.ID) + cindy, err = s.GetByID(ctx, cindy.ID) require.NoError(t, err) assert.Equal(t, 0, cindy.NumFollowers) - frank, err = db.GetByID(ctx, frank.ID) + frank, err = s.GetByID(ctx, frank.ID) require.NoError(t, err) assert.Equal(t, 0, frank.NumFollowing) @@ -645,7 +645,7 @@ func usersDeleteByID(t *testing.T, ctx context.Context, db *usersStore) { assert.Empty(t, authorizedKeys) // TODO: Use Issues.GetByID to replace SQL hack when the method is available. - err = db.DB.First(issue, issue.ID).Error + err = s.db.First(issue, issue.ID).Error require.NoError(t, err) assert.Equal(t, int64(0), issue.AssigneeID) @@ -662,7 +662,7 @@ func usersDeleteByID(t *testing.T, ctx context.Context, db *usersStore) { &EmailAddress{UserID: testUser.ID}, } { var count int64 - err = db.DB.Model(table).Where(table).Count(&count).Error + err = s.db.Model(table).Where(table).Count(&count).Error require.NoError(t, err, "table for %T", table) assert.Equal(t, int64(0), count, "table for %T", table) } @@ -670,146 +670,146 @@ func usersDeleteByID(t *testing.T, ctx context.Context, db *usersStore) { assert.False(t, osutil.IsExist(tempUserPath)) assert.False(t, osutil.IsExist(tempCustomAvatarPath)) - _, err = db.GetByID(ctx, testUser.ID) + _, err = s.GetByID(ctx, testUser.ID) wantErr := ErrUserNotExist{errutil.Args{"userID": testUser.ID}} assert.Equal(t, wantErr, err) } -func usersDeleteInactivated(t *testing.T, ctx context.Context, db *usersStore) { +func usersDeleteInactivated(t *testing.T, ctx context.Context, s *UsersStore) { // User with repository ownership should be skipped - alice, err := db.Create(ctx, "alice", "alice@exmaple.com", CreateUserOptions{}) + alice, err := s.Create(ctx, "alice", "alice@exmaple.com", CreateUserOptions{}) require.NoError(t, err) - reposStore := newReposStore(db.DB) + reposStore := newReposStore(s.db) _, err = reposStore.Create(ctx, alice.ID, CreateRepoOptions{Name: "repo1"}) require.NoError(t, err) // User with organization membership should be skipped - bob, err := db.Create(ctx, "bob", "bob@exmaple.com", CreateUserOptions{}) + bob, err := s.Create(ctx, "bob", "bob@exmaple.com", CreateUserOptions{}) require.NoError(t, err) // TODO: Use Orgs.Create to replace SQL hack when the method is available. - org1, err := db.Create(ctx, "org1", "org1@example.com", CreateUserOptions{}) + org1, err := s.Create(ctx, "org1", "org1@example.com", CreateUserOptions{}) require.NoError(t, err) - err = db.Exec( + err = s.db.Exec( dbutil.Quote("UPDATE %s SET type = ? WHERE id IN (?)", "user"), UserTypeOrganization, org1.ID, ).Error require.NoError(t, err) // TODO: Use Orgs.Join to replace SQL hack when the method is available. - err = db.Exec(`INSERT INTO org_user (uid, org_id) VALUES (?, ?)`, bob.ID, org1.ID).Error + err = s.db.Exec(`INSERT INTO org_user (uid, org_id) VALUES (?, ?)`, bob.ID, org1.ID).Error require.NoError(t, err) // User activated state should be skipped - _, err = db.Create(ctx, "cindy", "cindy@exmaple.com", CreateUserOptions{Activated: true}) + _, err = s.Create(ctx, "cindy", "cindy@exmaple.com", CreateUserOptions{Activated: true}) require.NoError(t, err) // User meant to be deleted - david, err := db.Create(ctx, "david", "david@exmaple.com", CreateUserOptions{}) + david, err := s.Create(ctx, "david", "david@exmaple.com", CreateUserOptions{}) require.NoError(t, err) tempSSHRootPath := filepath.Join(os.TempDir(), "usersDeleteInactivated-tempSSHRootPath") conf.SetMockSSH(t, conf.SSHOpts{RootPath: tempSSHRootPath}) - err = db.DeleteInactivated() + err = s.DeleteInactivated() require.NoError(t, err) - _, err = db.GetByID(ctx, david.ID) + _, err = s.GetByID(ctx, david.ID) wantErr := ErrUserNotExist{errutil.Args{"userID": david.ID}} assert.Equal(t, wantErr, err) - users, err := db.List(ctx, 1, 10) + users, err := s.List(ctx, 1, 10) require.NoError(t, err) require.Len(t, users, 3) } -func usersGetByEmail(t *testing.T, ctx context.Context, db *usersStore) { +func usersGetByEmail(t *testing.T, ctx context.Context, s *UsersStore) { t.Run("empty email", func(t *testing.T) { - _, err := db.GetByEmail(ctx, "") + _, err := s.GetByEmail(ctx, "") wantErr := ErrUserNotExist{args: errutil.Args{"email": ""}} assert.Equal(t, wantErr, err) }) t.Run("ignore organization", func(t *testing.T) { // TODO: Use Orgs.Create to replace SQL hack when the method is available. - org, err := db.Create(ctx, "gogs", "gogs@exmaple.com", CreateUserOptions{}) + org, err := s.Create(ctx, "gogs", "gogs@exmaple.com", CreateUserOptions{}) require.NoError(t, err) - err = db.Model(&User{}).Where("id", org.ID).UpdateColumn("type", UserTypeOrganization).Error + err = s.db.Model(&User{}).Where("id", org.ID).UpdateColumn("type", UserTypeOrganization).Error require.NoError(t, err) - _, err = db.GetByEmail(ctx, org.Email) + _, err = s.GetByEmail(ctx, org.Email) wantErr := ErrUserNotExist{args: errutil.Args{"email": org.Email}} assert.Equal(t, wantErr, err) }) t.Run("by primary email", func(t *testing.T) { - alice, err := db.Create(ctx, "alice", "alice@exmaple.com", CreateUserOptions{}) + alice, err := s.Create(ctx, "alice", "alice@exmaple.com", CreateUserOptions{}) require.NoError(t, err) - _, err = db.GetByEmail(ctx, alice.Email) + _, err = s.GetByEmail(ctx, alice.Email) wantErr := ErrUserNotExist{args: errutil.Args{"email": alice.Email}} assert.Equal(t, wantErr, err) // Mark user as activated // TODO: Use UserEmails.Verify to replace SQL hack when the method is available. - err = db.Model(&User{}).Where("id", alice.ID).UpdateColumn("is_active", true).Error + err = s.db.Model(&User{}).Where("id", alice.ID).UpdateColumn("is_active", true).Error require.NoError(t, err) - user, err := db.GetByEmail(ctx, alice.Email) + user, err := s.GetByEmail(ctx, alice.Email) require.NoError(t, err) assert.Equal(t, alice.Name, user.Name) }) t.Run("by secondary email", func(t *testing.T) { - bob, err := db.Create(ctx, "bob", "bob@example.com", CreateUserOptions{}) + bob, err := s.Create(ctx, "bob", "bob@example.com", CreateUserOptions{}) require.NoError(t, err) // TODO: Use UserEmails.Create to replace SQL hack when the method is available. email2 := "bob2@exmaple.com" - err = db.Exec(`INSERT INTO email_address (uid, email) VALUES (?, ?)`, bob.ID, email2).Error + err = s.db.Exec(`INSERT INTO email_address (uid, email) VALUES (?, ?)`, bob.ID, email2).Error require.NoError(t, err) - _, err = db.GetByEmail(ctx, email2) + _, err = s.GetByEmail(ctx, email2) wantErr := ErrUserNotExist{args: errutil.Args{"email": email2}} assert.Equal(t, wantErr, err) // TODO: Use UserEmails.Verify to replace SQL hack when the method is available. - err = db.Exec(`UPDATE email_address SET is_activated = ? WHERE email = ?`, true, email2).Error + err = s.db.Exec(`UPDATE email_address SET is_activated = ? WHERE email = ?`, true, email2).Error require.NoError(t, err) - user, err := db.GetByEmail(ctx, email2) + user, err := s.GetByEmail(ctx, email2) require.NoError(t, err) assert.Equal(t, bob.Name, user.Name) }) } -func usersGetByID(t *testing.T, ctx context.Context, db *usersStore) { - alice, err := db.Create(ctx, "alice", "alice@exmaple.com", CreateUserOptions{}) +func usersGetByID(t *testing.T, ctx context.Context, s *UsersStore) { + alice, err := s.Create(ctx, "alice", "alice@exmaple.com", CreateUserOptions{}) require.NoError(t, err) - user, err := db.GetByID(ctx, alice.ID) + user, err := s.GetByID(ctx, alice.ID) require.NoError(t, err) assert.Equal(t, alice.Name, user.Name) - _, err = db.GetByID(ctx, 404) + _, err = s.GetByID(ctx, 404) wantErr := ErrUserNotExist{args: errutil.Args{"userID": int64(404)}} assert.Equal(t, wantErr, err) } -func usersGetByUsername(t *testing.T, ctx context.Context, db *usersStore) { - alice, err := db.Create(ctx, "alice", "alice@exmaple.com", CreateUserOptions{}) +func usersGetByUsername(t *testing.T, ctx context.Context, s *UsersStore) { + alice, err := s.Create(ctx, "alice", "alice@exmaple.com", CreateUserOptions{}) require.NoError(t, err) - user, err := db.GetByUsername(ctx, alice.Name) + user, err := s.GetByUsername(ctx, alice.Name) require.NoError(t, err) assert.Equal(t, alice.Name, user.Name) - _, err = db.GetByUsername(ctx, "bad_username") + _, err = s.GetByUsername(ctx, "bad_username") wantErr := ErrUserNotExist{args: errutil.Args{"name": "bad_username"}} assert.Equal(t, wantErr, err) } -func usersGetByKeyID(t *testing.T, ctx context.Context, db *usersStore) { - alice, err := db.Create(ctx, "alice", "alice@exmaple.com", CreateUserOptions{}) +func usersGetByKeyID(t *testing.T, ctx context.Context, s *UsersStore) { + alice, err := s.Create(ctx, "alice", "alice@exmaple.com", CreateUserOptions{}) require.NoError(t, err) // TODO: Use PublicKeys.Create to replace SQL hack when the method is available. @@ -818,37 +818,37 @@ func usersGetByKeyID(t *testing.T, ctx context.Context, db *usersStore) { Name: "test-key", Fingerprint: "12:f8:7e:78:61:b4:bf:e2:de:24:15:96:4e:d4:72:53", Content: "test-key-content", - CreatedUnix: db.NowFunc().Unix(), - UpdatedUnix: db.NowFunc().Unix(), + CreatedUnix: s.db.NowFunc().Unix(), + UpdatedUnix: s.db.NowFunc().Unix(), } - err = db.WithContext(ctx).Create(publicKey).Error + err = s.db.WithContext(ctx).Create(publicKey).Error require.NoError(t, err) - user, err := db.GetByKeyID(ctx, publicKey.ID) + user, err := s.GetByKeyID(ctx, publicKey.ID) require.NoError(t, err) assert.Equal(t, alice.Name, user.Name) - _, err = db.GetByKeyID(ctx, publicKey.ID+1) + _, err = s.GetByKeyID(ctx, publicKey.ID+1) wantErr := ErrUserNotExist{args: errutil.Args{"keyID": publicKey.ID + 1}} assert.Equal(t, wantErr, err) } -func usersGetMailableEmailsByUsernames(t *testing.T, ctx context.Context, db *usersStore) { - alice, err := db.Create(ctx, "alice", "alice@exmaple.com", CreateUserOptions{}) +func usersGetMailableEmailsByUsernames(t *testing.T, ctx context.Context, s *UsersStore) { + alice, err := s.Create(ctx, "alice", "alice@exmaple.com", CreateUserOptions{}) require.NoError(t, err) - bob, err := db.Create(ctx, "bob", "bob@exmaple.com", CreateUserOptions{Activated: true}) + bob, err := s.Create(ctx, "bob", "bob@exmaple.com", CreateUserOptions{Activated: true}) require.NoError(t, err) - _, err = db.Create(ctx, "cindy", "cindy@exmaple.com", CreateUserOptions{Activated: true}) + _, err = s.Create(ctx, "cindy", "cindy@exmaple.com", CreateUserOptions{Activated: true}) require.NoError(t, err) - got, err := db.GetMailableEmailsByUsernames(ctx, []string{alice.Name, bob.Name, "ignore-non-exist"}) + got, err := s.GetMailableEmailsByUsernames(ctx, []string{alice.Name, bob.Name, "ignore-non-exist"}) require.NoError(t, err) want := []string{bob.Email} assert.Equal(t, want, got) } -func usersIsUsernameUsed(t *testing.T, ctx context.Context, db *usersStore) { - alice, err := db.Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) +func usersIsUsernameUsed(t *testing.T, ctx context.Context, s *UsersStore) { + alice, err := s.Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) require.NoError(t, err) tests := []struct { @@ -891,115 +891,115 @@ func usersIsUsernameUsed(t *testing.T, ctx context.Context, db *usersStore) { } for _, test := range tests { t.Run(test.name, func(t *testing.T) { - got := db.IsUsernameUsed(ctx, test.username, test.excludeUserID) + got := s.IsUsernameUsed(ctx, test.username, test.excludeUserID) assert.Equal(t, test.want, got) }) } } -func usersList(t *testing.T, ctx context.Context, db *usersStore) { - alice, err := db.Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) +func usersList(t *testing.T, ctx context.Context, s *UsersStore) { + alice, err := s.Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) require.NoError(t, err) - bob, err := db.Create(ctx, "bob", "bob@example.com", CreateUserOptions{}) + bob, err := s.Create(ctx, "bob", "bob@example.com", CreateUserOptions{}) require.NoError(t, err) // Create an organization shouldn't count // TODO: Use Orgs.Create to replace SQL hack when the method is available. - org1, err := db.Create(ctx, "org1", "org1@example.com", CreateUserOptions{}) + org1, err := s.Create(ctx, "org1", "org1@example.com", CreateUserOptions{}) require.NoError(t, err) - err = db.Exec( + err = s.db.Exec( dbutil.Quote("UPDATE %s SET type = ? WHERE id = ?", "user"), UserTypeOrganization, org1.ID, ).Error require.NoError(t, err) - got, err := db.List(ctx, 1, 1) + got, err := s.List(ctx, 1, 1) require.NoError(t, err) require.Len(t, got, 1) assert.Equal(t, alice.ID, got[0].ID) - got, err = db.List(ctx, 2, 1) + got, err = s.List(ctx, 2, 1) require.NoError(t, err) require.Len(t, got, 1) assert.Equal(t, bob.ID, got[0].ID) - got, err = db.List(ctx, 1, 3) + got, err = s.List(ctx, 1, 3) require.NoError(t, err) require.Len(t, got, 2) assert.Equal(t, alice.ID, got[0].ID) assert.Equal(t, bob.ID, got[1].ID) } -func usersListFollowers(t *testing.T, ctx context.Context, db *usersStore) { - john, err := db.Create(ctx, "john", "john@example.com", CreateUserOptions{}) +func usersListFollowers(t *testing.T, ctx context.Context, s *UsersStore) { + john, err := s.Create(ctx, "john", "john@example.com", CreateUserOptions{}) require.NoError(t, err) - got, err := db.ListFollowers(ctx, john.ID, 1, 1) + got, err := s.ListFollowers(ctx, john.ID, 1, 1) require.NoError(t, err) assert.Empty(t, got) - alice, err := db.Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) + alice, err := s.Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) require.NoError(t, err) - bob, err := db.Create(ctx, "bob", "bob@example.com", CreateUserOptions{}) + bob, err := s.Create(ctx, "bob", "bob@example.com", CreateUserOptions{}) require.NoError(t, err) - err = db.Follow(ctx, alice.ID, john.ID) + err = s.Follow(ctx, alice.ID, john.ID) require.NoError(t, err) - err = db.Follow(ctx, bob.ID, john.ID) + err = s.Follow(ctx, bob.ID, john.ID) require.NoError(t, err) // First page only has bob - got, err = db.ListFollowers(ctx, john.ID, 1, 1) + got, err = s.ListFollowers(ctx, john.ID, 1, 1) require.NoError(t, err) require.Len(t, got, 1) assert.Equal(t, bob.ID, got[0].ID) // Second page only has alice - got, err = db.ListFollowers(ctx, john.ID, 2, 1) + got, err = s.ListFollowers(ctx, john.ID, 2, 1) require.NoError(t, err) require.Len(t, got, 1) assert.Equal(t, alice.ID, got[0].ID) } -func usersListFollowings(t *testing.T, ctx context.Context, db *usersStore) { - john, err := db.Create(ctx, "john", "john@example.com", CreateUserOptions{}) +func usersListFollowings(t *testing.T, ctx context.Context, s *UsersStore) { + john, err := s.Create(ctx, "john", "john@example.com", CreateUserOptions{}) require.NoError(t, err) - got, err := db.ListFollowers(ctx, john.ID, 1, 1) + got, err := s.ListFollowers(ctx, john.ID, 1, 1) require.NoError(t, err) assert.Empty(t, got) - alice, err := db.Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) + alice, err := s.Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) require.NoError(t, err) - bob, err := db.Create(ctx, "bob", "bob@example.com", CreateUserOptions{}) + bob, err := s.Create(ctx, "bob", "bob@example.com", CreateUserOptions{}) require.NoError(t, err) - err = db.Follow(ctx, john.ID, alice.ID) + err = s.Follow(ctx, john.ID, alice.ID) require.NoError(t, err) - err = db.Follow(ctx, john.ID, bob.ID) + err = s.Follow(ctx, john.ID, bob.ID) require.NoError(t, err) // First page only has bob - got, err = db.ListFollowings(ctx, john.ID, 1, 1) + got, err = s.ListFollowings(ctx, john.ID, 1, 1) require.NoError(t, err) require.Len(t, got, 1) assert.Equal(t, bob.ID, got[0].ID) // Second page only has alice - got, err = db.ListFollowings(ctx, john.ID, 2, 1) + got, err = s.ListFollowings(ctx, john.ID, 2, 1) require.NoError(t, err) require.Len(t, got, 1) assert.Equal(t, alice.ID, got[0].ID) } -func usersSearchByName(t *testing.T, ctx context.Context, db *usersStore) { - alice, err := db.Create(ctx, "alice", "alice@example.com", CreateUserOptions{FullName: "Alice Jordan"}) +func usersSearchByName(t *testing.T, ctx context.Context, s *UsersStore) { + alice, err := s.Create(ctx, "alice", "alice@example.com", CreateUserOptions{FullName: "Alice Jordan"}) require.NoError(t, err) - bob, err := db.Create(ctx, "bob", "bob@example.com", CreateUserOptions{FullName: "Bob Jordan"}) + bob, err := s.Create(ctx, "bob", "bob@example.com", CreateUserOptions{FullName: "Bob Jordan"}) require.NoError(t, err) t.Run("search for username alice", func(t *testing.T) { - users, count, err := db.SearchByName(ctx, "Li", 1, 1, "") + users, count, err := s.SearchByName(ctx, "Li", 1, 1, "") require.NoError(t, err) require.Len(t, users, int(count)) assert.Equal(t, int64(1), count) @@ -1007,7 +1007,7 @@ func usersSearchByName(t *testing.T, ctx context.Context, db *usersStore) { }) t.Run("search for username bob", func(t *testing.T) { - users, count, err := db.SearchByName(ctx, "oB", 1, 1, "") + users, count, err := s.SearchByName(ctx, "oB", 1, 1, "") require.NoError(t, err) require.Len(t, users, int(count)) assert.Equal(t, int64(1), count) @@ -1015,14 +1015,14 @@ func usersSearchByName(t *testing.T, ctx context.Context, db *usersStore) { }) t.Run("search for full name jordan", func(t *testing.T) { - users, count, err := db.SearchByName(ctx, "Jo", 1, 10, "") + users, count, err := s.SearchByName(ctx, "Jo", 1, 10, "") require.NoError(t, err) require.Len(t, users, int(count)) assert.Equal(t, int64(2), count) }) t.Run("search for full name jordan ORDER BY id DESC LIMIT 1", func(t *testing.T) { - users, count, err := db.SearchByName(ctx, "Jo", 1, 1, "id DESC") + users, count, err := s.SearchByName(ctx, "Jo", 1, 1, "id DESC") require.NoError(t, err) require.Len(t, users, 1) assert.Equal(t, int64(2), count) @@ -1030,9 +1030,9 @@ func usersSearchByName(t *testing.T, ctx context.Context, db *usersStore) { }) } -func usersUpdate(t *testing.T, ctx context.Context, db *usersStore) { +func usersUpdate(t *testing.T, ctx context.Context, s *UsersStore) { const oldPassword = "Password" - alice, err := db.Create( + alice, err := s.Create( ctx, "alice", "alice@example.com", @@ -1054,9 +1054,9 @@ func usersUpdate(t *testing.T, ctx context.Context, db *usersStore) { require.True(t, got) newPassword := "NewPassword" - err = db.Update(ctx, alice.ID, UpdateUserOptions{Password: &newPassword}) + err = s.Update(ctx, alice.ID, UpdateUserOptions{Password: &newPassword}) require.NoError(t, err) - alice, err = db.GetByID(ctx, alice.ID) + alice, err = s.GetByID(ctx, alice.ID) require.NoError(t, err) got = userutil.ValidatePassword(alice.Password, alice.Salt, oldPassword) @@ -1067,7 +1067,7 @@ func usersUpdate(t *testing.T, ctx context.Context, db *usersStore) { }) t.Run("update email but already used", func(t *testing.T) { - bob, err := db.Create( + bob, err := s.Create( ctx, "bob", "bob@example.com", @@ -1077,7 +1077,7 @@ func usersUpdate(t *testing.T, ctx context.Context, db *usersStore) { ) require.NoError(t, err) - got := db.Update(ctx, alice.ID, UpdateUserOptions{Email: &bob.Email}) + got := s.Update(ctx, alice.ID, UpdateUserOptions{Email: &bob.Email}) want := ErrEmailAlreadyUsed{args: errutil.Args{"email": bob.Email}} assert.Equal(t, want, got) }) @@ -1107,10 +1107,10 @@ func usersUpdate(t *testing.T, ctx context.Context, db *usersStore) { Avatar: &overLimitStr, AvatarEmail: &overLimitStr, } - err = db.Update(ctx, alice.ID, opts) + err = s.Update(ctx, alice.ID, opts) require.NoError(t, err) - alice, err = db.GetByID(ctx, alice.ID) + alice, err = s.GetByID(ctx, alice.ID) require.NoError(t, err) assertValues := func() { @@ -1135,16 +1135,16 @@ func usersUpdate(t *testing.T, ctx context.Context, db *usersStore) { assertValues() // Test ignored values - err = db.Update(ctx, alice.ID, UpdateUserOptions{}) + err = s.Update(ctx, alice.ID, UpdateUserOptions{}) require.NoError(t, err) - alice, err = db.GetByID(ctx, alice.ID) + alice, err = s.GetByID(ctx, alice.ID) require.NoError(t, err) assertValues() } -func usersUseCustomAvatar(t *testing.T, ctx context.Context, db *usersStore) { - alice, err := db.Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) +func usersUseCustomAvatar(t *testing.T, ctx context.Context, s *UsersStore) { + alice, err := s.Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) require.NoError(t, err) avatar, err := public.Files.ReadFile("img/avatar_default.png") @@ -1154,14 +1154,14 @@ func usersUseCustomAvatar(t *testing.T, ctx context.Context, db *usersStore) { _ = os.Remove(avatarPath) defer func() { _ = os.Remove(avatarPath) }() - err = db.UseCustomAvatar(ctx, alice.ID, avatar) + err = s.UseCustomAvatar(ctx, alice.ID, avatar) require.NoError(t, err) // Make sure avatar is saved and the user flag is updated. got := osutil.IsFile(avatarPath) assert.True(t, got) - alice, err = db.GetByID(ctx, alice.ID) + alice, err = s.GetByID(ctx, alice.ID) require.NoError(t, err) assert.True(t, alice.UseCustomAvatar) } @@ -1181,27 +1181,27 @@ func TestIsUsernameAllowed(t *testing.T) { } } -func usersAddEmail(t *testing.T, ctx context.Context, db *usersStore) { +func usersAddEmail(t *testing.T, ctx context.Context, s *UsersStore) { t.Run("multiple users can add the same unverified email", func(t *testing.T) { - alice, err := db.Create(ctx, "alice", "unverified@example.com", CreateUserOptions{}) + alice, err := s.Create(ctx, "alice", "unverified@example.com", CreateUserOptions{}) require.NoError(t, err) - err = db.AddEmail(ctx, alice.ID+1, "unverified@example.com", false) + err = s.AddEmail(ctx, alice.ID+1, "unverified@example.com", false) require.NoError(t, err) }) t.Run("only one user can add the same verified email", func(t *testing.T) { - bob, err := db.Create(ctx, "bob", "verified@example.com", CreateUserOptions{Activated: true}) + bob, err := s.Create(ctx, "bob", "verified@example.com", CreateUserOptions{Activated: true}) require.NoError(t, err) - got := db.AddEmail(ctx, bob.ID+1, "verified@example.com", true) + got := s.AddEmail(ctx, bob.ID+1, "verified@example.com", true) want := ErrEmailAlreadyUsed{args: errutil.Args{"email": "verified@example.com"}} require.Equal(t, want, got) }) } -func usersGetEmail(t *testing.T, ctx context.Context, db *usersStore) { +func usersGetEmail(t *testing.T, ctx context.Context, s *UsersStore) { const testUserID = 1 const testEmail = "alice@example.com" - _, err := db.GetEmail(ctx, testUserID, testEmail, false) + _, err := s.GetEmail(ctx, testUserID, testEmail, false) wantErr := ErrEmailNotExist{ args: errutil.Args{ "email": testEmail, @@ -1209,37 +1209,37 @@ func usersGetEmail(t *testing.T, ctx context.Context, db *usersStore) { } assert.Equal(t, wantErr, err) - err = db.AddEmail(ctx, testUserID, testEmail, false) + err = s.AddEmail(ctx, testUserID, testEmail, false) require.NoError(t, err) - got, err := db.GetEmail(ctx, testUserID, testEmail, false) + got, err := s.GetEmail(ctx, testUserID, testEmail, false) require.NoError(t, err) assert.Equal(t, testEmail, got.Email) // Should not return if we ask for a different user - _, err = db.GetEmail(ctx, testUserID+1, testEmail, false) + _, err = s.GetEmail(ctx, testUserID+1, testEmail, false) assert.Equal(t, wantErr, err) // Should not return if we only want activated emails - _, err = db.GetEmail(ctx, testUserID, testEmail, true) + _, err = s.GetEmail(ctx, testUserID, testEmail, true) assert.Equal(t, wantErr, err) - err = db.MarkEmailActivated(ctx, testUserID, testEmail) + err = s.MarkEmailActivated(ctx, testUserID, testEmail) require.NoError(t, err) - got, err = db.GetEmail(ctx, testUserID, testEmail, true) + got, err = s.GetEmail(ctx, testUserID, testEmail, true) require.NoError(t, err) assert.Equal(t, testEmail, got.Email) } -func usersListEmails(t *testing.T, ctx context.Context, db *usersStore) { +func usersListEmails(t *testing.T, ctx context.Context, s *UsersStore) { t.Run("list emails with primary email", func(t *testing.T) { - alice, err := db.Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) + alice, err := s.Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) require.NoError(t, err) - err = db.AddEmail(ctx, alice.ID, "alice2@example.com", true) + err = s.AddEmail(ctx, alice.ID, "alice2@example.com", true) require.NoError(t, err) - err = db.MarkEmailPrimary(ctx, alice.ID, "alice2@example.com") + err = s.MarkEmailPrimary(ctx, alice.ID, "alice2@example.com") require.NoError(t, err) - emails, err := db.ListEmails(ctx, alice.ID) + emails, err := s.ListEmails(ctx, alice.ID) require.NoError(t, err) got := make([]string, 0, len(emails)) for _, email := range emails { @@ -1250,12 +1250,12 @@ func usersListEmails(t *testing.T, ctx context.Context, db *usersStore) { }) t.Run("list emails without primary email", func(t *testing.T) { - bob, err := db.Create(ctx, "bob", "bob@example.com", CreateUserOptions{}) + bob, err := s.Create(ctx, "bob", "bob@example.com", CreateUserOptions{}) require.NoError(t, err) - err = db.AddEmail(ctx, bob.ID, "bob2@example.com", false) + err = s.AddEmail(ctx, bob.ID, "bob2@example.com", false) require.NoError(t, err) - emails, err := db.ListEmails(ctx, bob.ID) + emails, err := s.ListEmails(ctx, bob.ID) require.NoError(t, err) got := make([]string, 0, len(emails)) for _, email := range emails { @@ -1266,78 +1266,78 @@ func usersListEmails(t *testing.T, ctx context.Context, db *usersStore) { }) } -func usersMarkEmailActivated(t *testing.T, ctx context.Context, db *usersStore) { - alice, err := db.Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) +func usersMarkEmailActivated(t *testing.T, ctx context.Context, s *UsersStore) { + alice, err := s.Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) require.NoError(t, err) - err = db.AddEmail(ctx, alice.ID, "alice2@example.com", false) + err = s.AddEmail(ctx, alice.ID, "alice2@example.com", false) require.NoError(t, err) - err = db.MarkEmailActivated(ctx, alice.ID, "alice2@example.com") + err = s.MarkEmailActivated(ctx, alice.ID, "alice2@example.com") require.NoError(t, err) - gotEmail, err := db.GetEmail(ctx, alice.ID, "alice2@example.com", true) + gotEmail, err := s.GetEmail(ctx, alice.ID, "alice2@example.com", true) require.NoError(t, err) assert.True(t, gotEmail.IsActivated) - gotAlice, err := db.GetByID(ctx, alice.ID) + gotAlice, err := s.GetByID(ctx, alice.ID) require.NoError(t, err) assert.NotEqual(t, alice.Rands, gotAlice.Rands) } -func usersMarkEmailPrimary(t *testing.T, ctx context.Context, db *usersStore) { - alice, err := db.Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) +func usersMarkEmailPrimary(t *testing.T, ctx context.Context, s *UsersStore) { + alice, err := s.Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) require.NoError(t, err) - err = db.AddEmail(ctx, alice.ID, "alice2@example.com", false) + err = s.AddEmail(ctx, alice.ID, "alice2@example.com", false) require.NoError(t, err) // Should fail because email not verified - gotError := db.MarkEmailPrimary(ctx, alice.ID, "alice2@example.com") + gotError := s.MarkEmailPrimary(ctx, alice.ID, "alice2@example.com") wantError := ErrEmailNotVerified{args: errutil.Args{"email": "alice2@example.com"}} assert.Equal(t, wantError, gotError) // Mark email as verified and should succeed - err = db.MarkEmailActivated(ctx, alice.ID, "alice2@example.com") + err = s.MarkEmailActivated(ctx, alice.ID, "alice2@example.com") require.NoError(t, err) - err = db.MarkEmailPrimary(ctx, alice.ID, "alice2@example.com") + err = s.MarkEmailPrimary(ctx, alice.ID, "alice2@example.com") require.NoError(t, err) - gotAlice, err := db.GetByID(ctx, alice.ID) + gotAlice, err := s.GetByID(ctx, alice.ID) require.NoError(t, err) assert.Equal(t, "alice2@example.com", gotAlice.Email) // Former primary email should be preserved - gotEmail, err := db.GetEmail(ctx, alice.ID, "alice@example.com", false) + gotEmail, err := s.GetEmail(ctx, alice.ID, "alice@example.com", false) require.NoError(t, err) assert.False(t, gotEmail.IsActivated) } -func usersDeleteEmail(t *testing.T, ctx context.Context, db *usersStore) { - alice, err := db.Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) +func usersDeleteEmail(t *testing.T, ctx context.Context, s *UsersStore) { + alice, err := s.Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) require.NoError(t, err) - err = db.AddEmail(ctx, alice.ID, "alice2@example.com", false) + err = s.AddEmail(ctx, alice.ID, "alice2@example.com", false) require.NoError(t, err) - _, err = db.GetEmail(ctx, alice.ID, "alice2@example.com", false) + _, err = s.GetEmail(ctx, alice.ID, "alice2@example.com", false) require.NoError(t, err) - err = db.DeleteEmail(ctx, alice.ID, "alice2@example.com") + err = s.DeleteEmail(ctx, alice.ID, "alice2@example.com") require.NoError(t, err) - _, got := db.GetEmail(ctx, alice.ID, "alice2@example.com", false) + _, got := s.GetEmail(ctx, alice.ID, "alice2@example.com", false) want := ErrEmailNotExist{args: errutil.Args{"email": "alice2@example.com"}} require.Equal(t, want, got) } -func usersFollow(t *testing.T, ctx context.Context, db *usersStore) { - usersStore := NewUsersStore(db.DB) +func usersFollow(t *testing.T, ctx context.Context, s *UsersStore) { + usersStore := newUsersStore(s.db) alice, err := usersStore.Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) require.NoError(t, err) bob, err := usersStore.Create(ctx, "bob", "bob@example.com", CreateUserOptions{}) require.NoError(t, err) - err = db.Follow(ctx, alice.ID, bob.ID) + err = s.Follow(ctx, alice.ID, bob.ID) require.NoError(t, err) // It is OK to follow multiple times and just be noop. - err = db.Follow(ctx, alice.ID, bob.ID) + err = s.Follow(ctx, alice.ID, bob.ID) require.NoError(t, err) alice, err = usersStore.GetByID(ctx, alice.ID) @@ -1349,41 +1349,41 @@ func usersFollow(t *testing.T, ctx context.Context, db *usersStore) { assert.Equal(t, 1, bob.NumFollowers) } -func usersIsFollowing(t *testing.T, ctx context.Context, db *usersStore) { - usersStore := NewUsersStore(db.DB) +func usersIsFollowing(t *testing.T, ctx context.Context, s *UsersStore) { + usersStore := newUsersStore(s.db) alice, err := usersStore.Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) require.NoError(t, err) bob, err := usersStore.Create(ctx, "bob", "bob@example.com", CreateUserOptions{}) require.NoError(t, err) - got := db.IsFollowing(ctx, alice.ID, bob.ID) + got := s.IsFollowing(ctx, alice.ID, bob.ID) assert.False(t, got) - err = db.Follow(ctx, alice.ID, bob.ID) + err = s.Follow(ctx, alice.ID, bob.ID) require.NoError(t, err) - got = db.IsFollowing(ctx, alice.ID, bob.ID) + got = s.IsFollowing(ctx, alice.ID, bob.ID) assert.True(t, got) - err = db.Unfollow(ctx, alice.ID, bob.ID) + err = s.Unfollow(ctx, alice.ID, bob.ID) require.NoError(t, err) - got = db.IsFollowing(ctx, alice.ID, bob.ID) + got = s.IsFollowing(ctx, alice.ID, bob.ID) assert.False(t, got) } -func usersUnfollow(t *testing.T, ctx context.Context, db *usersStore) { - usersStore := NewUsersStore(db.DB) +func usersUnfollow(t *testing.T, ctx context.Context, s *UsersStore) { + usersStore := newUsersStore(s.db) alice, err := usersStore.Create(ctx, "alice", "alice@example.com", CreateUserOptions{}) require.NoError(t, err) bob, err := usersStore.Create(ctx, "bob", "bob@example.com", CreateUserOptions{}) require.NoError(t, err) - err = db.Follow(ctx, alice.ID, bob.ID) + err = s.Follow(ctx, alice.ID, bob.ID) require.NoError(t, err) // It is OK to unfollow multiple times and just be noop. - err = db.Unfollow(ctx, alice.ID, bob.ID) + err = s.Unfollow(ctx, alice.ID, bob.ID) require.NoError(t, err) - err = db.Unfollow(ctx, alice.ID, bob.ID) + err = s.Unfollow(ctx, alice.ID, bob.ID) require.NoError(t, err) alice, err = usersStore.GetByID(ctx, alice.ID) diff --git a/internal/route/admin/admin.go b/internal/route/admin/admin.go index f6d2a51bb..e45ce1543 100644 --- a/internal/route/admin/admin.go +++ b/internal/route/admin/admin.go @@ -145,7 +145,7 @@ func Operation(c *context.Context) { switch AdminOperation(c.QueryInt("op")) { case CleanInactivateUser: success = c.Tr("admin.dashboard.delete_inactivate_accounts_success") - err = database.Users.DeleteInactivated() + err = database.Handle.Users().DeleteInactivated() case CleanRepoArchives: success = c.Tr("admin.dashboard.delete_repo_archives_success") err = database.DeleteRepositoryArchives() diff --git a/internal/route/admin/users.go b/internal/route/admin/users.go index 0ad7b2bec..110645aa4 100644 --- a/internal/route/admin/users.go +++ b/internal/route/admin/users.go @@ -31,8 +31,8 @@ func Users(c *context.Context) { route.RenderUserSearch(c, &route.UserSearchOptions{ Type: database.UserTypeIndividual, - Counter: database.Users.Count, - Ranger: database.Users.List, + Counter: database.Handle.Users().Count, + Ranger: database.Handle.Users().List, PageSize: conf.UI.Admin.UserPagingNum, OrderBy: "id ASC", TplName: USERS, @@ -88,7 +88,7 @@ func NewUserPost(c *context.Context, f form.AdminCrateUser) { } } - user, err := database.Users.Create(c.Req.Context(), f.UserName, f.Email, createUserOpts) + user, err := database.Handle.Users().Create(c.Req.Context(), f.UserName, f.Email, createUserOpts) if err != nil { switch { case database.IsErrUserAlreadyExist(err): @@ -117,7 +117,7 @@ func NewUserPost(c *context.Context, f form.AdminCrateUser) { } func prepareUserInfo(c *context.Context) *database.User { - u, err := database.Users.GetByID(c.Req.Context(), c.ParamsInt64(":userid")) + u, err := database.Handle.Users().GetByID(c.Req.Context(), c.ParamsInt64(":userid")) if err != nil { c.Error(err, "get user by ID") return nil @@ -203,7 +203,7 @@ func EditUserPost(c *context.Context, f form.AdminEditUser) { opts.Email = &f.Email } - err := database.Users.Update(c.Req.Context(), u.ID, opts) + err := database.Handle.Users().Update(c.Req.Context(), u.ID, opts) if err != nil { if database.IsErrEmailAlreadyUsed(err) { c.Data["Err_Email"] = true @@ -220,13 +220,13 @@ func EditUserPost(c *context.Context, f form.AdminEditUser) { } func DeleteUser(c *context.Context) { - u, err := database.Users.GetByID(c.Req.Context(), c.ParamsInt64(":userid")) + u, err := database.Handle.Users().GetByID(c.Req.Context(), c.ParamsInt64(":userid")) if err != nil { c.Error(err, "get user by ID") return } - if err = database.Users.DeleteByID(c.Req.Context(), u.ID, false); err != nil { + if err = database.Handle.Users().DeleteByID(c.Req.Context(), u.ID, false); err != nil { switch { case database.IsErrUserOwnRepos(err): c.Flash.Error(c.Tr("admin.users.still_own_repo")) diff --git a/internal/route/api/v1/admin/user.go b/internal/route/api/v1/admin/user.go index 9e91041a1..c916ded8b 100644 --- a/internal/route/api/v1/admin/user.go +++ b/internal/route/api/v1/admin/user.go @@ -39,7 +39,7 @@ func CreateUser(c *context.APIContext, form api.CreateUserOption) { return } - user, err := database.Users.Create( + user, err := database.Handle.Users().Create( c.Req.Context(), form.Username, form.Email, @@ -104,7 +104,7 @@ func EditUser(c *context.APIContext, form api.EditUserOption) { opts.Email = &form.Email } - err := database.Users.Update(c.Req.Context(), u.ID, opts) + err := database.Handle.Users().Update(c.Req.Context(), u.ID, opts) if err != nil { if database.IsErrEmailAlreadyUsed(err) { c.ErrorStatus(http.StatusUnprocessableEntity, err) @@ -115,7 +115,7 @@ func EditUser(c *context.APIContext, form api.EditUserOption) { } log.Trace("Account updated by admin %q: %s", c.User.Name, u.Name) - u, err = database.Users.GetByID(c.Req.Context(), u.ID) + u, err = database.Handle.Users().GetByID(c.Req.Context(), u.ID) if err != nil { c.Error(err, "get user") return @@ -129,7 +129,7 @@ func DeleteUser(c *context.APIContext) { return } - if err := database.Users.DeleteByID(c.Req.Context(), u.ID, false); err != nil { + if err := database.Handle.Users().DeleteByID(c.Req.Context(), u.ID, false); err != nil { if database.IsErrUserOwnRepos(err) || database.IsErrUserHasOrgs(err) { c.ErrorStatus(http.StatusUnprocessableEntity, err) diff --git a/internal/route/api/v1/api.go b/internal/route/api/v1/api.go index 663abebf9..844012b68 100644 --- a/internal/route/api/v1/api.go +++ b/internal/route/api/v1/api.go @@ -37,7 +37,7 @@ func repoAssignment() macaron.Handler { if c.IsLogged && c.User.LowerName == strings.ToLower(username) { owner = c.User } else { - owner, err = database.Users.GetByUsername(c.Req.Context(), username) + owner, err = database.Handle.Users().GetByUsername(c.Req.Context(), username) if err != nil { c.NotFoundOrError(err, "get user by name") return @@ -91,7 +91,7 @@ func orgAssignment(args ...bool) macaron.Handler { var err error if assignOrg { - c.Org.Organization, err = database.Users.GetByUsername(c.Req.Context(), c.Params(":orgname")) + c.Org.Organization, err = database.Handle.Users().GetByUsername(c.Req.Context(), c.Params(":orgname")) if err != nil { c.NotFoundOrError(err, "get organization by name") return diff --git a/internal/route/api/v1/convert/convert.go b/internal/route/api/v1/convert/convert.go index 4bd8cec4e..8da561bec 100644 --- a/internal/route/api/v1/convert/convert.go +++ b/internal/route/api/v1/convert/convert.go @@ -45,12 +45,12 @@ func ToTag(b *database.Tag, c *git.Commit) *Tag { func ToCommit(c *git.Commit) *api.PayloadCommit { authorUsername := "" - author, err := database.Users.GetByEmail(context.TODO(), c.Author.Email) + author, err := database.Handle.Users().GetByEmail(context.TODO(), c.Author.Email) if err == nil { authorUsername = author.Name } committerUsername := "" - committer, err := database.Users.GetByEmail(context.TODO(), c.Committer.Email) + committer, err := database.Handle.Users().GetByEmail(context.TODO(), c.Committer.Email) if err == nil { committerUsername = committer.Name } diff --git a/internal/route/api/v1/org/org.go b/internal/route/api/v1/org/org.go index 4587431b4..84826f974 100644 --- a/internal/route/api/v1/org/org.go +++ b/internal/route/api/v1/org/org.go @@ -89,7 +89,7 @@ func Edit(c *context.APIContext, form api.EditOrgOption) { return } - err := database.Users.Update( + err := database.Handle.Users().Update( c.Req.Context(), c.Org.Organization.ID, database.UpdateUserOptions{ diff --git a/internal/route/api/v1/repo/collaborators.go b/internal/route/api/v1/repo/collaborators.go index d6f3c5f66..f24cbde9b 100644 --- a/internal/route/api/v1/repo/collaborators.go +++ b/internal/route/api/v1/repo/collaborators.go @@ -28,7 +28,7 @@ func ListCollaborators(c *context.APIContext) { } func AddCollaborator(c *context.APIContext, form api.AddCollaboratorOption) { - collaborator, err := database.Users.GetByUsername(c.Req.Context(), c.Params(":collaborator")) + collaborator, err := database.Handle.Users().GetByUsername(c.Req.Context(), c.Params(":collaborator")) if err != nil { if database.IsErrUserNotExist(err) { c.Status(http.StatusUnprocessableEntity) @@ -54,7 +54,7 @@ func AddCollaborator(c *context.APIContext, form api.AddCollaboratorOption) { } func IsCollaborator(c *context.APIContext) { - collaborator, err := database.Users.GetByUsername(c.Req.Context(), c.Params(":collaborator")) + collaborator, err := database.Handle.Users().GetByUsername(c.Req.Context(), c.Params(":collaborator")) if err != nil { if database.IsErrUserNotExist(err) { c.Status(http.StatusUnprocessableEntity) @@ -72,7 +72,7 @@ func IsCollaborator(c *context.APIContext) { } func DeleteCollaborator(c *context.APIContext) { - collaborator, err := database.Users.GetByUsername(c.Req.Context(), c.Params(":collaborator")) + collaborator, err := database.Handle.Users().GetByUsername(c.Req.Context(), c.Params(":collaborator")) if err != nil { if database.IsErrUserNotExist(err) { c.Status(http.StatusUnprocessableEntity) diff --git a/internal/route/api/v1/repo/commits.go b/internal/route/api/v1/repo/commits.go index 59f482593..50bacf629 100644 --- a/internal/route/api/v1/repo/commits.go +++ b/internal/route/api/v1/repo/commits.go @@ -120,7 +120,7 @@ func GetReferenceSHA(c *context.APIContext) { func gitCommitToAPICommit(commit *git.Commit, c *context.APIContext) (*api.Commit, error) { // Retrieve author and committer information var apiAuthor, apiCommitter *api.User - author, err := database.Users.GetByEmail(c.Req.Context(), commit.Author.Email) + author, err := database.Handle.Users().GetByEmail(c.Req.Context(), commit.Author.Email) if err != nil && !database.IsErrUserNotExist(err) { return nil, err } else if err == nil { @@ -131,7 +131,7 @@ func gitCommitToAPICommit(commit *git.Commit, c *context.APIContext) (*api.Commi if commit.Committer.Email == commit.Author.Email { apiCommitter = apiAuthor } else { - committer, err := database.Users.GetByEmail(c.Req.Context(), commit.Committer.Email) + committer, err := database.Handle.Users().GetByEmail(c.Req.Context(), commit.Committer.Email) if err != nil && !database.IsErrUserNotExist(err) { return nil, err } else if err == nil { diff --git a/internal/route/api/v1/repo/issue.go b/internal/route/api/v1/repo/issue.go index c53e08673..2ec3a091e 100644 --- a/internal/route/api/v1/repo/issue.go +++ b/internal/route/api/v1/repo/issue.go @@ -83,7 +83,7 @@ func CreateIssue(c *context.APIContext, form api.CreateIssueOption) { if c.Repo.IsWriter() { if len(form.Assignee) > 0 { - assignee, err := database.Users.GetByUsername(c.Req.Context(), form.Assignee) + assignee, err := database.Handle.Users().GetByUsername(c.Req.Context(), form.Assignee) if err != nil { if database.IsErrUserNotExist(err) { c.ErrorStatus(http.StatusUnprocessableEntity, fmt.Errorf("assignee does not exist: [name: %s]", form.Assignee)) @@ -145,7 +145,7 @@ func EditIssue(c *context.APIContext, form api.EditIssueOption) { if *form.Assignee == "" { issue.AssigneeID = 0 } else { - assignee, err := database.Users.GetByUsername(c.Req.Context(), *form.Assignee) + assignee, err := database.Handle.Users().GetByUsername(c.Req.Context(), *form.Assignee) if err != nil { if database.IsErrUserNotExist(err) { c.ErrorStatus(http.StatusUnprocessableEntity, fmt.Errorf("assignee does not exist: [name: %s]", *form.Assignee)) diff --git a/internal/route/api/v1/repo/repo.go b/internal/route/api/v1/repo/repo.go index 950593224..0e6793be1 100644 --- a/internal/route/api/v1/repo/repo.go +++ b/internal/route/api/v1/repo/repo.go @@ -32,7 +32,7 @@ func Search(c *context.APIContext) { if c.User.ID == opts.OwnerID { opts.Private = true } else { - u, err := database.Users.GetByID(c.Req.Context(), opts.OwnerID) + u, err := database.Handle.Users().GetByID(c.Req.Context(), opts.OwnerID) if err != nil { c.JSON(http.StatusInternalServerError, map[string]any{ "ok": false, @@ -77,7 +77,7 @@ func Search(c *context.APIContext) { } func listUserRepositories(c *context.APIContext, username string) { - user, err := database.Users.GetByUsername(c.Req.Context(), username) + user, err := database.Handle.Users().GetByUsername(c.Req.Context(), username) if err != nil { c.NotFoundOrError(err, "get user by name") return @@ -209,7 +209,7 @@ func Migrate(c *context.APIContext, f form.MigrateRepo) { // Not equal means context user is an organization, // or is another user/organization if current user is admin. if f.Uid != ctxUser.ID { - org, err := database.Users.GetByID(c.Req.Context(), f.Uid) + org, err := database.Handle.Users().GetByID(c.Req.Context(), f.Uid) if err != nil { if database.IsErrUserNotExist(err) { c.ErrorStatus(http.StatusUnprocessableEntity, err) @@ -287,7 +287,7 @@ func Migrate(c *context.APIContext, f form.MigrateRepo) { // FIXME: inject in the handler chain func parseOwnerAndRepo(c *context.APIContext) (*database.User, *database.Repository) { - owner, err := database.Users.GetByUsername(c.Req.Context(), c.Params(":username")) + owner, err := database.Handle.Users().GetByUsername(c.Req.Context(), c.Params(":username")) if err != nil { if database.IsErrUserNotExist(err) { c.ErrorStatus(http.StatusUnprocessableEntity, err) @@ -453,7 +453,7 @@ func Releases(c *context.APIContext) { } apiReleases := make([]*api.Release, 0, len(releases)) for _, r := range releases { - publisher, err := database.Users.GetByID(c.Req.Context(), r.PublisherID) + publisher, err := database.Handle.Users().GetByID(c.Req.Context(), r.PublisherID) if err != nil { c.Error(err, "get release publisher") return diff --git a/internal/route/api/v1/user/email.go b/internal/route/api/v1/user/email.go index c4cca54fb..e76ad5bf4 100644 --- a/internal/route/api/v1/user/email.go +++ b/internal/route/api/v1/user/email.go @@ -17,7 +17,7 @@ import ( ) func ListEmails(c *context.APIContext) { - emails, err := database.Users.ListEmails(c.Req.Context(), c.User.ID) + emails, err := database.Handle.Users().ListEmails(c.Req.Context(), c.User.ID) if err != nil { c.Error(err, "get email addresses") return @@ -37,7 +37,7 @@ func AddEmail(c *context.APIContext, form api.CreateEmailOption) { apiEmails := make([]*api.Email, 0, len(form.Emails)) for _, email := range form.Emails { - err := database.Users.AddEmail(c.Req.Context(), c.User.ID, email, !conf.Auth.RequireEmailConfirmation) + err := database.Handle.Users().AddEmail(c.Req.Context(), c.User.ID, email, !conf.Auth.RequireEmailConfirmation) if err != nil { if database.IsErrEmailAlreadyUsed(err) { c.ErrorStatus(http.StatusUnprocessableEntity, errors.Errorf("email address has been used: %s", err.(database.ErrEmailAlreadyUsed).Email())) @@ -64,7 +64,7 @@ func DeleteEmail(c *context.APIContext, form api.CreateEmailOption) { return } - err := database.Users.DeleteEmail(c.Req.Context(), c.User.ID, email) + err := database.Handle.Users().DeleteEmail(c.Req.Context(), c.User.ID, email) if err != nil { c.Error(err, "delete email addresses") return diff --git a/internal/route/api/v1/user/follower.go b/internal/route/api/v1/user/follower.go index cc461b417..1b8910773 100644 --- a/internal/route/api/v1/user/follower.go +++ b/internal/route/api/v1/user/follower.go @@ -20,7 +20,7 @@ func responseApiUsers(c *context.APIContext, users []*database.User) { } func listUserFollowers(c *context.APIContext, u *database.User) { - users, err := database.Users.ListFollowers(c.Req.Context(), u.ID, c.QueryInt("page"), database.ItemsPerPage) + users, err := database.Handle.Users().ListFollowers(c.Req.Context(), u.ID, c.QueryInt("page"), database.ItemsPerPage) if err != nil { c.Error(err, "list followers") return @@ -41,7 +41,7 @@ func ListFollowers(c *context.APIContext) { } func listUserFollowing(c *context.APIContext, u *database.User) { - users, err := database.Users.ListFollowings(c.Req.Context(), u.ID, c.QueryInt("page"), database.ItemsPerPage) + users, err := database.Handle.Users().ListFollowings(c.Req.Context(), u.ID, c.QueryInt("page"), database.ItemsPerPage) if err != nil { c.Error(err, "list followings") return @@ -62,7 +62,7 @@ func ListFollowing(c *context.APIContext) { } func checkUserFollowing(c *context.APIContext, u *database.User, followID int64) { - if database.Users.IsFollowing(c.Req.Context(), u.ID, followID) { + if database.Handle.Users().IsFollowing(c.Req.Context(), u.ID, followID) { c.NoContent() } else { c.NotFound() @@ -94,7 +94,7 @@ func Follow(c *context.APIContext) { if c.Written() { return } - if err := database.Users.Follow(c.Req.Context(), c.User.ID, target.ID); err != nil { + if err := database.Handle.Users().Follow(c.Req.Context(), c.User.ID, target.ID); err != nil { c.Error(err, "follow user") return } @@ -106,7 +106,7 @@ func Unfollow(c *context.APIContext) { if c.Written() { return } - if err := database.Users.Unfollow(c.Req.Context(), c.User.ID, target.ID); err != nil { + if err := database.Handle.Users().Unfollow(c.Req.Context(), c.User.ID, target.ID); err != nil { c.Error(err, "unfollow user") return } diff --git a/internal/route/api/v1/user/key.go b/internal/route/api/v1/user/key.go index b1b95fcf5..f264e4079 100644 --- a/internal/route/api/v1/user/key.go +++ b/internal/route/api/v1/user/key.go @@ -18,7 +18,7 @@ import ( ) func GetUserByParamsName(c *context.APIContext, name string) *database.User { - user, err := database.Users.GetByUsername(c.Req.Context(), c.Params(name)) + user, err := database.Handle.Users().GetByUsername(c.Req.Context(), c.Params(name)) if err != nil { c.NotFoundOrError(err, "get user by name") return nil diff --git a/internal/route/api/v1/user/user.go b/internal/route/api/v1/user/user.go index a1af7a793..f9958230e 100644 --- a/internal/route/api/v1/user/user.go +++ b/internal/route/api/v1/user/user.go @@ -19,7 +19,7 @@ func Search(c *context.APIContext) { if pageSize <= 0 { pageSize = 10 } - users, _, err := database.Users.SearchByName(c.Req.Context(), c.Query("q"), 1, pageSize, "") + users, _, err := database.Handle.Users().SearchByName(c.Req.Context(), c.Query("q"), 1, pageSize, "") if err != nil { c.JSON(http.StatusInternalServerError, map[string]any{ "ok": false, @@ -48,7 +48,7 @@ func Search(c *context.APIContext) { } func GetInfo(c *context.APIContext) { - u, err := database.Users.GetByUsername(c.Req.Context(), c.Params(":username")) + u, err := database.Handle.Users().GetByUsername(c.Req.Context(), c.Params(":username")) if err != nil { c.NotFoundOrError(err, "get user by name") return diff --git a/internal/route/home.go b/internal/route/home.go index bcca302ae..39bbd0327 100644 --- a/internal/route/home.go +++ b/internal/route/home.go @@ -113,7 +113,7 @@ func RenderUserSearch(c *context.Context, opts *UserSearchOptions) { } count = opts.Counter(c.Req.Context()) } else { - search := database.Users.SearchByName + search := database.Handle.Users().SearchByName if opts.Type == database.UserTypeOrganization { search = database.Handle.Organizations().SearchByName } @@ -138,8 +138,8 @@ func ExploreUsers(c *context.Context) { RenderUserSearch(c, &UserSearchOptions{ Type: database.UserTypeIndividual, - Counter: database.Users.Count, - Ranger: database.Users.List, + Counter: database.Handle.Users().Count, + Ranger: database.Handle.Users().List, PageSize: conf.UI.ExplorePagingNum, OrderBy: "updated_unix DESC", TplName: EXPLORE_USERS, diff --git a/internal/route/install.go b/internal/route/install.go index c3ab47e18..57b3d93a2 100644 --- a/internal/route/install.go +++ b/internal/route/install.go @@ -391,7 +391,7 @@ func InstallPost(c *context.Context, f form.Install) { // Create admin account if len(f.AdminName) > 0 { - user, err := database.Users.Create( + user, err := database.Handle.Users().Create( c.Req.Context(), f.AdminName, f.AdminEmail, @@ -410,7 +410,7 @@ func InstallPost(c *context.Context, f form.Install) { } log.Info("Admin account already exist") - user, err = database.Users.GetByUsername(c.Req.Context(), f.AdminName) + user, err = database.Handle.Users().GetByUsername(c.Req.Context(), f.AdminName) if err != nil { c.Error(err, "get user by name") return diff --git a/internal/route/lfs/mocks_test.go b/internal/route/lfs/mocks_test.go index c75aa8627..eb25f0919 100644 --- a/internal/route/lfs/mocks_test.go +++ b/internal/route/lfs/mocks_test.go @@ -14,3540 +14,12 @@ import ( lfsutil "gogs.io/gogs/internal/lfsutil" ) -// MockUsersStore is a mock implementation of the UsersStore interface (from -// the package gogs.io/gogs/internal/database) used for unit testing. -type MockUsersStore struct { - // AddEmailFunc is an instance of a mock function object controlling the - // behavior of the method AddEmail. - AddEmailFunc *UsersStoreAddEmailFunc - // AuthenticateFunc is an instance of a mock function object controlling - // the behavior of the method Authenticate. - AuthenticateFunc *UsersStoreAuthenticateFunc - // ChangeUsernameFunc is an instance of a mock function object - // controlling the behavior of the method ChangeUsername. - ChangeUsernameFunc *UsersStoreChangeUsernameFunc - // CountFunc is an instance of a mock function object controlling the - // behavior of the method Count. - CountFunc *UsersStoreCountFunc - // CreateFunc is an instance of a mock function object controlling the - // behavior of the method Create. - CreateFunc *UsersStoreCreateFunc - // DeleteByIDFunc is an instance of a mock function object controlling - // the behavior of the method DeleteByID. - DeleteByIDFunc *UsersStoreDeleteByIDFunc - // DeleteCustomAvatarFunc is an instance of a mock function object - // controlling the behavior of the method DeleteCustomAvatar. - DeleteCustomAvatarFunc *UsersStoreDeleteCustomAvatarFunc - // DeleteEmailFunc is an instance of a mock function object controlling - // the behavior of the method DeleteEmail. - DeleteEmailFunc *UsersStoreDeleteEmailFunc - // DeleteInactivatedFunc is an instance of a mock function object - // controlling the behavior of the method DeleteInactivated. - DeleteInactivatedFunc *UsersStoreDeleteInactivatedFunc - // FollowFunc is an instance of a mock function object controlling the - // behavior of the method Follow. - FollowFunc *UsersStoreFollowFunc - // GetByEmailFunc is an instance of a mock function object controlling - // the behavior of the method GetByEmail. - GetByEmailFunc *UsersStoreGetByEmailFunc - // GetByIDFunc is an instance of a mock function object controlling the - // behavior of the method GetByID. - GetByIDFunc *UsersStoreGetByIDFunc - // GetByKeyIDFunc is an instance of a mock function object controlling - // the behavior of the method GetByKeyID. - GetByKeyIDFunc *UsersStoreGetByKeyIDFunc - // GetByUsernameFunc is an instance of a mock function object - // controlling the behavior of the method GetByUsername. - GetByUsernameFunc *UsersStoreGetByUsernameFunc - // GetEmailFunc is an instance of a mock function object controlling the - // behavior of the method GetEmail. - GetEmailFunc *UsersStoreGetEmailFunc - // GetMailableEmailsByUsernamesFunc is an instance of a mock function - // object controlling the behavior of the method - // GetMailableEmailsByUsernames. - GetMailableEmailsByUsernamesFunc *UsersStoreGetMailableEmailsByUsernamesFunc - // IsFollowingFunc is an instance of a mock function object controlling - // the behavior of the method IsFollowing. - IsFollowingFunc *UsersStoreIsFollowingFunc - // IsUsernameUsedFunc is an instance of a mock function object - // controlling the behavior of the method IsUsernameUsed. - IsUsernameUsedFunc *UsersStoreIsUsernameUsedFunc - // ListFunc is an instance of a mock function object controlling the - // behavior of the method List. - ListFunc *UsersStoreListFunc - // ListEmailsFunc is an instance of a mock function object controlling - // the behavior of the method ListEmails. - ListEmailsFunc *UsersStoreListEmailsFunc - // ListFollowersFunc is an instance of a mock function object - // controlling the behavior of the method ListFollowers. - ListFollowersFunc *UsersStoreListFollowersFunc - // ListFollowingsFunc is an instance of a mock function object - // controlling the behavior of the method ListFollowings. - ListFollowingsFunc *UsersStoreListFollowingsFunc - // MarkEmailActivatedFunc is an instance of a mock function object - // controlling the behavior of the method MarkEmailActivated. - MarkEmailActivatedFunc *UsersStoreMarkEmailActivatedFunc - // MarkEmailPrimaryFunc is an instance of a mock function object - // controlling the behavior of the method MarkEmailPrimary. - MarkEmailPrimaryFunc *UsersStoreMarkEmailPrimaryFunc - // SearchByNameFunc is an instance of a mock function object controlling - // the behavior of the method SearchByName. - SearchByNameFunc *UsersStoreSearchByNameFunc - // UnfollowFunc is an instance of a mock function object controlling the - // behavior of the method Unfollow. - UnfollowFunc *UsersStoreUnfollowFunc - // UpdateFunc is an instance of a mock function object controlling the - // behavior of the method Update. - UpdateFunc *UsersStoreUpdateFunc - // UseCustomAvatarFunc is an instance of a mock function object - // controlling the behavior of the method UseCustomAvatar. - UseCustomAvatarFunc *UsersStoreUseCustomAvatarFunc -} - -// NewMockUsersStore creates a new mock of the UsersStore interface. All -// methods return zero values for all results, unless overwritten. -func NewMockUsersStore() *MockUsersStore { - return &MockUsersStore{ - AddEmailFunc: &UsersStoreAddEmailFunc{ - defaultHook: func(context.Context, int64, string, bool) (r0 error) { - return - }, - }, - AuthenticateFunc: &UsersStoreAuthenticateFunc{ - defaultHook: func(context.Context, string, string, int64) (r0 *database.User, r1 error) { - return - }, - }, - ChangeUsernameFunc: &UsersStoreChangeUsernameFunc{ - defaultHook: func(context.Context, int64, string) (r0 error) { - return - }, - }, - CountFunc: &UsersStoreCountFunc{ - defaultHook: func(context.Context) (r0 int64) { - return - }, - }, - CreateFunc: &UsersStoreCreateFunc{ - defaultHook: func(context.Context, string, string, database.CreateUserOptions) (r0 *database.User, r1 error) { - return - }, - }, - DeleteByIDFunc: &UsersStoreDeleteByIDFunc{ - defaultHook: func(context.Context, int64, bool) (r0 error) { - return - }, - }, - DeleteCustomAvatarFunc: &UsersStoreDeleteCustomAvatarFunc{ - defaultHook: func(context.Context, int64) (r0 error) { - return - }, - }, - DeleteEmailFunc: &UsersStoreDeleteEmailFunc{ - defaultHook: func(context.Context, int64, string) (r0 error) { - return - }, - }, - DeleteInactivatedFunc: &UsersStoreDeleteInactivatedFunc{ - defaultHook: func() (r0 error) { - return - }, - }, - FollowFunc: &UsersStoreFollowFunc{ - defaultHook: func(context.Context, int64, int64) (r0 error) { - return - }, - }, - GetByEmailFunc: &UsersStoreGetByEmailFunc{ - defaultHook: func(context.Context, string) (r0 *database.User, r1 error) { - return - }, - }, - GetByIDFunc: &UsersStoreGetByIDFunc{ - defaultHook: func(context.Context, int64) (r0 *database.User, r1 error) { - return - }, - }, - GetByKeyIDFunc: &UsersStoreGetByKeyIDFunc{ - defaultHook: func(context.Context, int64) (r0 *database.User, r1 error) { - return - }, - }, - GetByUsernameFunc: &UsersStoreGetByUsernameFunc{ - defaultHook: func(context.Context, string) (r0 *database.User, r1 error) { - return - }, - }, - GetEmailFunc: &UsersStoreGetEmailFunc{ - defaultHook: func(context.Context, int64, string, bool) (r0 *database.EmailAddress, r1 error) { - return - }, - }, - GetMailableEmailsByUsernamesFunc: &UsersStoreGetMailableEmailsByUsernamesFunc{ - defaultHook: func(context.Context, []string) (r0 []string, r1 error) { - return - }, - }, - IsFollowingFunc: &UsersStoreIsFollowingFunc{ - defaultHook: func(context.Context, int64, int64) (r0 bool) { - return - }, - }, - IsUsernameUsedFunc: &UsersStoreIsUsernameUsedFunc{ - defaultHook: func(context.Context, string, int64) (r0 bool) { - return - }, - }, - ListFunc: &UsersStoreListFunc{ - defaultHook: func(context.Context, int, int) (r0 []*database.User, r1 error) { - return - }, - }, - ListEmailsFunc: &UsersStoreListEmailsFunc{ - defaultHook: func(context.Context, int64) (r0 []*database.EmailAddress, r1 error) { - return - }, - }, - ListFollowersFunc: &UsersStoreListFollowersFunc{ - defaultHook: func(context.Context, int64, int, int) (r0 []*database.User, r1 error) { - return - }, - }, - ListFollowingsFunc: &UsersStoreListFollowingsFunc{ - defaultHook: func(context.Context, int64, int, int) (r0 []*database.User, r1 error) { - return - }, - }, - MarkEmailActivatedFunc: &UsersStoreMarkEmailActivatedFunc{ - defaultHook: func(context.Context, int64, string) (r0 error) { - return - }, - }, - MarkEmailPrimaryFunc: &UsersStoreMarkEmailPrimaryFunc{ - defaultHook: func(context.Context, int64, string) (r0 error) { - return - }, - }, - SearchByNameFunc: &UsersStoreSearchByNameFunc{ - defaultHook: func(context.Context, string, int, int, string) (r0 []*database.User, r1 int64, r2 error) { - return - }, - }, - UnfollowFunc: &UsersStoreUnfollowFunc{ - defaultHook: func(context.Context, int64, int64) (r0 error) { - return - }, - }, - UpdateFunc: &UsersStoreUpdateFunc{ - defaultHook: func(context.Context, int64, database.UpdateUserOptions) (r0 error) { - return - }, - }, - UseCustomAvatarFunc: &UsersStoreUseCustomAvatarFunc{ - defaultHook: func(context.Context, int64, []byte) (r0 error) { - return - }, - }, - } -} - -// NewStrictMockUsersStore creates a new mock of the UsersStore interface. -// All methods panic on invocation, unless overwritten. -func NewStrictMockUsersStore() *MockUsersStore { - return &MockUsersStore{ - AddEmailFunc: &UsersStoreAddEmailFunc{ - defaultHook: func(context.Context, int64, string, bool) error { - panic("unexpected invocation of MockUsersStore.AddEmail") - }, - }, - AuthenticateFunc: &UsersStoreAuthenticateFunc{ - defaultHook: func(context.Context, string, string, int64) (*database.User, error) { - panic("unexpected invocation of MockUsersStore.Authenticate") - }, - }, - ChangeUsernameFunc: &UsersStoreChangeUsernameFunc{ - defaultHook: func(context.Context, int64, string) error { - panic("unexpected invocation of MockUsersStore.ChangeUsername") - }, - }, - CountFunc: &UsersStoreCountFunc{ - defaultHook: func(context.Context) int64 { - panic("unexpected invocation of MockUsersStore.Count") - }, - }, - CreateFunc: &UsersStoreCreateFunc{ - defaultHook: func(context.Context, string, string, database.CreateUserOptions) (*database.User, error) { - panic("unexpected invocation of MockUsersStore.Create") - }, - }, - DeleteByIDFunc: &UsersStoreDeleteByIDFunc{ - defaultHook: func(context.Context, int64, bool) error { - panic("unexpected invocation of MockUsersStore.DeleteByID") - }, - }, - DeleteCustomAvatarFunc: &UsersStoreDeleteCustomAvatarFunc{ - defaultHook: func(context.Context, int64) error { - panic("unexpected invocation of MockUsersStore.DeleteCustomAvatar") - }, - }, - DeleteEmailFunc: &UsersStoreDeleteEmailFunc{ - defaultHook: func(context.Context, int64, string) error { - panic("unexpected invocation of MockUsersStore.DeleteEmail") - }, - }, - DeleteInactivatedFunc: &UsersStoreDeleteInactivatedFunc{ - defaultHook: func() error { - panic("unexpected invocation of MockUsersStore.DeleteInactivated") - }, - }, - FollowFunc: &UsersStoreFollowFunc{ - defaultHook: func(context.Context, int64, int64) error { - panic("unexpected invocation of MockUsersStore.Follow") - }, - }, - GetByEmailFunc: &UsersStoreGetByEmailFunc{ - defaultHook: func(context.Context, string) (*database.User, error) { - panic("unexpected invocation of MockUsersStore.GetByEmail") - }, - }, - GetByIDFunc: &UsersStoreGetByIDFunc{ - defaultHook: func(context.Context, int64) (*database.User, error) { - panic("unexpected invocation of MockUsersStore.GetByID") - }, - }, - GetByKeyIDFunc: &UsersStoreGetByKeyIDFunc{ - defaultHook: func(context.Context, int64) (*database.User, error) { - panic("unexpected invocation of MockUsersStore.GetByKeyID") - }, - }, - GetByUsernameFunc: &UsersStoreGetByUsernameFunc{ - defaultHook: func(context.Context, string) (*database.User, error) { - panic("unexpected invocation of MockUsersStore.GetByUsername") - }, - }, - GetEmailFunc: &UsersStoreGetEmailFunc{ - defaultHook: func(context.Context, int64, string, bool) (*database.EmailAddress, error) { - panic("unexpected invocation of MockUsersStore.GetEmail") - }, - }, - GetMailableEmailsByUsernamesFunc: &UsersStoreGetMailableEmailsByUsernamesFunc{ - defaultHook: func(context.Context, []string) ([]string, error) { - panic("unexpected invocation of MockUsersStore.GetMailableEmailsByUsernames") - }, - }, - IsFollowingFunc: &UsersStoreIsFollowingFunc{ - defaultHook: func(context.Context, int64, int64) bool { - panic("unexpected invocation of MockUsersStore.IsFollowing") - }, - }, - IsUsernameUsedFunc: &UsersStoreIsUsernameUsedFunc{ - defaultHook: func(context.Context, string, int64) bool { - panic("unexpected invocation of MockUsersStore.IsUsernameUsed") - }, - }, - ListFunc: &UsersStoreListFunc{ - defaultHook: func(context.Context, int, int) ([]*database.User, error) { - panic("unexpected invocation of MockUsersStore.List") - }, - }, - ListEmailsFunc: &UsersStoreListEmailsFunc{ - defaultHook: func(context.Context, int64) ([]*database.EmailAddress, error) { - panic("unexpected invocation of MockUsersStore.ListEmails") - }, - }, - ListFollowersFunc: &UsersStoreListFollowersFunc{ - defaultHook: func(context.Context, int64, int, int) ([]*database.User, error) { - panic("unexpected invocation of MockUsersStore.ListFollowers") - }, - }, - ListFollowingsFunc: &UsersStoreListFollowingsFunc{ - defaultHook: func(context.Context, int64, int, int) ([]*database.User, error) { - panic("unexpected invocation of MockUsersStore.ListFollowings") - }, - }, - MarkEmailActivatedFunc: &UsersStoreMarkEmailActivatedFunc{ - defaultHook: func(context.Context, int64, string) error { - panic("unexpected invocation of MockUsersStore.MarkEmailActivated") - }, - }, - MarkEmailPrimaryFunc: &UsersStoreMarkEmailPrimaryFunc{ - defaultHook: func(context.Context, int64, string) error { - panic("unexpected invocation of MockUsersStore.MarkEmailPrimary") - }, - }, - SearchByNameFunc: &UsersStoreSearchByNameFunc{ - defaultHook: func(context.Context, string, int, int, string) ([]*database.User, int64, error) { - panic("unexpected invocation of MockUsersStore.SearchByName") - }, - }, - UnfollowFunc: &UsersStoreUnfollowFunc{ - defaultHook: func(context.Context, int64, int64) error { - panic("unexpected invocation of MockUsersStore.Unfollow") - }, - }, - UpdateFunc: &UsersStoreUpdateFunc{ - defaultHook: func(context.Context, int64, database.UpdateUserOptions) error { - panic("unexpected invocation of MockUsersStore.Update") - }, - }, - UseCustomAvatarFunc: &UsersStoreUseCustomAvatarFunc{ - defaultHook: func(context.Context, int64, []byte) error { - panic("unexpected invocation of MockUsersStore.UseCustomAvatar") - }, - }, - } -} - -// NewMockUsersStoreFrom creates a new mock of the MockUsersStore interface. -// All methods delegate to the given implementation, unless overwritten. -func NewMockUsersStoreFrom(i database.UsersStore) *MockUsersStore { - return &MockUsersStore{ - AddEmailFunc: &UsersStoreAddEmailFunc{ - defaultHook: i.AddEmail, - }, - AuthenticateFunc: &UsersStoreAuthenticateFunc{ - defaultHook: i.Authenticate, - }, - ChangeUsernameFunc: &UsersStoreChangeUsernameFunc{ - defaultHook: i.ChangeUsername, - }, - CountFunc: &UsersStoreCountFunc{ - defaultHook: i.Count, - }, - CreateFunc: &UsersStoreCreateFunc{ - defaultHook: i.Create, - }, - DeleteByIDFunc: &UsersStoreDeleteByIDFunc{ - defaultHook: i.DeleteByID, - }, - DeleteCustomAvatarFunc: &UsersStoreDeleteCustomAvatarFunc{ - defaultHook: i.DeleteCustomAvatar, - }, - DeleteEmailFunc: &UsersStoreDeleteEmailFunc{ - defaultHook: i.DeleteEmail, - }, - DeleteInactivatedFunc: &UsersStoreDeleteInactivatedFunc{ - defaultHook: i.DeleteInactivated, - }, - FollowFunc: &UsersStoreFollowFunc{ - defaultHook: i.Follow, - }, - GetByEmailFunc: &UsersStoreGetByEmailFunc{ - defaultHook: i.GetByEmail, - }, - GetByIDFunc: &UsersStoreGetByIDFunc{ - defaultHook: i.GetByID, - }, - GetByKeyIDFunc: &UsersStoreGetByKeyIDFunc{ - defaultHook: i.GetByKeyID, - }, - GetByUsernameFunc: &UsersStoreGetByUsernameFunc{ - defaultHook: i.GetByUsername, - }, - GetEmailFunc: &UsersStoreGetEmailFunc{ - defaultHook: i.GetEmail, - }, - GetMailableEmailsByUsernamesFunc: &UsersStoreGetMailableEmailsByUsernamesFunc{ - defaultHook: i.GetMailableEmailsByUsernames, - }, - IsFollowingFunc: &UsersStoreIsFollowingFunc{ - defaultHook: i.IsFollowing, - }, - IsUsernameUsedFunc: &UsersStoreIsUsernameUsedFunc{ - defaultHook: i.IsUsernameUsed, - }, - ListFunc: &UsersStoreListFunc{ - defaultHook: i.List, - }, - ListEmailsFunc: &UsersStoreListEmailsFunc{ - defaultHook: i.ListEmails, - }, - ListFollowersFunc: &UsersStoreListFollowersFunc{ - defaultHook: i.ListFollowers, - }, - ListFollowingsFunc: &UsersStoreListFollowingsFunc{ - defaultHook: i.ListFollowings, - }, - MarkEmailActivatedFunc: &UsersStoreMarkEmailActivatedFunc{ - defaultHook: i.MarkEmailActivated, - }, - MarkEmailPrimaryFunc: &UsersStoreMarkEmailPrimaryFunc{ - defaultHook: i.MarkEmailPrimary, - }, - SearchByNameFunc: &UsersStoreSearchByNameFunc{ - defaultHook: i.SearchByName, - }, - UnfollowFunc: &UsersStoreUnfollowFunc{ - defaultHook: i.Unfollow, - }, - UpdateFunc: &UsersStoreUpdateFunc{ - defaultHook: i.Update, - }, - UseCustomAvatarFunc: &UsersStoreUseCustomAvatarFunc{ - defaultHook: i.UseCustomAvatar, - }, - } -} - -// UsersStoreAddEmailFunc describes the behavior when the AddEmail method of -// the parent MockUsersStore instance is invoked. -type UsersStoreAddEmailFunc struct { - defaultHook func(context.Context, int64, string, bool) error - hooks []func(context.Context, int64, string, bool) error - history []UsersStoreAddEmailFuncCall - mutex sync.Mutex -} - -// AddEmail delegates to the next hook function in the queue and stores the -// parameter and result values of this invocation. -func (m *MockUsersStore) AddEmail(v0 context.Context, v1 int64, v2 string, v3 bool) error { - r0 := m.AddEmailFunc.nextHook()(v0, v1, v2, v3) - m.AddEmailFunc.appendCall(UsersStoreAddEmailFuncCall{v0, v1, v2, v3, r0}) - return r0 -} - -// SetDefaultHook sets function that is called when the AddEmail method of -// the parent MockUsersStore instance is invoked and the hook queue is -// empty. -func (f *UsersStoreAddEmailFunc) SetDefaultHook(hook func(context.Context, int64, string, bool) error) { - f.defaultHook = hook -} - -// PushHook adds a function to the end of hook queue. Each invocation of the -// AddEmail 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 *UsersStoreAddEmailFunc) PushHook(hook func(context.Context, int64, string, bool) error) { - 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 *UsersStoreAddEmailFunc) SetDefaultReturn(r0 error) { - f.SetDefaultHook(func(context.Context, int64, string, bool) error { - return r0 - }) -} - -// PushReturn calls PushHook with a function that returns the given values. -func (f *UsersStoreAddEmailFunc) PushReturn(r0 error) { - f.PushHook(func(context.Context, int64, string, bool) error { - return r0 - }) -} - -func (f *UsersStoreAddEmailFunc) nextHook() func(context.Context, int64, string, bool) error { - 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 *UsersStoreAddEmailFunc) appendCall(r0 UsersStoreAddEmailFuncCall) { - f.mutex.Lock() - f.history = append(f.history, r0) - f.mutex.Unlock() -} - -// History returns a sequence of UsersStoreAddEmailFuncCall objects -// describing the invocations of this function. -func (f *UsersStoreAddEmailFunc) History() []UsersStoreAddEmailFuncCall { - f.mutex.Lock() - history := make([]UsersStoreAddEmailFuncCall, len(f.history)) - copy(history, f.history) - f.mutex.Unlock() - - return history -} - -// UsersStoreAddEmailFuncCall is an object that describes an invocation of -// method AddEmail on an instance of MockUsersStore. -type UsersStoreAddEmailFuncCall 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 int64 - // Arg2 is the value of the 3rd argument passed to this method - // invocation. - Arg2 string - // Arg3 is the value of the 4th argument passed to this method - // invocation. - Arg3 bool - // Result0 is the value of the 1st result returned from this method - // invocation. - Result0 error -} - -// Args returns an interface slice containing the arguments of this -// invocation. -func (c UsersStoreAddEmailFuncCall) Args() []interface{} { - return []interface{}{c.Arg0, c.Arg1, c.Arg2, c.Arg3} -} - -// Results returns an interface slice containing the results of this -// invocation. -func (c UsersStoreAddEmailFuncCall) Results() []interface{} { - return []interface{}{c.Result0} -} - -// UsersStoreAuthenticateFunc describes the behavior when the Authenticate -// method of the parent MockUsersStore instance is invoked. -type UsersStoreAuthenticateFunc struct { - defaultHook func(context.Context, string, string, int64) (*database.User, error) - hooks []func(context.Context, string, string, int64) (*database.User, error) - history []UsersStoreAuthenticateFuncCall - mutex sync.Mutex -} - -// Authenticate delegates to the next hook function in the queue and stores -// the parameter and result values of this invocation. -func (m *MockUsersStore) Authenticate(v0 context.Context, v1 string, v2 string, v3 int64) (*database.User, error) { - r0, r1 := m.AuthenticateFunc.nextHook()(v0, v1, v2, v3) - m.AuthenticateFunc.appendCall(UsersStoreAuthenticateFuncCall{v0, v1, v2, v3, r0, r1}) - return r0, r1 -} - -// SetDefaultHook sets function that is called when the Authenticate method -// of the parent MockUsersStore instance is invoked and the hook queue is -// empty. -func (f *UsersStoreAuthenticateFunc) SetDefaultHook(hook func(context.Context, string, string, int64) (*database.User, error)) { - f.defaultHook = hook -} - -// PushHook adds a function to the end of hook queue. Each invocation of the -// Authenticate 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 *UsersStoreAuthenticateFunc) PushHook(hook func(context.Context, string, string, int64) (*database.User, error)) { - 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 *UsersStoreAuthenticateFunc) SetDefaultReturn(r0 *database.User, r1 error) { - f.SetDefaultHook(func(context.Context, string, string, int64) (*database.User, error) { - return r0, r1 - }) -} - -// PushReturn calls PushHook with a function that returns the given values. -func (f *UsersStoreAuthenticateFunc) PushReturn(r0 *database.User, r1 error) { - f.PushHook(func(context.Context, string, string, int64) (*database.User, error) { - return r0, r1 - }) -} - -func (f *UsersStoreAuthenticateFunc) nextHook() func(context.Context, string, string, int64) (*database.User, error) { - 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 *UsersStoreAuthenticateFunc) appendCall(r0 UsersStoreAuthenticateFuncCall) { - f.mutex.Lock() - f.history = append(f.history, r0) - f.mutex.Unlock() -} - -// History returns a sequence of UsersStoreAuthenticateFuncCall objects -// describing the invocations of this function. -func (f *UsersStoreAuthenticateFunc) History() []UsersStoreAuthenticateFuncCall { - f.mutex.Lock() - history := make([]UsersStoreAuthenticateFuncCall, len(f.history)) - copy(history, f.history) - f.mutex.Unlock() - - return history -} - -// UsersStoreAuthenticateFuncCall is an object that describes an invocation -// of method Authenticate on an instance of MockUsersStore. -type UsersStoreAuthenticateFuncCall 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 - // Arg2 is the value of the 3rd argument passed to this method - // invocation. - Arg2 string - // Arg3 is the value of the 4th argument passed to this method - // invocation. - Arg3 int64 - // Result0 is the value of the 1st result returned from this method - // invocation. - Result0 *database.User - // Result1 is the value of the 2nd result returned from this method - // invocation. - Result1 error -} - -// Args returns an interface slice containing the arguments of this -// invocation. -func (c UsersStoreAuthenticateFuncCall) Args() []interface{} { - return []interface{}{c.Arg0, c.Arg1, c.Arg2, c.Arg3} -} - -// Results returns an interface slice containing the results of this -// invocation. -func (c UsersStoreAuthenticateFuncCall) Results() []interface{} { - return []interface{}{c.Result0, c.Result1} -} - -// UsersStoreChangeUsernameFunc describes the behavior when the -// ChangeUsername method of the parent MockUsersStore instance is invoked. -type UsersStoreChangeUsernameFunc struct { - defaultHook func(context.Context, int64, string) error - hooks []func(context.Context, int64, string) error - history []UsersStoreChangeUsernameFuncCall - mutex sync.Mutex -} - -// ChangeUsername delegates to the next hook function in the queue and -// stores the parameter and result values of this invocation. -func (m *MockUsersStore) ChangeUsername(v0 context.Context, v1 int64, v2 string) error { - r0 := m.ChangeUsernameFunc.nextHook()(v0, v1, v2) - m.ChangeUsernameFunc.appendCall(UsersStoreChangeUsernameFuncCall{v0, v1, v2, r0}) - return r0 -} - -// SetDefaultHook sets function that is called when the ChangeUsername -// method of the parent MockUsersStore instance is invoked and the hook -// queue is empty. -func (f *UsersStoreChangeUsernameFunc) SetDefaultHook(hook func(context.Context, int64, string) error) { - f.defaultHook = hook -} - -// PushHook adds a function to the end of hook queue. Each invocation of the -// ChangeUsername 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 *UsersStoreChangeUsernameFunc) PushHook(hook func(context.Context, int64, string) error) { - 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 *UsersStoreChangeUsernameFunc) SetDefaultReturn(r0 error) { - f.SetDefaultHook(func(context.Context, int64, string) error { - return r0 - }) -} - -// PushReturn calls PushHook with a function that returns the given values. -func (f *UsersStoreChangeUsernameFunc) PushReturn(r0 error) { - f.PushHook(func(context.Context, int64, string) error { - return r0 - }) -} - -func (f *UsersStoreChangeUsernameFunc) nextHook() func(context.Context, int64, string) error { - 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 *UsersStoreChangeUsernameFunc) appendCall(r0 UsersStoreChangeUsernameFuncCall) { - f.mutex.Lock() - f.history = append(f.history, r0) - f.mutex.Unlock() -} - -// History returns a sequence of UsersStoreChangeUsernameFuncCall objects -// describing the invocations of this function. -func (f *UsersStoreChangeUsernameFunc) History() []UsersStoreChangeUsernameFuncCall { - f.mutex.Lock() - history := make([]UsersStoreChangeUsernameFuncCall, len(f.history)) - copy(history, f.history) - f.mutex.Unlock() - - return history -} - -// UsersStoreChangeUsernameFuncCall is an object that describes an -// invocation of method ChangeUsername on an instance of MockUsersStore. -type UsersStoreChangeUsernameFuncCall 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 int64 - // Arg2 is the value of the 3rd argument passed to this method - // invocation. - Arg2 string - // Result0 is the value of the 1st result returned from this method - // invocation. - Result0 error -} - -// Args returns an interface slice containing the arguments of this -// invocation. -func (c UsersStoreChangeUsernameFuncCall) Args() []interface{} { - return []interface{}{c.Arg0, c.Arg1, c.Arg2} -} - -// Results returns an interface slice containing the results of this -// invocation. -func (c UsersStoreChangeUsernameFuncCall) Results() []interface{} { - return []interface{}{c.Result0} -} - -// UsersStoreCountFunc describes the behavior when the Count method of the -// parent MockUsersStore instance is invoked. -type UsersStoreCountFunc struct { - defaultHook func(context.Context) int64 - hooks []func(context.Context) int64 - history []UsersStoreCountFuncCall - mutex sync.Mutex -} - -// Count delegates to the next hook function in the queue and stores the -// parameter and result values of this invocation. -func (m *MockUsersStore) Count(v0 context.Context) int64 { - r0 := m.CountFunc.nextHook()(v0) - m.CountFunc.appendCall(UsersStoreCountFuncCall{v0, r0}) - return r0 -} - -// SetDefaultHook sets function that is called when the Count method of the -// parent MockUsersStore instance is invoked and the hook queue is empty. -func (f *UsersStoreCountFunc) SetDefaultHook(hook func(context.Context) int64) { - f.defaultHook = hook -} - -// PushHook adds a function to the end of hook queue. Each invocation of the -// Count 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 *UsersStoreCountFunc) PushHook(hook func(context.Context) int64) { - 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 *UsersStoreCountFunc) SetDefaultReturn(r0 int64) { - f.SetDefaultHook(func(context.Context) int64 { - return r0 - }) -} - -// PushReturn calls PushHook with a function that returns the given values. -func (f *UsersStoreCountFunc) PushReturn(r0 int64) { - f.PushHook(func(context.Context) int64 { - return r0 - }) -} - -func (f *UsersStoreCountFunc) nextHook() func(context.Context) int64 { - 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 *UsersStoreCountFunc) appendCall(r0 UsersStoreCountFuncCall) { - f.mutex.Lock() - f.history = append(f.history, r0) - f.mutex.Unlock() -} - -// History returns a sequence of UsersStoreCountFuncCall objects describing -// the invocations of this function. -func (f *UsersStoreCountFunc) History() []UsersStoreCountFuncCall { - f.mutex.Lock() - history := make([]UsersStoreCountFuncCall, len(f.history)) - copy(history, f.history) - f.mutex.Unlock() - - return history -} - -// UsersStoreCountFuncCall is an object that describes an invocation of -// method Count on an instance of MockUsersStore. -type UsersStoreCountFuncCall struct { - // Arg0 is the value of the 1st argument passed to this method - // invocation. - Arg0 context.Context - // Result0 is the value of the 1st result returned from this method - // invocation. - Result0 int64 -} - -// Args returns an interface slice containing the arguments of this -// invocation. -func (c UsersStoreCountFuncCall) Args() []interface{} { - return []interface{}{c.Arg0} -} - -// Results returns an interface slice containing the results of this -// invocation. -func (c UsersStoreCountFuncCall) Results() []interface{} { - return []interface{}{c.Result0} -} - -// UsersStoreCreateFunc describes the behavior when the Create method of the -// parent MockUsersStore instance is invoked. -type UsersStoreCreateFunc struct { - defaultHook func(context.Context, string, string, database.CreateUserOptions) (*database.User, error) - hooks []func(context.Context, string, string, database.CreateUserOptions) (*database.User, error) - history []UsersStoreCreateFuncCall - mutex sync.Mutex -} - -// Create delegates to the next hook function in the queue and stores the -// parameter and result values of this invocation. -func (m *MockUsersStore) Create(v0 context.Context, v1 string, v2 string, v3 database.CreateUserOptions) (*database.User, error) { - r0, r1 := m.CreateFunc.nextHook()(v0, v1, v2, v3) - m.CreateFunc.appendCall(UsersStoreCreateFuncCall{v0, v1, v2, v3, r0, r1}) - return r0, r1 -} - -// SetDefaultHook sets function that is called when the Create method of the -// parent MockUsersStore instance is invoked and the hook queue is empty. -func (f *UsersStoreCreateFunc) SetDefaultHook(hook func(context.Context, string, string, database.CreateUserOptions) (*database.User, error)) { - f.defaultHook = hook -} - -// PushHook adds a function to the end of hook queue. Each invocation of the -// Create 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 *UsersStoreCreateFunc) PushHook(hook func(context.Context, string, string, database.CreateUserOptions) (*database.User, error)) { - 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 *UsersStoreCreateFunc) SetDefaultReturn(r0 *database.User, r1 error) { - f.SetDefaultHook(func(context.Context, string, string, database.CreateUserOptions) (*database.User, error) { - return r0, r1 - }) -} - -// PushReturn calls PushHook with a function that returns the given values. -func (f *UsersStoreCreateFunc) PushReturn(r0 *database.User, r1 error) { - f.PushHook(func(context.Context, string, string, database.CreateUserOptions) (*database.User, error) { - return r0, r1 - }) -} - -func (f *UsersStoreCreateFunc) nextHook() func(context.Context, string, string, database.CreateUserOptions) (*database.User, error) { - 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 *UsersStoreCreateFunc) appendCall(r0 UsersStoreCreateFuncCall) { - f.mutex.Lock() - f.history = append(f.history, r0) - f.mutex.Unlock() -} - -// History returns a sequence of UsersStoreCreateFuncCall objects describing -// the invocations of this function. -func (f *UsersStoreCreateFunc) History() []UsersStoreCreateFuncCall { - f.mutex.Lock() - history := make([]UsersStoreCreateFuncCall, len(f.history)) - copy(history, f.history) - f.mutex.Unlock() - - return history -} - -// UsersStoreCreateFuncCall is an object that describes an invocation of -// method Create on an instance of MockUsersStore. -type UsersStoreCreateFuncCall 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 - // Arg2 is the value of the 3rd argument passed to this method - // invocation. - Arg2 string - // Arg3 is the value of the 4th argument passed to this method - // invocation. - Arg3 database.CreateUserOptions - // Result0 is the value of the 1st result returned from this method - // invocation. - Result0 *database.User - // Result1 is the value of the 2nd result returned from this method - // invocation. - Result1 error -} - -// Args returns an interface slice containing the arguments of this -// invocation. -func (c UsersStoreCreateFuncCall) Args() []interface{} { - return []interface{}{c.Arg0, c.Arg1, c.Arg2, c.Arg3} -} - -// Results returns an interface slice containing the results of this -// invocation. -func (c UsersStoreCreateFuncCall) Results() []interface{} { - return []interface{}{c.Result0, c.Result1} -} - -// UsersStoreDeleteByIDFunc describes the behavior when the DeleteByID -// method of the parent MockUsersStore instance is invoked. -type UsersStoreDeleteByIDFunc struct { - defaultHook func(context.Context, int64, bool) error - hooks []func(context.Context, int64, bool) error - history []UsersStoreDeleteByIDFuncCall - mutex sync.Mutex -} - -// DeleteByID delegates to the next hook function in the queue and stores -// the parameter and result values of this invocation. -func (m *MockUsersStore) DeleteByID(v0 context.Context, v1 int64, v2 bool) error { - r0 := m.DeleteByIDFunc.nextHook()(v0, v1, v2) - m.DeleteByIDFunc.appendCall(UsersStoreDeleteByIDFuncCall{v0, v1, v2, r0}) - return r0 -} - -// SetDefaultHook sets function that is called when the DeleteByID method of -// the parent MockUsersStore instance is invoked and the hook queue is -// empty. -func (f *UsersStoreDeleteByIDFunc) SetDefaultHook(hook func(context.Context, int64, bool) error) { - f.defaultHook = hook -} - -// PushHook adds a function to the end of hook queue. Each invocation of the -// DeleteByID 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 *UsersStoreDeleteByIDFunc) PushHook(hook func(context.Context, int64, bool) error) { - 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 *UsersStoreDeleteByIDFunc) SetDefaultReturn(r0 error) { - f.SetDefaultHook(func(context.Context, int64, bool) error { - return r0 - }) -} - -// PushReturn calls PushHook with a function that returns the given values. -func (f *UsersStoreDeleteByIDFunc) PushReturn(r0 error) { - f.PushHook(func(context.Context, int64, bool) error { - return r0 - }) -} - -func (f *UsersStoreDeleteByIDFunc) nextHook() func(context.Context, int64, bool) error { - 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 *UsersStoreDeleteByIDFunc) appendCall(r0 UsersStoreDeleteByIDFuncCall) { - f.mutex.Lock() - f.history = append(f.history, r0) - f.mutex.Unlock() -} - -// History returns a sequence of UsersStoreDeleteByIDFuncCall objects -// describing the invocations of this function. -func (f *UsersStoreDeleteByIDFunc) History() []UsersStoreDeleteByIDFuncCall { - f.mutex.Lock() - history := make([]UsersStoreDeleteByIDFuncCall, len(f.history)) - copy(history, f.history) - f.mutex.Unlock() - - return history -} - -// UsersStoreDeleteByIDFuncCall is an object that describes an invocation of -// method DeleteByID on an instance of MockUsersStore. -type UsersStoreDeleteByIDFuncCall 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 int64 - // Arg2 is the value of the 3rd argument passed to this method - // invocation. - Arg2 bool - // Result0 is the value of the 1st result returned from this method - // invocation. - Result0 error -} - -// Args returns an interface slice containing the arguments of this -// invocation. -func (c UsersStoreDeleteByIDFuncCall) Args() []interface{} { - return []interface{}{c.Arg0, c.Arg1, c.Arg2} -} - -// Results returns an interface slice containing the results of this -// invocation. -func (c UsersStoreDeleteByIDFuncCall) Results() []interface{} { - return []interface{}{c.Result0} -} - -// UsersStoreDeleteCustomAvatarFunc describes the behavior when the -// DeleteCustomAvatar method of the parent MockUsersStore instance is -// invoked. -type UsersStoreDeleteCustomAvatarFunc struct { - defaultHook func(context.Context, int64) error - hooks []func(context.Context, int64) error - history []UsersStoreDeleteCustomAvatarFuncCall - mutex sync.Mutex -} - -// DeleteCustomAvatar delegates to the next hook function in the queue and -// stores the parameter and result values of this invocation. -func (m *MockUsersStore) DeleteCustomAvatar(v0 context.Context, v1 int64) error { - r0 := m.DeleteCustomAvatarFunc.nextHook()(v0, v1) - m.DeleteCustomAvatarFunc.appendCall(UsersStoreDeleteCustomAvatarFuncCall{v0, v1, r0}) - return r0 -} - -// SetDefaultHook sets function that is called when the DeleteCustomAvatar -// method of the parent MockUsersStore instance is invoked and the hook -// queue is empty. -func (f *UsersStoreDeleteCustomAvatarFunc) SetDefaultHook(hook func(context.Context, int64) error) { - f.defaultHook = hook -} - -// PushHook adds a function to the end of hook queue. Each invocation of the -// DeleteCustomAvatar 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 *UsersStoreDeleteCustomAvatarFunc) PushHook(hook func(context.Context, int64) error) { - 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 *UsersStoreDeleteCustomAvatarFunc) SetDefaultReturn(r0 error) { - f.SetDefaultHook(func(context.Context, int64) error { - return r0 - }) -} - -// PushReturn calls PushHook with a function that returns the given values. -func (f *UsersStoreDeleteCustomAvatarFunc) PushReturn(r0 error) { - f.PushHook(func(context.Context, int64) error { - return r0 - }) -} - -func (f *UsersStoreDeleteCustomAvatarFunc) nextHook() func(context.Context, int64) error { - 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 *UsersStoreDeleteCustomAvatarFunc) appendCall(r0 UsersStoreDeleteCustomAvatarFuncCall) { - f.mutex.Lock() - f.history = append(f.history, r0) - f.mutex.Unlock() -} - -// History returns a sequence of UsersStoreDeleteCustomAvatarFuncCall -// objects describing the invocations of this function. -func (f *UsersStoreDeleteCustomAvatarFunc) History() []UsersStoreDeleteCustomAvatarFuncCall { - f.mutex.Lock() - history := make([]UsersStoreDeleteCustomAvatarFuncCall, len(f.history)) - copy(history, f.history) - f.mutex.Unlock() - - return history -} - -// UsersStoreDeleteCustomAvatarFuncCall is an object that describes an -// invocation of method DeleteCustomAvatar on an instance of MockUsersStore. -type UsersStoreDeleteCustomAvatarFuncCall 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 int64 - // Result0 is the value of the 1st result returned from this method - // invocation. - Result0 error -} - -// Args returns an interface slice containing the arguments of this -// invocation. -func (c UsersStoreDeleteCustomAvatarFuncCall) Args() []interface{} { - return []interface{}{c.Arg0, c.Arg1} -} - -// Results returns an interface slice containing the results of this -// invocation. -func (c UsersStoreDeleteCustomAvatarFuncCall) Results() []interface{} { - return []interface{}{c.Result0} -} - -// UsersStoreDeleteEmailFunc describes the behavior when the DeleteEmail -// method of the parent MockUsersStore instance is invoked. -type UsersStoreDeleteEmailFunc struct { - defaultHook func(context.Context, int64, string) error - hooks []func(context.Context, int64, string) error - history []UsersStoreDeleteEmailFuncCall - mutex sync.Mutex -} - -// DeleteEmail delegates to the next hook function in the queue and stores -// the parameter and result values of this invocation. -func (m *MockUsersStore) DeleteEmail(v0 context.Context, v1 int64, v2 string) error { - r0 := m.DeleteEmailFunc.nextHook()(v0, v1, v2) - m.DeleteEmailFunc.appendCall(UsersStoreDeleteEmailFuncCall{v0, v1, v2, r0}) - return r0 -} - -// SetDefaultHook sets function that is called when the DeleteEmail method -// of the parent MockUsersStore instance is invoked and the hook queue is -// empty. -func (f *UsersStoreDeleteEmailFunc) SetDefaultHook(hook func(context.Context, int64, string) error) { - f.defaultHook = hook -} - -// PushHook adds a function to the end of hook queue. Each invocation of the -// DeleteEmail 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 *UsersStoreDeleteEmailFunc) PushHook(hook func(context.Context, int64, string) error) { - 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 *UsersStoreDeleteEmailFunc) SetDefaultReturn(r0 error) { - f.SetDefaultHook(func(context.Context, int64, string) error { - return r0 - }) -} - -// PushReturn calls PushHook with a function that returns the given values. -func (f *UsersStoreDeleteEmailFunc) PushReturn(r0 error) { - f.PushHook(func(context.Context, int64, string) error { - return r0 - }) -} - -func (f *UsersStoreDeleteEmailFunc) nextHook() func(context.Context, int64, string) error { - 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 *UsersStoreDeleteEmailFunc) appendCall(r0 UsersStoreDeleteEmailFuncCall) { - f.mutex.Lock() - f.history = append(f.history, r0) - f.mutex.Unlock() -} - -// History returns a sequence of UsersStoreDeleteEmailFuncCall objects -// describing the invocations of this function. -func (f *UsersStoreDeleteEmailFunc) History() []UsersStoreDeleteEmailFuncCall { - f.mutex.Lock() - history := make([]UsersStoreDeleteEmailFuncCall, len(f.history)) - copy(history, f.history) - f.mutex.Unlock() - - return history -} - -// UsersStoreDeleteEmailFuncCall is an object that describes an invocation -// of method DeleteEmail on an instance of MockUsersStore. -type UsersStoreDeleteEmailFuncCall 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 int64 - // Arg2 is the value of the 3rd argument passed to this method - // invocation. - Arg2 string - // Result0 is the value of the 1st result returned from this method - // invocation. - Result0 error -} - -// Args returns an interface slice containing the arguments of this -// invocation. -func (c UsersStoreDeleteEmailFuncCall) Args() []interface{} { - return []interface{}{c.Arg0, c.Arg1, c.Arg2} -} - -// Results returns an interface slice containing the results of this -// invocation. -func (c UsersStoreDeleteEmailFuncCall) Results() []interface{} { - return []interface{}{c.Result0} -} - -// UsersStoreDeleteInactivatedFunc describes the behavior when the -// DeleteInactivated method of the parent MockUsersStore instance is -// invoked. -type UsersStoreDeleteInactivatedFunc struct { - defaultHook func() error - hooks []func() error - history []UsersStoreDeleteInactivatedFuncCall - mutex sync.Mutex -} - -// DeleteInactivated delegates to the next hook function in the queue and -// stores the parameter and result values of this invocation. -func (m *MockUsersStore) DeleteInactivated() error { - r0 := m.DeleteInactivatedFunc.nextHook()() - m.DeleteInactivatedFunc.appendCall(UsersStoreDeleteInactivatedFuncCall{r0}) - return r0 -} - -// SetDefaultHook sets function that is called when the DeleteInactivated -// method of the parent MockUsersStore instance is invoked and the hook -// queue is empty. -func (f *UsersStoreDeleteInactivatedFunc) SetDefaultHook(hook func() error) { - f.defaultHook = hook -} - -// PushHook adds a function to the end of hook queue. Each invocation of the -// DeleteInactivated 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 *UsersStoreDeleteInactivatedFunc) PushHook(hook func() error) { - 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 *UsersStoreDeleteInactivatedFunc) SetDefaultReturn(r0 error) { - f.SetDefaultHook(func() error { - return r0 - }) -} - -// PushReturn calls PushHook with a function that returns the given values. -func (f *UsersStoreDeleteInactivatedFunc) PushReturn(r0 error) { - f.PushHook(func() error { - return r0 - }) -} - -func (f *UsersStoreDeleteInactivatedFunc) nextHook() func() error { - 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 *UsersStoreDeleteInactivatedFunc) appendCall(r0 UsersStoreDeleteInactivatedFuncCall) { - f.mutex.Lock() - f.history = append(f.history, r0) - f.mutex.Unlock() -} - -// History returns a sequence of UsersStoreDeleteInactivatedFuncCall objects -// describing the invocations of this function. -func (f *UsersStoreDeleteInactivatedFunc) History() []UsersStoreDeleteInactivatedFuncCall { - f.mutex.Lock() - history := make([]UsersStoreDeleteInactivatedFuncCall, len(f.history)) - copy(history, f.history) - f.mutex.Unlock() - - return history -} - -// UsersStoreDeleteInactivatedFuncCall is an object that describes an -// invocation of method DeleteInactivated on an instance of MockUsersStore. -type UsersStoreDeleteInactivatedFuncCall struct { - // Result0 is the value of the 1st result returned from this method - // invocation. - Result0 error -} - -// Args returns an interface slice containing the arguments of this -// invocation. -func (c UsersStoreDeleteInactivatedFuncCall) Args() []interface{} { - return []interface{}{} -} - -// Results returns an interface slice containing the results of this -// invocation. -func (c UsersStoreDeleteInactivatedFuncCall) Results() []interface{} { - return []interface{}{c.Result0} -} - -// UsersStoreFollowFunc describes the behavior when the Follow method of the -// parent MockUsersStore instance is invoked. -type UsersStoreFollowFunc struct { - defaultHook func(context.Context, int64, int64) error - hooks []func(context.Context, int64, int64) error - history []UsersStoreFollowFuncCall - mutex sync.Mutex -} - -// Follow delegates to the next hook function in the queue and stores the -// parameter and result values of this invocation. -func (m *MockUsersStore) Follow(v0 context.Context, v1 int64, v2 int64) error { - r0 := m.FollowFunc.nextHook()(v0, v1, v2) - m.FollowFunc.appendCall(UsersStoreFollowFuncCall{v0, v1, v2, r0}) - return r0 -} - -// SetDefaultHook sets function that is called when the Follow method of the -// parent MockUsersStore instance is invoked and the hook queue is empty. -func (f *UsersStoreFollowFunc) SetDefaultHook(hook func(context.Context, int64, int64) error) { - f.defaultHook = hook -} - -// PushHook adds a function to the end of hook queue. Each invocation of the -// Follow 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 *UsersStoreFollowFunc) PushHook(hook func(context.Context, int64, int64) error) { - 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 *UsersStoreFollowFunc) SetDefaultReturn(r0 error) { - f.SetDefaultHook(func(context.Context, int64, int64) error { - return r0 - }) -} - -// PushReturn calls PushHook with a function that returns the given values. -func (f *UsersStoreFollowFunc) PushReturn(r0 error) { - f.PushHook(func(context.Context, int64, int64) error { - return r0 - }) -} - -func (f *UsersStoreFollowFunc) nextHook() func(context.Context, int64, int64) error { - 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 *UsersStoreFollowFunc) appendCall(r0 UsersStoreFollowFuncCall) { - f.mutex.Lock() - f.history = append(f.history, r0) - f.mutex.Unlock() -} - -// History returns a sequence of UsersStoreFollowFuncCall objects describing -// the invocations of this function. -func (f *UsersStoreFollowFunc) History() []UsersStoreFollowFuncCall { - f.mutex.Lock() - history := make([]UsersStoreFollowFuncCall, len(f.history)) - copy(history, f.history) - f.mutex.Unlock() - - return history -} - -// UsersStoreFollowFuncCall is an object that describes an invocation of -// method Follow on an instance of MockUsersStore. -type UsersStoreFollowFuncCall 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 int64 - // Arg2 is the value of the 3rd argument passed to this method - // invocation. - Arg2 int64 - // Result0 is the value of the 1st result returned from this method - // invocation. - Result0 error -} - -// Args returns an interface slice containing the arguments of this -// invocation. -func (c UsersStoreFollowFuncCall) Args() []interface{} { - return []interface{}{c.Arg0, c.Arg1, c.Arg2} -} - -// Results returns an interface slice containing the results of this -// invocation. -func (c UsersStoreFollowFuncCall) Results() []interface{} { - return []interface{}{c.Result0} -} - -// UsersStoreGetByEmailFunc describes the behavior when the GetByEmail -// method of the parent MockUsersStore instance is invoked. -type UsersStoreGetByEmailFunc struct { - defaultHook func(context.Context, string) (*database.User, error) - hooks []func(context.Context, string) (*database.User, error) - history []UsersStoreGetByEmailFuncCall - mutex sync.Mutex -} - -// GetByEmail delegates to the next hook function in the queue and stores -// the parameter and result values of this invocation. -func (m *MockUsersStore) GetByEmail(v0 context.Context, v1 string) (*database.User, error) { - r0, r1 := m.GetByEmailFunc.nextHook()(v0, v1) - m.GetByEmailFunc.appendCall(UsersStoreGetByEmailFuncCall{v0, v1, r0, r1}) - return r0, r1 -} - -// SetDefaultHook sets function that is called when the GetByEmail method of -// the parent MockUsersStore instance is invoked and the hook queue is -// empty. -func (f *UsersStoreGetByEmailFunc) SetDefaultHook(hook func(context.Context, string) (*database.User, error)) { - f.defaultHook = hook -} - -// PushHook adds a function to the end of hook queue. Each invocation of the -// GetByEmail 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 *UsersStoreGetByEmailFunc) PushHook(hook func(context.Context, string) (*database.User, error)) { - 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 *UsersStoreGetByEmailFunc) SetDefaultReturn(r0 *database.User, r1 error) { - f.SetDefaultHook(func(context.Context, string) (*database.User, error) { - return r0, r1 - }) -} - -// PushReturn calls PushHook with a function that returns the given values. -func (f *UsersStoreGetByEmailFunc) PushReturn(r0 *database.User, r1 error) { - f.PushHook(func(context.Context, string) (*database.User, error) { - return r0, r1 - }) -} - -func (f *UsersStoreGetByEmailFunc) nextHook() func(context.Context, string) (*database.User, error) { - 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 *UsersStoreGetByEmailFunc) appendCall(r0 UsersStoreGetByEmailFuncCall) { - f.mutex.Lock() - f.history = append(f.history, r0) - f.mutex.Unlock() -} - -// History returns a sequence of UsersStoreGetByEmailFuncCall objects -// describing the invocations of this function. -func (f *UsersStoreGetByEmailFunc) History() []UsersStoreGetByEmailFuncCall { - f.mutex.Lock() - history := make([]UsersStoreGetByEmailFuncCall, len(f.history)) - copy(history, f.history) - f.mutex.Unlock() - - return history -} - -// UsersStoreGetByEmailFuncCall is an object that describes an invocation of -// method GetByEmail on an instance of MockUsersStore. -type UsersStoreGetByEmailFuncCall 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 *database.User - // Result1 is the value of the 2nd result returned from this method - // invocation. - Result1 error -} - -// Args returns an interface slice containing the arguments of this -// invocation. -func (c UsersStoreGetByEmailFuncCall) Args() []interface{} { - return []interface{}{c.Arg0, c.Arg1} -} - -// Results returns an interface slice containing the results of this -// invocation. -func (c UsersStoreGetByEmailFuncCall) Results() []interface{} { - return []interface{}{c.Result0, c.Result1} -} - -// UsersStoreGetByIDFunc describes the behavior when the GetByID method of -// the parent MockUsersStore instance is invoked. -type UsersStoreGetByIDFunc struct { - defaultHook func(context.Context, int64) (*database.User, error) - hooks []func(context.Context, int64) (*database.User, error) - history []UsersStoreGetByIDFuncCall - mutex sync.Mutex -} - -// GetByID delegates to the next hook function in the queue and stores the -// parameter and result values of this invocation. -func (m *MockUsersStore) GetByID(v0 context.Context, v1 int64) (*database.User, error) { - r0, r1 := m.GetByIDFunc.nextHook()(v0, v1) - m.GetByIDFunc.appendCall(UsersStoreGetByIDFuncCall{v0, v1, r0, r1}) - return r0, r1 -} - -// SetDefaultHook sets function that is called when the GetByID method of -// the parent MockUsersStore instance is invoked and the hook queue is -// empty. -func (f *UsersStoreGetByIDFunc) SetDefaultHook(hook func(context.Context, int64) (*database.User, error)) { - f.defaultHook = hook -} - -// PushHook adds a function to the end of hook queue. Each invocation of the -// GetByID 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 *UsersStoreGetByIDFunc) PushHook(hook func(context.Context, int64) (*database.User, error)) { - 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 *UsersStoreGetByIDFunc) SetDefaultReturn(r0 *database.User, r1 error) { - f.SetDefaultHook(func(context.Context, int64) (*database.User, error) { - return r0, r1 - }) -} - -// PushReturn calls PushHook with a function that returns the given values. -func (f *UsersStoreGetByIDFunc) PushReturn(r0 *database.User, r1 error) { - f.PushHook(func(context.Context, int64) (*database.User, error) { - return r0, r1 - }) -} - -func (f *UsersStoreGetByIDFunc) nextHook() func(context.Context, int64) (*database.User, error) { - 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 *UsersStoreGetByIDFunc) appendCall(r0 UsersStoreGetByIDFuncCall) { - f.mutex.Lock() - f.history = append(f.history, r0) - f.mutex.Unlock() -} - -// History returns a sequence of UsersStoreGetByIDFuncCall objects -// describing the invocations of this function. -func (f *UsersStoreGetByIDFunc) History() []UsersStoreGetByIDFuncCall { - f.mutex.Lock() - history := make([]UsersStoreGetByIDFuncCall, len(f.history)) - copy(history, f.history) - f.mutex.Unlock() - - return history -} - -// UsersStoreGetByIDFuncCall is an object that describes an invocation of -// method GetByID on an instance of MockUsersStore. -type UsersStoreGetByIDFuncCall 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 int64 - // Result0 is the value of the 1st result returned from this method - // invocation. - Result0 *database.User - // Result1 is the value of the 2nd result returned from this method - // invocation. - Result1 error -} - -// Args returns an interface slice containing the arguments of this -// invocation. -func (c UsersStoreGetByIDFuncCall) Args() []interface{} { - return []interface{}{c.Arg0, c.Arg1} -} - -// Results returns an interface slice containing the results of this -// invocation. -func (c UsersStoreGetByIDFuncCall) Results() []interface{} { - return []interface{}{c.Result0, c.Result1} -} - -// UsersStoreGetByKeyIDFunc describes the behavior when the GetByKeyID -// method of the parent MockUsersStore instance is invoked. -type UsersStoreGetByKeyIDFunc struct { - defaultHook func(context.Context, int64) (*database.User, error) - hooks []func(context.Context, int64) (*database.User, error) - history []UsersStoreGetByKeyIDFuncCall - mutex sync.Mutex -} - -// GetByKeyID delegates to the next hook function in the queue and stores -// the parameter and result values of this invocation. -func (m *MockUsersStore) GetByKeyID(v0 context.Context, v1 int64) (*database.User, error) { - r0, r1 := m.GetByKeyIDFunc.nextHook()(v0, v1) - m.GetByKeyIDFunc.appendCall(UsersStoreGetByKeyIDFuncCall{v0, v1, r0, r1}) - return r0, r1 -} - -// SetDefaultHook sets function that is called when the GetByKeyID method of -// the parent MockUsersStore instance is invoked and the hook queue is -// empty. -func (f *UsersStoreGetByKeyIDFunc) SetDefaultHook(hook func(context.Context, int64) (*database.User, error)) { - f.defaultHook = hook -} - -// PushHook adds a function to the end of hook queue. Each invocation of the -// GetByKeyID 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 *UsersStoreGetByKeyIDFunc) PushHook(hook func(context.Context, int64) (*database.User, error)) { - 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 *UsersStoreGetByKeyIDFunc) SetDefaultReturn(r0 *database.User, r1 error) { - f.SetDefaultHook(func(context.Context, int64) (*database.User, error) { - return r0, r1 - }) -} - -// PushReturn calls PushHook with a function that returns the given values. -func (f *UsersStoreGetByKeyIDFunc) PushReturn(r0 *database.User, r1 error) { - f.PushHook(func(context.Context, int64) (*database.User, error) { - return r0, r1 - }) -} - -func (f *UsersStoreGetByKeyIDFunc) nextHook() func(context.Context, int64) (*database.User, error) { - 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 *UsersStoreGetByKeyIDFunc) appendCall(r0 UsersStoreGetByKeyIDFuncCall) { - f.mutex.Lock() - f.history = append(f.history, r0) - f.mutex.Unlock() -} - -// History returns a sequence of UsersStoreGetByKeyIDFuncCall objects -// describing the invocations of this function. -func (f *UsersStoreGetByKeyIDFunc) History() []UsersStoreGetByKeyIDFuncCall { - f.mutex.Lock() - history := make([]UsersStoreGetByKeyIDFuncCall, len(f.history)) - copy(history, f.history) - f.mutex.Unlock() - - return history -} - -// UsersStoreGetByKeyIDFuncCall is an object that describes an invocation of -// method GetByKeyID on an instance of MockUsersStore. -type UsersStoreGetByKeyIDFuncCall 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 int64 - // Result0 is the value of the 1st result returned from this method - // invocation. - Result0 *database.User - // Result1 is the value of the 2nd result returned from this method - // invocation. - Result1 error -} - -// Args returns an interface slice containing the arguments of this -// invocation. -func (c UsersStoreGetByKeyIDFuncCall) Args() []interface{} { - return []interface{}{c.Arg0, c.Arg1} -} - -// Results returns an interface slice containing the results of this -// invocation. -func (c UsersStoreGetByKeyIDFuncCall) Results() []interface{} { - return []interface{}{c.Result0, c.Result1} -} - -// UsersStoreGetByUsernameFunc describes the behavior when the GetByUsername -// method of the parent MockUsersStore instance is invoked. -type UsersStoreGetByUsernameFunc struct { - defaultHook func(context.Context, string) (*database.User, error) - hooks []func(context.Context, string) (*database.User, error) - history []UsersStoreGetByUsernameFuncCall - mutex sync.Mutex -} - -// GetByUsername delegates to the next hook function in the queue and stores -// the parameter and result values of this invocation. -func (m *MockUsersStore) GetByUsername(v0 context.Context, v1 string) (*database.User, error) { - r0, r1 := m.GetByUsernameFunc.nextHook()(v0, v1) - m.GetByUsernameFunc.appendCall(UsersStoreGetByUsernameFuncCall{v0, v1, r0, r1}) - return r0, r1 -} - -// SetDefaultHook sets function that is called when the GetByUsername method -// of the parent MockUsersStore instance is invoked and the hook queue is -// empty. -func (f *UsersStoreGetByUsernameFunc) SetDefaultHook(hook func(context.Context, string) (*database.User, error)) { - f.defaultHook = hook -} - -// PushHook adds a function to the end of hook queue. Each invocation of the -// GetByUsername 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 *UsersStoreGetByUsernameFunc) PushHook(hook func(context.Context, string) (*database.User, error)) { - 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 *UsersStoreGetByUsernameFunc) SetDefaultReturn(r0 *database.User, r1 error) { - f.SetDefaultHook(func(context.Context, string) (*database.User, error) { - return r0, r1 - }) -} - -// PushReturn calls PushHook with a function that returns the given values. -func (f *UsersStoreGetByUsernameFunc) PushReturn(r0 *database.User, r1 error) { - f.PushHook(func(context.Context, string) (*database.User, error) { - return r0, r1 - }) -} - -func (f *UsersStoreGetByUsernameFunc) nextHook() func(context.Context, string) (*database.User, error) { - 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 *UsersStoreGetByUsernameFunc) appendCall(r0 UsersStoreGetByUsernameFuncCall) { - f.mutex.Lock() - f.history = append(f.history, r0) - f.mutex.Unlock() -} - -// History returns a sequence of UsersStoreGetByUsernameFuncCall objects -// describing the invocations of this function. -func (f *UsersStoreGetByUsernameFunc) History() []UsersStoreGetByUsernameFuncCall { - f.mutex.Lock() - history := make([]UsersStoreGetByUsernameFuncCall, len(f.history)) - copy(history, f.history) - f.mutex.Unlock() - - return history -} - -// UsersStoreGetByUsernameFuncCall is an object that describes an invocation -// of method GetByUsername on an instance of MockUsersStore. -type UsersStoreGetByUsernameFuncCall 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 *database.User - // Result1 is the value of the 2nd result returned from this method - // invocation. - Result1 error -} - -// Args returns an interface slice containing the arguments of this -// invocation. -func (c UsersStoreGetByUsernameFuncCall) Args() []interface{} { - return []interface{}{c.Arg0, c.Arg1} -} - -// Results returns an interface slice containing the results of this -// invocation. -func (c UsersStoreGetByUsernameFuncCall) Results() []interface{} { - return []interface{}{c.Result0, c.Result1} -} - -// UsersStoreGetEmailFunc describes the behavior when the GetEmail method of -// the parent MockUsersStore instance is invoked. -type UsersStoreGetEmailFunc struct { - defaultHook func(context.Context, int64, string, bool) (*database.EmailAddress, error) - hooks []func(context.Context, int64, string, bool) (*database.EmailAddress, error) - history []UsersStoreGetEmailFuncCall - mutex sync.Mutex -} - -// GetEmail delegates to the next hook function in the queue and stores the -// parameter and result values of this invocation. -func (m *MockUsersStore) GetEmail(v0 context.Context, v1 int64, v2 string, v3 bool) (*database.EmailAddress, error) { - r0, r1 := m.GetEmailFunc.nextHook()(v0, v1, v2, v3) - m.GetEmailFunc.appendCall(UsersStoreGetEmailFuncCall{v0, v1, v2, v3, r0, r1}) - return r0, r1 -} - -// SetDefaultHook sets function that is called when the GetEmail method of -// the parent MockUsersStore instance is invoked and the hook queue is -// empty. -func (f *UsersStoreGetEmailFunc) SetDefaultHook(hook func(context.Context, int64, string, bool) (*database.EmailAddress, error)) { - f.defaultHook = hook -} - -// PushHook adds a function to the end of hook queue. Each invocation of the -// GetEmail 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 *UsersStoreGetEmailFunc) PushHook(hook func(context.Context, int64, string, bool) (*database.EmailAddress, error)) { - 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 *UsersStoreGetEmailFunc) SetDefaultReturn(r0 *database.EmailAddress, r1 error) { - f.SetDefaultHook(func(context.Context, int64, string, bool) (*database.EmailAddress, error) { - return r0, r1 - }) -} - -// PushReturn calls PushHook with a function that returns the given values. -func (f *UsersStoreGetEmailFunc) PushReturn(r0 *database.EmailAddress, r1 error) { - f.PushHook(func(context.Context, int64, string, bool) (*database.EmailAddress, error) { - return r0, r1 - }) -} - -func (f *UsersStoreGetEmailFunc) nextHook() func(context.Context, int64, string, bool) (*database.EmailAddress, error) { - 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 *UsersStoreGetEmailFunc) appendCall(r0 UsersStoreGetEmailFuncCall) { - f.mutex.Lock() - f.history = append(f.history, r0) - f.mutex.Unlock() -} - -// History returns a sequence of UsersStoreGetEmailFuncCall objects -// describing the invocations of this function. -func (f *UsersStoreGetEmailFunc) History() []UsersStoreGetEmailFuncCall { - f.mutex.Lock() - history := make([]UsersStoreGetEmailFuncCall, len(f.history)) - copy(history, f.history) - f.mutex.Unlock() - - return history -} - -// UsersStoreGetEmailFuncCall is an object that describes an invocation of -// method GetEmail on an instance of MockUsersStore. -type UsersStoreGetEmailFuncCall 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 int64 - // Arg2 is the value of the 3rd argument passed to this method - // invocation. - Arg2 string - // Arg3 is the value of the 4th argument passed to this method - // invocation. - Arg3 bool - // Result0 is the value of the 1st result returned from this method - // invocation. - Result0 *database.EmailAddress - // Result1 is the value of the 2nd result returned from this method - // invocation. - Result1 error -} - -// Args returns an interface slice containing the arguments of this -// invocation. -func (c UsersStoreGetEmailFuncCall) Args() []interface{} { - return []interface{}{c.Arg0, c.Arg1, c.Arg2, c.Arg3} -} - -// Results returns an interface slice containing the results of this -// invocation. -func (c UsersStoreGetEmailFuncCall) Results() []interface{} { - return []interface{}{c.Result0, c.Result1} -} - -// UsersStoreGetMailableEmailsByUsernamesFunc describes the behavior when -// the GetMailableEmailsByUsernames method of the parent MockUsersStore -// instance is invoked. -type UsersStoreGetMailableEmailsByUsernamesFunc struct { - defaultHook func(context.Context, []string) ([]string, error) - hooks []func(context.Context, []string) ([]string, error) - history []UsersStoreGetMailableEmailsByUsernamesFuncCall - mutex sync.Mutex -} - -// GetMailableEmailsByUsernames delegates to the next hook function in the -// queue and stores the parameter and result values of this invocation. -func (m *MockUsersStore) GetMailableEmailsByUsernames(v0 context.Context, v1 []string) ([]string, error) { - r0, r1 := m.GetMailableEmailsByUsernamesFunc.nextHook()(v0, v1) - m.GetMailableEmailsByUsernamesFunc.appendCall(UsersStoreGetMailableEmailsByUsernamesFuncCall{v0, v1, r0, r1}) - return r0, r1 -} - -// SetDefaultHook sets function that is called when the -// GetMailableEmailsByUsernames method of the parent MockUsersStore instance -// is invoked and the hook queue is empty. -func (f *UsersStoreGetMailableEmailsByUsernamesFunc) SetDefaultHook(hook func(context.Context, []string) ([]string, error)) { - f.defaultHook = hook -} - -// PushHook adds a function to the end of hook queue. Each invocation of the -// GetMailableEmailsByUsernames 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 *UsersStoreGetMailableEmailsByUsernamesFunc) PushHook(hook func(context.Context, []string) ([]string, error)) { - 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 *UsersStoreGetMailableEmailsByUsernamesFunc) SetDefaultReturn(r0 []string, r1 error) { - f.SetDefaultHook(func(context.Context, []string) ([]string, error) { - return r0, r1 - }) -} - -// PushReturn calls PushHook with a function that returns the given values. -func (f *UsersStoreGetMailableEmailsByUsernamesFunc) PushReturn(r0 []string, r1 error) { - f.PushHook(func(context.Context, []string) ([]string, error) { - return r0, r1 - }) -} - -func (f *UsersStoreGetMailableEmailsByUsernamesFunc) nextHook() func(context.Context, []string) ([]string, error) { - 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 *UsersStoreGetMailableEmailsByUsernamesFunc) appendCall(r0 UsersStoreGetMailableEmailsByUsernamesFuncCall) { - f.mutex.Lock() - f.history = append(f.history, r0) - f.mutex.Unlock() -} - -// History returns a sequence of -// UsersStoreGetMailableEmailsByUsernamesFuncCall objects describing the -// invocations of this function. -func (f *UsersStoreGetMailableEmailsByUsernamesFunc) History() []UsersStoreGetMailableEmailsByUsernamesFuncCall { - f.mutex.Lock() - history := make([]UsersStoreGetMailableEmailsByUsernamesFuncCall, len(f.history)) - copy(history, f.history) - f.mutex.Unlock() - - return history -} - -// UsersStoreGetMailableEmailsByUsernamesFuncCall is an object that -// describes an invocation of method GetMailableEmailsByUsernames on an -// instance of MockUsersStore. -type UsersStoreGetMailableEmailsByUsernamesFuncCall 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 []string - // Result1 is the value of the 2nd result returned from this method - // invocation. - Result1 error -} - -// Args returns an interface slice containing the arguments of this -// invocation. -func (c UsersStoreGetMailableEmailsByUsernamesFuncCall) Args() []interface{} { - return []interface{}{c.Arg0, c.Arg1} -} - -// Results returns an interface slice containing the results of this -// invocation. -func (c UsersStoreGetMailableEmailsByUsernamesFuncCall) Results() []interface{} { - return []interface{}{c.Result0, c.Result1} -} - -// UsersStoreIsFollowingFunc describes the behavior when the IsFollowing -// method of the parent MockUsersStore instance is invoked. -type UsersStoreIsFollowingFunc struct { - defaultHook func(context.Context, int64, int64) bool - hooks []func(context.Context, int64, int64) bool - history []UsersStoreIsFollowingFuncCall - mutex sync.Mutex -} - -// IsFollowing delegates to the next hook function in the queue and stores -// the parameter and result values of this invocation. -func (m *MockUsersStore) IsFollowing(v0 context.Context, v1 int64, v2 int64) bool { - r0 := m.IsFollowingFunc.nextHook()(v0, v1, v2) - m.IsFollowingFunc.appendCall(UsersStoreIsFollowingFuncCall{v0, v1, v2, r0}) - return r0 -} - -// SetDefaultHook sets function that is called when the IsFollowing method -// of the parent MockUsersStore instance is invoked and the hook queue is -// empty. -func (f *UsersStoreIsFollowingFunc) SetDefaultHook(hook func(context.Context, int64, int64) bool) { - f.defaultHook = hook -} - -// PushHook adds a function to the end of hook queue. Each invocation of the -// IsFollowing 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 *UsersStoreIsFollowingFunc) PushHook(hook func(context.Context, int64, int64) 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 *UsersStoreIsFollowingFunc) SetDefaultReturn(r0 bool) { - f.SetDefaultHook(func(context.Context, int64, int64) bool { - return r0 - }) -} - -// PushReturn calls PushHook with a function that returns the given values. -func (f *UsersStoreIsFollowingFunc) PushReturn(r0 bool) { - f.PushHook(func(context.Context, int64, int64) bool { - return r0 - }) -} - -func (f *UsersStoreIsFollowingFunc) nextHook() func(context.Context, int64, int64) 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 *UsersStoreIsFollowingFunc) appendCall(r0 UsersStoreIsFollowingFuncCall) { - f.mutex.Lock() - f.history = append(f.history, r0) - f.mutex.Unlock() -} - -// History returns a sequence of UsersStoreIsFollowingFuncCall objects -// describing the invocations of this function. -func (f *UsersStoreIsFollowingFunc) History() []UsersStoreIsFollowingFuncCall { - f.mutex.Lock() - history := make([]UsersStoreIsFollowingFuncCall, len(f.history)) - copy(history, f.history) - f.mutex.Unlock() - - return history -} - -// UsersStoreIsFollowingFuncCall is an object that describes an invocation -// of method IsFollowing on an instance of MockUsersStore. -type UsersStoreIsFollowingFuncCall 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 int64 - // Arg2 is the value of the 3rd argument passed to this method - // invocation. - Arg2 int64 - // 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 UsersStoreIsFollowingFuncCall) Args() []interface{} { - return []interface{}{c.Arg0, c.Arg1, c.Arg2} -} - -// Results returns an interface slice containing the results of this -// invocation. -func (c UsersStoreIsFollowingFuncCall) 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, int64) bool - hooks []func(context.Context, string, int64) 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, v2 int64) bool { - r0 := m.IsUsernameUsedFunc.nextHook()(v0, v1, v2) - m.IsUsernameUsedFunc.appendCall(UsersStoreIsUsernameUsedFuncCall{v0, v1, v2, 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, int64) 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, int64) 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, int64) 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, int64) bool { - return r0 - }) -} - -func (f *UsersStoreIsUsernameUsedFunc) nextHook() func(context.Context, string, int64) 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 - // Arg2 is the value of the 3rd argument passed to this method - // invocation. - Arg2 int64 - // 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, c.Arg2} -} - -// Results returns an interface slice containing the results of this -// invocation. -func (c UsersStoreIsUsernameUsedFuncCall) Results() []interface{} { - return []interface{}{c.Result0} -} - -// UsersStoreListFunc describes the behavior when the List method of the -// parent MockUsersStore instance is invoked. -type UsersStoreListFunc struct { - defaultHook func(context.Context, int, int) ([]*database.User, error) - hooks []func(context.Context, int, int) ([]*database.User, error) - history []UsersStoreListFuncCall - mutex sync.Mutex -} - -// List delegates to the next hook function in the queue and stores the -// parameter and result values of this invocation. -func (m *MockUsersStore) List(v0 context.Context, v1 int, v2 int) ([]*database.User, error) { - r0, r1 := m.ListFunc.nextHook()(v0, v1, v2) - m.ListFunc.appendCall(UsersStoreListFuncCall{v0, v1, v2, r0, r1}) - return r0, r1 -} - -// SetDefaultHook sets function that is called when the List method of the -// parent MockUsersStore instance is invoked and the hook queue is empty. -func (f *UsersStoreListFunc) SetDefaultHook(hook func(context.Context, int, int) ([]*database.User, error)) { - f.defaultHook = hook -} - -// PushHook adds a function to the end of hook queue. Each invocation of the -// List 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 *UsersStoreListFunc) PushHook(hook func(context.Context, int, int) ([]*database.User, error)) { - 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 *UsersStoreListFunc) SetDefaultReturn(r0 []*database.User, r1 error) { - f.SetDefaultHook(func(context.Context, int, int) ([]*database.User, error) { - return r0, r1 - }) -} - -// PushReturn calls PushHook with a function that returns the given values. -func (f *UsersStoreListFunc) PushReturn(r0 []*database.User, r1 error) { - f.PushHook(func(context.Context, int, int) ([]*database.User, error) { - return r0, r1 - }) -} - -func (f *UsersStoreListFunc) nextHook() func(context.Context, int, int) ([]*database.User, error) { - 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 *UsersStoreListFunc) appendCall(r0 UsersStoreListFuncCall) { - f.mutex.Lock() - f.history = append(f.history, r0) - f.mutex.Unlock() -} - -// History returns a sequence of UsersStoreListFuncCall objects describing -// the invocations of this function. -func (f *UsersStoreListFunc) History() []UsersStoreListFuncCall { - f.mutex.Lock() - history := make([]UsersStoreListFuncCall, len(f.history)) - copy(history, f.history) - f.mutex.Unlock() - - return history -} - -// UsersStoreListFuncCall is an object that describes an invocation of -// method List on an instance of MockUsersStore. -type UsersStoreListFuncCall 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 int - // Arg2 is the value of the 3rd argument passed to this method - // invocation. - Arg2 int - // Result0 is the value of the 1st result returned from this method - // invocation. - Result0 []*database.User - // Result1 is the value of the 2nd result returned from this method - // invocation. - Result1 error -} - -// Args returns an interface slice containing the arguments of this -// invocation. -func (c UsersStoreListFuncCall) Args() []interface{} { - return []interface{}{c.Arg0, c.Arg1, c.Arg2} -} - -// Results returns an interface slice containing the results of this -// invocation. -func (c UsersStoreListFuncCall) Results() []interface{} { - return []interface{}{c.Result0, c.Result1} -} - -// UsersStoreListEmailsFunc describes the behavior when the ListEmails -// method of the parent MockUsersStore instance is invoked. -type UsersStoreListEmailsFunc struct { - defaultHook func(context.Context, int64) ([]*database.EmailAddress, error) - hooks []func(context.Context, int64) ([]*database.EmailAddress, error) - history []UsersStoreListEmailsFuncCall - mutex sync.Mutex -} - -// ListEmails delegates to the next hook function in the queue and stores -// the parameter and result values of this invocation. -func (m *MockUsersStore) ListEmails(v0 context.Context, v1 int64) ([]*database.EmailAddress, error) { - r0, r1 := m.ListEmailsFunc.nextHook()(v0, v1) - m.ListEmailsFunc.appendCall(UsersStoreListEmailsFuncCall{v0, v1, r0, r1}) - return r0, r1 -} - -// SetDefaultHook sets function that is called when the ListEmails method of -// the parent MockUsersStore instance is invoked and the hook queue is -// empty. -func (f *UsersStoreListEmailsFunc) SetDefaultHook(hook func(context.Context, int64) ([]*database.EmailAddress, error)) { - f.defaultHook = hook -} - -// PushHook adds a function to the end of hook queue. Each invocation of the -// ListEmails 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 *UsersStoreListEmailsFunc) PushHook(hook func(context.Context, int64) ([]*database.EmailAddress, error)) { - 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 *UsersStoreListEmailsFunc) SetDefaultReturn(r0 []*database.EmailAddress, r1 error) { - f.SetDefaultHook(func(context.Context, int64) ([]*database.EmailAddress, error) { - return r0, r1 - }) -} - -// PushReturn calls PushHook with a function that returns the given values. -func (f *UsersStoreListEmailsFunc) PushReturn(r0 []*database.EmailAddress, r1 error) { - f.PushHook(func(context.Context, int64) ([]*database.EmailAddress, error) { - return r0, r1 - }) -} - -func (f *UsersStoreListEmailsFunc) nextHook() func(context.Context, int64) ([]*database.EmailAddress, error) { - 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 *UsersStoreListEmailsFunc) appendCall(r0 UsersStoreListEmailsFuncCall) { - f.mutex.Lock() - f.history = append(f.history, r0) - f.mutex.Unlock() -} - -// History returns a sequence of UsersStoreListEmailsFuncCall objects -// describing the invocations of this function. -func (f *UsersStoreListEmailsFunc) History() []UsersStoreListEmailsFuncCall { - f.mutex.Lock() - history := make([]UsersStoreListEmailsFuncCall, len(f.history)) - copy(history, f.history) - f.mutex.Unlock() - - return history -} - -// UsersStoreListEmailsFuncCall is an object that describes an invocation of -// method ListEmails on an instance of MockUsersStore. -type UsersStoreListEmailsFuncCall 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 int64 - // Result0 is the value of the 1st result returned from this method - // invocation. - Result0 []*database.EmailAddress - // Result1 is the value of the 2nd result returned from this method - // invocation. - Result1 error -} - -// Args returns an interface slice containing the arguments of this -// invocation. -func (c UsersStoreListEmailsFuncCall) Args() []interface{} { - return []interface{}{c.Arg0, c.Arg1} -} - -// Results returns an interface slice containing the results of this -// invocation. -func (c UsersStoreListEmailsFuncCall) Results() []interface{} { - return []interface{}{c.Result0, c.Result1} -} - -// UsersStoreListFollowersFunc describes the behavior when the ListFollowers -// method of the parent MockUsersStore instance is invoked. -type UsersStoreListFollowersFunc struct { - defaultHook func(context.Context, int64, int, int) ([]*database.User, error) - hooks []func(context.Context, int64, int, int) ([]*database.User, error) - history []UsersStoreListFollowersFuncCall - mutex sync.Mutex -} - -// ListFollowers delegates to the next hook function in the queue and stores -// the parameter and result values of this invocation. -func (m *MockUsersStore) ListFollowers(v0 context.Context, v1 int64, v2 int, v3 int) ([]*database.User, error) { - r0, r1 := m.ListFollowersFunc.nextHook()(v0, v1, v2, v3) - m.ListFollowersFunc.appendCall(UsersStoreListFollowersFuncCall{v0, v1, v2, v3, r0, r1}) - return r0, r1 -} - -// SetDefaultHook sets function that is called when the ListFollowers method -// of the parent MockUsersStore instance is invoked and the hook queue is -// empty. -func (f *UsersStoreListFollowersFunc) SetDefaultHook(hook func(context.Context, int64, int, int) ([]*database.User, error)) { - f.defaultHook = hook -} - -// PushHook adds a function to the end of hook queue. Each invocation of the -// ListFollowers 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 *UsersStoreListFollowersFunc) PushHook(hook func(context.Context, int64, int, int) ([]*database.User, error)) { - 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 *UsersStoreListFollowersFunc) SetDefaultReturn(r0 []*database.User, r1 error) { - f.SetDefaultHook(func(context.Context, int64, int, int) ([]*database.User, error) { - return r0, r1 - }) -} - -// PushReturn calls PushHook with a function that returns the given values. -func (f *UsersStoreListFollowersFunc) PushReturn(r0 []*database.User, r1 error) { - f.PushHook(func(context.Context, int64, int, int) ([]*database.User, error) { - return r0, r1 - }) -} - -func (f *UsersStoreListFollowersFunc) nextHook() func(context.Context, int64, int, int) ([]*database.User, error) { - 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 *UsersStoreListFollowersFunc) appendCall(r0 UsersStoreListFollowersFuncCall) { - f.mutex.Lock() - f.history = append(f.history, r0) - f.mutex.Unlock() -} - -// History returns a sequence of UsersStoreListFollowersFuncCall objects -// describing the invocations of this function. -func (f *UsersStoreListFollowersFunc) History() []UsersStoreListFollowersFuncCall { - f.mutex.Lock() - history := make([]UsersStoreListFollowersFuncCall, len(f.history)) - copy(history, f.history) - f.mutex.Unlock() - - return history -} - -// UsersStoreListFollowersFuncCall is an object that describes an invocation -// of method ListFollowers on an instance of MockUsersStore. -type UsersStoreListFollowersFuncCall 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 int64 - // Arg2 is the value of the 3rd argument passed to this method - // invocation. - Arg2 int - // Arg3 is the value of the 4th argument passed to this method - // invocation. - Arg3 int - // Result0 is the value of the 1st result returned from this method - // invocation. - Result0 []*database.User - // Result1 is the value of the 2nd result returned from this method - // invocation. - Result1 error -} - -// Args returns an interface slice containing the arguments of this -// invocation. -func (c UsersStoreListFollowersFuncCall) Args() []interface{} { - return []interface{}{c.Arg0, c.Arg1, c.Arg2, c.Arg3} -} - -// Results returns an interface slice containing the results of this -// invocation. -func (c UsersStoreListFollowersFuncCall) Results() []interface{} { - return []interface{}{c.Result0, c.Result1} -} - -// UsersStoreListFollowingsFunc describes the behavior when the -// ListFollowings method of the parent MockUsersStore instance is invoked. -type UsersStoreListFollowingsFunc struct { - defaultHook func(context.Context, int64, int, int) ([]*database.User, error) - hooks []func(context.Context, int64, int, int) ([]*database.User, error) - history []UsersStoreListFollowingsFuncCall - mutex sync.Mutex -} - -// ListFollowings delegates to the next hook function in the queue and -// stores the parameter and result values of this invocation. -func (m *MockUsersStore) ListFollowings(v0 context.Context, v1 int64, v2 int, v3 int) ([]*database.User, error) { - r0, r1 := m.ListFollowingsFunc.nextHook()(v0, v1, v2, v3) - m.ListFollowingsFunc.appendCall(UsersStoreListFollowingsFuncCall{v0, v1, v2, v3, r0, r1}) - return r0, r1 -} - -// SetDefaultHook sets function that is called when the ListFollowings -// method of the parent MockUsersStore instance is invoked and the hook -// queue is empty. -func (f *UsersStoreListFollowingsFunc) SetDefaultHook(hook func(context.Context, int64, int, int) ([]*database.User, error)) { - f.defaultHook = hook -} - -// PushHook adds a function to the end of hook queue. Each invocation of the -// ListFollowings 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 *UsersStoreListFollowingsFunc) PushHook(hook func(context.Context, int64, int, int) ([]*database.User, error)) { - 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 *UsersStoreListFollowingsFunc) SetDefaultReturn(r0 []*database.User, r1 error) { - f.SetDefaultHook(func(context.Context, int64, int, int) ([]*database.User, error) { - return r0, r1 - }) -} - -// PushReturn calls PushHook with a function that returns the given values. -func (f *UsersStoreListFollowingsFunc) PushReturn(r0 []*database.User, r1 error) { - f.PushHook(func(context.Context, int64, int, int) ([]*database.User, error) { - return r0, r1 - }) -} - -func (f *UsersStoreListFollowingsFunc) nextHook() func(context.Context, int64, int, int) ([]*database.User, error) { - 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 *UsersStoreListFollowingsFunc) appendCall(r0 UsersStoreListFollowingsFuncCall) { - f.mutex.Lock() - f.history = append(f.history, r0) - f.mutex.Unlock() -} - -// History returns a sequence of UsersStoreListFollowingsFuncCall objects -// describing the invocations of this function. -func (f *UsersStoreListFollowingsFunc) History() []UsersStoreListFollowingsFuncCall { - f.mutex.Lock() - history := make([]UsersStoreListFollowingsFuncCall, len(f.history)) - copy(history, f.history) - f.mutex.Unlock() - - return history -} - -// UsersStoreListFollowingsFuncCall is an object that describes an -// invocation of method ListFollowings on an instance of MockUsersStore. -type UsersStoreListFollowingsFuncCall 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 int64 - // Arg2 is the value of the 3rd argument passed to this method - // invocation. - Arg2 int - // Arg3 is the value of the 4th argument passed to this method - // invocation. - Arg3 int - // Result0 is the value of the 1st result returned from this method - // invocation. - Result0 []*database.User - // Result1 is the value of the 2nd result returned from this method - // invocation. - Result1 error -} - -// Args returns an interface slice containing the arguments of this -// invocation. -func (c UsersStoreListFollowingsFuncCall) Args() []interface{} { - return []interface{}{c.Arg0, c.Arg1, c.Arg2, c.Arg3} -} - -// Results returns an interface slice containing the results of this -// invocation. -func (c UsersStoreListFollowingsFuncCall) Results() []interface{} { - return []interface{}{c.Result0, c.Result1} -} - -// UsersStoreMarkEmailActivatedFunc describes the behavior when the -// MarkEmailActivated method of the parent MockUsersStore instance is -// invoked. -type UsersStoreMarkEmailActivatedFunc struct { - defaultHook func(context.Context, int64, string) error - hooks []func(context.Context, int64, string) error - history []UsersStoreMarkEmailActivatedFuncCall - mutex sync.Mutex -} - -// MarkEmailActivated delegates to the next hook function in the queue and -// stores the parameter and result values of this invocation. -func (m *MockUsersStore) MarkEmailActivated(v0 context.Context, v1 int64, v2 string) error { - r0 := m.MarkEmailActivatedFunc.nextHook()(v0, v1, v2) - m.MarkEmailActivatedFunc.appendCall(UsersStoreMarkEmailActivatedFuncCall{v0, v1, v2, r0}) - return r0 -} - -// SetDefaultHook sets function that is called when the MarkEmailActivated -// method of the parent MockUsersStore instance is invoked and the hook -// queue is empty. -func (f *UsersStoreMarkEmailActivatedFunc) SetDefaultHook(hook func(context.Context, int64, string) error) { - f.defaultHook = hook -} - -// PushHook adds a function to the end of hook queue. Each invocation of the -// MarkEmailActivated 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 *UsersStoreMarkEmailActivatedFunc) PushHook(hook func(context.Context, int64, string) error) { - 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 *UsersStoreMarkEmailActivatedFunc) SetDefaultReturn(r0 error) { - f.SetDefaultHook(func(context.Context, int64, string) error { - return r0 - }) -} - -// PushReturn calls PushHook with a function that returns the given values. -func (f *UsersStoreMarkEmailActivatedFunc) PushReturn(r0 error) { - f.PushHook(func(context.Context, int64, string) error { - return r0 - }) -} - -func (f *UsersStoreMarkEmailActivatedFunc) nextHook() func(context.Context, int64, string) error { - 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 *UsersStoreMarkEmailActivatedFunc) appendCall(r0 UsersStoreMarkEmailActivatedFuncCall) { - f.mutex.Lock() - f.history = append(f.history, r0) - f.mutex.Unlock() -} - -// History returns a sequence of UsersStoreMarkEmailActivatedFuncCall -// objects describing the invocations of this function. -func (f *UsersStoreMarkEmailActivatedFunc) History() []UsersStoreMarkEmailActivatedFuncCall { - f.mutex.Lock() - history := make([]UsersStoreMarkEmailActivatedFuncCall, len(f.history)) - copy(history, f.history) - f.mutex.Unlock() - - return history -} - -// UsersStoreMarkEmailActivatedFuncCall is an object that describes an -// invocation of method MarkEmailActivated on an instance of MockUsersStore. -type UsersStoreMarkEmailActivatedFuncCall 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 int64 - // Arg2 is the value of the 3rd argument passed to this method - // invocation. - Arg2 string - // Result0 is the value of the 1st result returned from this method - // invocation. - Result0 error -} - -// Args returns an interface slice containing the arguments of this -// invocation. -func (c UsersStoreMarkEmailActivatedFuncCall) Args() []interface{} { - return []interface{}{c.Arg0, c.Arg1, c.Arg2} -} - -// Results returns an interface slice containing the results of this -// invocation. -func (c UsersStoreMarkEmailActivatedFuncCall) Results() []interface{} { - return []interface{}{c.Result0} -} - -// UsersStoreMarkEmailPrimaryFunc describes the behavior when the -// MarkEmailPrimary method of the parent MockUsersStore instance is invoked. -type UsersStoreMarkEmailPrimaryFunc struct { - defaultHook func(context.Context, int64, string) error - hooks []func(context.Context, int64, string) error - history []UsersStoreMarkEmailPrimaryFuncCall - mutex sync.Mutex -} - -// MarkEmailPrimary delegates to the next hook function in the queue and -// stores the parameter and result values of this invocation. -func (m *MockUsersStore) MarkEmailPrimary(v0 context.Context, v1 int64, v2 string) error { - r0 := m.MarkEmailPrimaryFunc.nextHook()(v0, v1, v2) - m.MarkEmailPrimaryFunc.appendCall(UsersStoreMarkEmailPrimaryFuncCall{v0, v1, v2, r0}) - return r0 -} - -// SetDefaultHook sets function that is called when the MarkEmailPrimary -// method of the parent MockUsersStore instance is invoked and the hook -// queue is empty. -func (f *UsersStoreMarkEmailPrimaryFunc) SetDefaultHook(hook func(context.Context, int64, string) error) { - f.defaultHook = hook -} - -// PushHook adds a function to the end of hook queue. Each invocation of the -// MarkEmailPrimary 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 *UsersStoreMarkEmailPrimaryFunc) PushHook(hook func(context.Context, int64, string) error) { - 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 *UsersStoreMarkEmailPrimaryFunc) SetDefaultReturn(r0 error) { - f.SetDefaultHook(func(context.Context, int64, string) error { - return r0 - }) -} - -// PushReturn calls PushHook with a function that returns the given values. -func (f *UsersStoreMarkEmailPrimaryFunc) PushReturn(r0 error) { - f.PushHook(func(context.Context, int64, string) error { - return r0 - }) -} - -func (f *UsersStoreMarkEmailPrimaryFunc) nextHook() func(context.Context, int64, string) error { - 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 *UsersStoreMarkEmailPrimaryFunc) appendCall(r0 UsersStoreMarkEmailPrimaryFuncCall) { - f.mutex.Lock() - f.history = append(f.history, r0) - f.mutex.Unlock() -} - -// History returns a sequence of UsersStoreMarkEmailPrimaryFuncCall objects -// describing the invocations of this function. -func (f *UsersStoreMarkEmailPrimaryFunc) History() []UsersStoreMarkEmailPrimaryFuncCall { - f.mutex.Lock() - history := make([]UsersStoreMarkEmailPrimaryFuncCall, len(f.history)) - copy(history, f.history) - f.mutex.Unlock() - - return history -} - -// UsersStoreMarkEmailPrimaryFuncCall is an object that describes an -// invocation of method MarkEmailPrimary on an instance of MockUsersStore. -type UsersStoreMarkEmailPrimaryFuncCall 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 int64 - // Arg2 is the value of the 3rd argument passed to this method - // invocation. - Arg2 string - // Result0 is the value of the 1st result returned from this method - // invocation. - Result0 error -} - -// Args returns an interface slice containing the arguments of this -// invocation. -func (c UsersStoreMarkEmailPrimaryFuncCall) Args() []interface{} { - return []interface{}{c.Arg0, c.Arg1, c.Arg2} -} - -// Results returns an interface slice containing the results of this -// invocation. -func (c UsersStoreMarkEmailPrimaryFuncCall) Results() []interface{} { - return []interface{}{c.Result0} -} - -// UsersStoreSearchByNameFunc describes the behavior when the SearchByName -// method of the parent MockUsersStore instance is invoked. -type UsersStoreSearchByNameFunc struct { - defaultHook func(context.Context, string, int, int, string) ([]*database.User, int64, error) - hooks []func(context.Context, string, int, int, string) ([]*database.User, int64, error) - history []UsersStoreSearchByNameFuncCall - mutex sync.Mutex -} - -// SearchByName delegates to the next hook function in the queue and stores -// the parameter and result values of this invocation. -func (m *MockUsersStore) SearchByName(v0 context.Context, v1 string, v2 int, v3 int, v4 string) ([]*database.User, int64, error) { - r0, r1, r2 := m.SearchByNameFunc.nextHook()(v0, v1, v2, v3, v4) - m.SearchByNameFunc.appendCall(UsersStoreSearchByNameFuncCall{v0, v1, v2, v3, v4, r0, r1, r2}) - return r0, r1, r2 -} - -// SetDefaultHook sets function that is called when the SearchByName method -// of the parent MockUsersStore instance is invoked and the hook queue is -// empty. -func (f *UsersStoreSearchByNameFunc) SetDefaultHook(hook func(context.Context, string, int, int, string) ([]*database.User, int64, error)) { - f.defaultHook = hook -} - -// PushHook adds a function to the end of hook queue. Each invocation of the -// SearchByName 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 *UsersStoreSearchByNameFunc) PushHook(hook func(context.Context, string, int, int, string) ([]*database.User, int64, error)) { - 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 *UsersStoreSearchByNameFunc) SetDefaultReturn(r0 []*database.User, r1 int64, r2 error) { - f.SetDefaultHook(func(context.Context, string, int, int, string) ([]*database.User, int64, error) { - return r0, r1, r2 - }) -} - -// PushReturn calls PushHook with a function that returns the given values. -func (f *UsersStoreSearchByNameFunc) PushReturn(r0 []*database.User, r1 int64, r2 error) { - f.PushHook(func(context.Context, string, int, int, string) ([]*database.User, int64, error) { - return r0, r1, r2 - }) -} - -func (f *UsersStoreSearchByNameFunc) nextHook() func(context.Context, string, int, int, string) ([]*database.User, int64, error) { - 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 *UsersStoreSearchByNameFunc) appendCall(r0 UsersStoreSearchByNameFuncCall) { - f.mutex.Lock() - f.history = append(f.history, r0) - f.mutex.Unlock() -} - -// History returns a sequence of UsersStoreSearchByNameFuncCall objects -// describing the invocations of this function. -func (f *UsersStoreSearchByNameFunc) History() []UsersStoreSearchByNameFuncCall { - f.mutex.Lock() - history := make([]UsersStoreSearchByNameFuncCall, len(f.history)) - copy(history, f.history) - f.mutex.Unlock() - - return history -} - -// UsersStoreSearchByNameFuncCall is an object that describes an invocation -// of method SearchByName on an instance of MockUsersStore. -type UsersStoreSearchByNameFuncCall 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 - // Arg2 is the value of the 3rd argument passed to this method - // invocation. - Arg2 int - // Arg3 is the value of the 4th argument passed to this method - // invocation. - Arg3 int - // Arg4 is the value of the 5th argument passed to this method - // invocation. - Arg4 string - // Result0 is the value of the 1st result returned from this method - // invocation. - Result0 []*database.User - // Result1 is the value of the 2nd result returned from this method - // invocation. - Result1 int64 - // Result2 is the value of the 3rd result returned from this method - // invocation. - Result2 error -} - -// Args returns an interface slice containing the arguments of this -// invocation. -func (c UsersStoreSearchByNameFuncCall) Args() []interface{} { - return []interface{}{c.Arg0, c.Arg1, c.Arg2, c.Arg3, c.Arg4} -} - -// Results returns an interface slice containing the results of this -// invocation. -func (c UsersStoreSearchByNameFuncCall) Results() []interface{} { - return []interface{}{c.Result0, c.Result1, c.Result2} -} - -// UsersStoreUnfollowFunc describes the behavior when the Unfollow method of -// the parent MockUsersStore instance is invoked. -type UsersStoreUnfollowFunc struct { - defaultHook func(context.Context, int64, int64) error - hooks []func(context.Context, int64, int64) error - history []UsersStoreUnfollowFuncCall - mutex sync.Mutex -} - -// Unfollow delegates to the next hook function in the queue and stores the -// parameter and result values of this invocation. -func (m *MockUsersStore) Unfollow(v0 context.Context, v1 int64, v2 int64) error { - r0 := m.UnfollowFunc.nextHook()(v0, v1, v2) - m.UnfollowFunc.appendCall(UsersStoreUnfollowFuncCall{v0, v1, v2, r0}) - return r0 -} - -// SetDefaultHook sets function that is called when the Unfollow method of -// the parent MockUsersStore instance is invoked and the hook queue is -// empty. -func (f *UsersStoreUnfollowFunc) SetDefaultHook(hook func(context.Context, int64, int64) error) { - f.defaultHook = hook -} - -// PushHook adds a function to the end of hook queue. Each invocation of the -// Unfollow 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 *UsersStoreUnfollowFunc) PushHook(hook func(context.Context, int64, int64) error) { - 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 *UsersStoreUnfollowFunc) SetDefaultReturn(r0 error) { - f.SetDefaultHook(func(context.Context, int64, int64) error { - return r0 - }) -} - -// PushReturn calls PushHook with a function that returns the given values. -func (f *UsersStoreUnfollowFunc) PushReturn(r0 error) { - f.PushHook(func(context.Context, int64, int64) error { - return r0 - }) -} - -func (f *UsersStoreUnfollowFunc) nextHook() func(context.Context, int64, int64) error { - 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 *UsersStoreUnfollowFunc) appendCall(r0 UsersStoreUnfollowFuncCall) { - f.mutex.Lock() - f.history = append(f.history, r0) - f.mutex.Unlock() -} - -// History returns a sequence of UsersStoreUnfollowFuncCall objects -// describing the invocations of this function. -func (f *UsersStoreUnfollowFunc) History() []UsersStoreUnfollowFuncCall { - f.mutex.Lock() - history := make([]UsersStoreUnfollowFuncCall, len(f.history)) - copy(history, f.history) - f.mutex.Unlock() - - return history -} - -// UsersStoreUnfollowFuncCall is an object that describes an invocation of -// method Unfollow on an instance of MockUsersStore. -type UsersStoreUnfollowFuncCall 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 int64 - // Arg2 is the value of the 3rd argument passed to this method - // invocation. - Arg2 int64 - // Result0 is the value of the 1st result returned from this method - // invocation. - Result0 error -} - -// Args returns an interface slice containing the arguments of this -// invocation. -func (c UsersStoreUnfollowFuncCall) Args() []interface{} { - return []interface{}{c.Arg0, c.Arg1, c.Arg2} -} - -// Results returns an interface slice containing the results of this -// invocation. -func (c UsersStoreUnfollowFuncCall) Results() []interface{} { - return []interface{}{c.Result0} -} - -// UsersStoreUpdateFunc describes the behavior when the Update method of the -// parent MockUsersStore instance is invoked. -type UsersStoreUpdateFunc struct { - defaultHook func(context.Context, int64, database.UpdateUserOptions) error - hooks []func(context.Context, int64, database.UpdateUserOptions) error - history []UsersStoreUpdateFuncCall - mutex sync.Mutex -} - -// Update delegates to the next hook function in the queue and stores the -// parameter and result values of this invocation. -func (m *MockUsersStore) Update(v0 context.Context, v1 int64, v2 database.UpdateUserOptions) error { - r0 := m.UpdateFunc.nextHook()(v0, v1, v2) - m.UpdateFunc.appendCall(UsersStoreUpdateFuncCall{v0, v1, v2, r0}) - return r0 -} - -// SetDefaultHook sets function that is called when the Update method of the -// parent MockUsersStore instance is invoked and the hook queue is empty. -func (f *UsersStoreUpdateFunc) SetDefaultHook(hook func(context.Context, int64, database.UpdateUserOptions) error) { - f.defaultHook = hook -} - -// PushHook adds a function to the end of hook queue. Each invocation of the -// Update 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 *UsersStoreUpdateFunc) PushHook(hook func(context.Context, int64, database.UpdateUserOptions) error) { - 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 *UsersStoreUpdateFunc) SetDefaultReturn(r0 error) { - f.SetDefaultHook(func(context.Context, int64, database.UpdateUserOptions) error { - return r0 - }) -} - -// PushReturn calls PushHook with a function that returns the given values. -func (f *UsersStoreUpdateFunc) PushReturn(r0 error) { - f.PushHook(func(context.Context, int64, database.UpdateUserOptions) error { - return r0 - }) -} - -func (f *UsersStoreUpdateFunc) nextHook() func(context.Context, int64, database.UpdateUserOptions) error { - 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 *UsersStoreUpdateFunc) appendCall(r0 UsersStoreUpdateFuncCall) { - f.mutex.Lock() - f.history = append(f.history, r0) - f.mutex.Unlock() -} - -// History returns a sequence of UsersStoreUpdateFuncCall objects describing -// the invocations of this function. -func (f *UsersStoreUpdateFunc) History() []UsersStoreUpdateFuncCall { - f.mutex.Lock() - history := make([]UsersStoreUpdateFuncCall, len(f.history)) - copy(history, f.history) - f.mutex.Unlock() - - return history -} - -// UsersStoreUpdateFuncCall is an object that describes an invocation of -// method Update on an instance of MockUsersStore. -type UsersStoreUpdateFuncCall 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 int64 - // Arg2 is the value of the 3rd argument passed to this method - // invocation. - Arg2 database.UpdateUserOptions - // Result0 is the value of the 1st result returned from this method - // invocation. - Result0 error -} - -// Args returns an interface slice containing the arguments of this -// invocation. -func (c UsersStoreUpdateFuncCall) Args() []interface{} { - return []interface{}{c.Arg0, c.Arg1, c.Arg2} -} - -// Results returns an interface slice containing the results of this -// invocation. -func (c UsersStoreUpdateFuncCall) Results() []interface{} { - return []interface{}{c.Result0} -} - -// UsersStoreUseCustomAvatarFunc describes the behavior when the -// UseCustomAvatar method of the parent MockUsersStore instance is invoked. -type UsersStoreUseCustomAvatarFunc struct { - defaultHook func(context.Context, int64, []byte) error - hooks []func(context.Context, int64, []byte) error - history []UsersStoreUseCustomAvatarFuncCall - mutex sync.Mutex -} - -// UseCustomAvatar delegates to the next hook function in the queue and -// stores the parameter and result values of this invocation. -func (m *MockUsersStore) UseCustomAvatar(v0 context.Context, v1 int64, v2 []byte) error { - r0 := m.UseCustomAvatarFunc.nextHook()(v0, v1, v2) - m.UseCustomAvatarFunc.appendCall(UsersStoreUseCustomAvatarFuncCall{v0, v1, v2, r0}) - return r0 -} - -// SetDefaultHook sets function that is called when the UseCustomAvatar -// method of the parent MockUsersStore instance is invoked and the hook -// queue is empty. -func (f *UsersStoreUseCustomAvatarFunc) SetDefaultHook(hook func(context.Context, int64, []byte) error) { - f.defaultHook = hook -} - -// PushHook adds a function to the end of hook queue. Each invocation of the -// UseCustomAvatar 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 *UsersStoreUseCustomAvatarFunc) PushHook(hook func(context.Context, int64, []byte) error) { - 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 *UsersStoreUseCustomAvatarFunc) SetDefaultReturn(r0 error) { - f.SetDefaultHook(func(context.Context, int64, []byte) error { - return r0 - }) -} - -// PushReturn calls PushHook with a function that returns the given values. -func (f *UsersStoreUseCustomAvatarFunc) PushReturn(r0 error) { - f.PushHook(func(context.Context, int64, []byte) error { - return r0 - }) -} - -func (f *UsersStoreUseCustomAvatarFunc) nextHook() func(context.Context, int64, []byte) error { - 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 *UsersStoreUseCustomAvatarFunc) appendCall(r0 UsersStoreUseCustomAvatarFuncCall) { - f.mutex.Lock() - f.history = append(f.history, r0) - f.mutex.Unlock() -} - -// History returns a sequence of UsersStoreUseCustomAvatarFuncCall objects -// describing the invocations of this function. -func (f *UsersStoreUseCustomAvatarFunc) History() []UsersStoreUseCustomAvatarFuncCall { - f.mutex.Lock() - history := make([]UsersStoreUseCustomAvatarFuncCall, len(f.history)) - copy(history, f.history) - f.mutex.Unlock() - - return history -} - -// UsersStoreUseCustomAvatarFuncCall is an object that describes an -// invocation of method UseCustomAvatar on an instance of MockUsersStore. -type UsersStoreUseCustomAvatarFuncCall 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 int64 - // Arg2 is the value of the 3rd argument passed to this method - // invocation. - Arg2 []byte - // Result0 is the value of the 1st result returned from this method - // invocation. - Result0 error -} - -// Args returns an interface slice containing the arguments of this -// invocation. -func (c UsersStoreUseCustomAvatarFuncCall) Args() []interface{} { - return []interface{}{c.Arg0, c.Arg1, c.Arg2} -} - -// Results returns an interface slice containing the results of this -// invocation. -func (c UsersStoreUseCustomAvatarFuncCall) Results() []interface{} { - return []interface{}{c.Result0} -} - // MockStore is a mock implementation of the Store interface (from the // package gogs.io/gogs/internal/route/lfs) used for unit testing. type MockStore struct { + // AuthenticateUserFunc is an instance of a mock function object + // controlling the behavior of the method AuthenticateUser. + AuthenticateUserFunc *StoreAuthenticateUserFunc // AuthorizeRepositoryAccessFunc is an instance of a mock function // object controlling the behavior of the method // AuthorizeRepositoryAccess. @@ -3555,6 +27,9 @@ type MockStore struct { // CreateLFSObjectFunc is an instance of a mock function object // controlling the behavior of the method CreateLFSObject. CreateLFSObjectFunc *StoreCreateLFSObjectFunc + // CreateUserFunc is an instance of a mock function object controlling + // the behavior of the method CreateUser. + CreateUserFunc *StoreCreateUserFunc // GetAccessTokenBySHA1Func is an instance of a mock function object // controlling the behavior of the method GetAccessTokenBySHA1. GetAccessTokenBySHA1Func *StoreGetAccessTokenBySHA1Func @@ -3567,6 +42,12 @@ type MockStore struct { // GetRepositoryByNameFunc is an instance of a mock function object // controlling the behavior of the method GetRepositoryByName. GetRepositoryByNameFunc *StoreGetRepositoryByNameFunc + // GetUserByIDFunc is an instance of a mock function object controlling + // the behavior of the method GetUserByID. + GetUserByIDFunc *StoreGetUserByIDFunc + // GetUserByUsernameFunc is an instance of a mock function object + // controlling the behavior of the method GetUserByUsername. + GetUserByUsernameFunc *StoreGetUserByUsernameFunc // IsTwoFactorEnabledFunc is an instance of a mock function object // controlling the behavior of the method IsTwoFactorEnabled. IsTwoFactorEnabledFunc *StoreIsTwoFactorEnabledFunc @@ -3579,6 +60,11 @@ type MockStore struct { // return zero values for all results, unless overwritten. func NewMockStore() *MockStore { return &MockStore{ + AuthenticateUserFunc: &StoreAuthenticateUserFunc{ + defaultHook: func(context.Context, string, string, int64) (r0 *database.User, r1 error) { + return + }, + }, AuthorizeRepositoryAccessFunc: &StoreAuthorizeRepositoryAccessFunc{ defaultHook: func(context.Context, int64, int64, database.AccessMode, database.AccessModeOptions) (r0 bool) { return @@ -3589,6 +75,11 @@ func NewMockStore() *MockStore { return }, }, + CreateUserFunc: &StoreCreateUserFunc{ + defaultHook: func(context.Context, string, string, database.CreateUserOptions) (r0 *database.User, r1 error) { + return + }, + }, GetAccessTokenBySHA1Func: &StoreGetAccessTokenBySHA1Func{ defaultHook: func(context.Context, string) (r0 *database.AccessToken, r1 error) { return @@ -3609,6 +100,16 @@ func NewMockStore() *MockStore { return }, }, + GetUserByIDFunc: &StoreGetUserByIDFunc{ + defaultHook: func(context.Context, int64) (r0 *database.User, r1 error) { + return + }, + }, + GetUserByUsernameFunc: &StoreGetUserByUsernameFunc{ + defaultHook: func(context.Context, string) (r0 *database.User, r1 error) { + return + }, + }, IsTwoFactorEnabledFunc: &StoreIsTwoFactorEnabledFunc{ defaultHook: func(context.Context, int64) (r0 bool) { return @@ -3626,6 +127,11 @@ func NewMockStore() *MockStore { // panic on invocation, unless overwritten. func NewStrictMockStore() *MockStore { return &MockStore{ + AuthenticateUserFunc: &StoreAuthenticateUserFunc{ + defaultHook: func(context.Context, string, string, int64) (*database.User, error) { + panic("unexpected invocation of MockStore.AuthenticateUser") + }, + }, AuthorizeRepositoryAccessFunc: &StoreAuthorizeRepositoryAccessFunc{ defaultHook: func(context.Context, int64, int64, database.AccessMode, database.AccessModeOptions) bool { panic("unexpected invocation of MockStore.AuthorizeRepositoryAccess") @@ -3636,6 +142,11 @@ func NewStrictMockStore() *MockStore { panic("unexpected invocation of MockStore.CreateLFSObject") }, }, + CreateUserFunc: &StoreCreateUserFunc{ + defaultHook: func(context.Context, string, string, database.CreateUserOptions) (*database.User, error) { + panic("unexpected invocation of MockStore.CreateUser") + }, + }, GetAccessTokenBySHA1Func: &StoreGetAccessTokenBySHA1Func{ defaultHook: func(context.Context, string) (*database.AccessToken, error) { panic("unexpected invocation of MockStore.GetAccessTokenBySHA1") @@ -3656,6 +167,16 @@ func NewStrictMockStore() *MockStore { panic("unexpected invocation of MockStore.GetRepositoryByName") }, }, + GetUserByIDFunc: &StoreGetUserByIDFunc{ + defaultHook: func(context.Context, int64) (*database.User, error) { + panic("unexpected invocation of MockStore.GetUserByID") + }, + }, + GetUserByUsernameFunc: &StoreGetUserByUsernameFunc{ + defaultHook: func(context.Context, string) (*database.User, error) { + panic("unexpected invocation of MockStore.GetUserByUsername") + }, + }, IsTwoFactorEnabledFunc: &StoreIsTwoFactorEnabledFunc{ defaultHook: func(context.Context, int64) bool { panic("unexpected invocation of MockStore.IsTwoFactorEnabled") @@ -3673,12 +194,18 @@ func NewStrictMockStore() *MockStore { // methods delegate to the given implementation, unless overwritten. func NewMockStoreFrom(i Store) *MockStore { return &MockStore{ + AuthenticateUserFunc: &StoreAuthenticateUserFunc{ + defaultHook: i.AuthenticateUser, + }, AuthorizeRepositoryAccessFunc: &StoreAuthorizeRepositoryAccessFunc{ defaultHook: i.AuthorizeRepositoryAccess, }, CreateLFSObjectFunc: &StoreCreateLFSObjectFunc{ defaultHook: i.CreateLFSObject, }, + CreateUserFunc: &StoreCreateUserFunc{ + defaultHook: i.CreateUser, + }, GetAccessTokenBySHA1Func: &StoreGetAccessTokenBySHA1Func{ defaultHook: i.GetAccessTokenBySHA1, }, @@ -3691,6 +218,12 @@ func NewMockStoreFrom(i Store) *MockStore { GetRepositoryByNameFunc: &StoreGetRepositoryByNameFunc{ defaultHook: i.GetRepositoryByName, }, + GetUserByIDFunc: &StoreGetUserByIDFunc{ + defaultHook: i.GetUserByID, + }, + GetUserByUsernameFunc: &StoreGetUserByUsernameFunc{ + defaultHook: i.GetUserByUsername, + }, IsTwoFactorEnabledFunc: &StoreIsTwoFactorEnabledFunc{ defaultHook: i.IsTwoFactorEnabled, }, @@ -3700,6 +233,120 @@ func NewMockStoreFrom(i Store) *MockStore { } } +// StoreAuthenticateUserFunc describes the behavior when the +// AuthenticateUser method of the parent MockStore instance is invoked. +type StoreAuthenticateUserFunc struct { + defaultHook func(context.Context, string, string, int64) (*database.User, error) + hooks []func(context.Context, string, string, int64) (*database.User, error) + history []StoreAuthenticateUserFuncCall + mutex sync.Mutex +} + +// AuthenticateUser delegates to the next hook function in the queue and +// stores the parameter and result values of this invocation. +func (m *MockStore) AuthenticateUser(v0 context.Context, v1 string, v2 string, v3 int64) (*database.User, error) { + r0, r1 := m.AuthenticateUserFunc.nextHook()(v0, v1, v2, v3) + m.AuthenticateUserFunc.appendCall(StoreAuthenticateUserFuncCall{v0, v1, v2, v3, r0, r1}) + return r0, r1 +} + +// SetDefaultHook sets function that is called when the AuthenticateUser +// method of the parent MockStore instance is invoked and the hook queue is +// empty. +func (f *StoreAuthenticateUserFunc) SetDefaultHook(hook func(context.Context, string, string, int64) (*database.User, error)) { + f.defaultHook = hook +} + +// PushHook adds a function to the end of hook queue. Each invocation of the +// AuthenticateUser method of the parent MockStore 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 *StoreAuthenticateUserFunc) PushHook(hook func(context.Context, string, string, int64) (*database.User, error)) { + 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 *StoreAuthenticateUserFunc) SetDefaultReturn(r0 *database.User, r1 error) { + f.SetDefaultHook(func(context.Context, string, string, int64) (*database.User, error) { + return r0, r1 + }) +} + +// PushReturn calls PushHook with a function that returns the given values. +func (f *StoreAuthenticateUserFunc) PushReturn(r0 *database.User, r1 error) { + f.PushHook(func(context.Context, string, string, int64) (*database.User, error) { + return r0, r1 + }) +} + +func (f *StoreAuthenticateUserFunc) nextHook() func(context.Context, string, string, int64) (*database.User, error) { + 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 *StoreAuthenticateUserFunc) appendCall(r0 StoreAuthenticateUserFuncCall) { + f.mutex.Lock() + f.history = append(f.history, r0) + f.mutex.Unlock() +} + +// History returns a sequence of StoreAuthenticateUserFuncCall objects +// describing the invocations of this function. +func (f *StoreAuthenticateUserFunc) History() []StoreAuthenticateUserFuncCall { + f.mutex.Lock() + history := make([]StoreAuthenticateUserFuncCall, len(f.history)) + copy(history, f.history) + f.mutex.Unlock() + + return history +} + +// StoreAuthenticateUserFuncCall is an object that describes an invocation +// of method AuthenticateUser on an instance of MockStore. +type StoreAuthenticateUserFuncCall 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 + // Arg2 is the value of the 3rd argument passed to this method + // invocation. + Arg2 string + // Arg3 is the value of the 4th argument passed to this method + // invocation. + Arg3 int64 + // Result0 is the value of the 1st result returned from this method + // invocation. + Result0 *database.User + // Result1 is the value of the 2nd result returned from this method + // invocation. + Result1 error +} + +// Args returns an interface slice containing the arguments of this +// invocation. +func (c StoreAuthenticateUserFuncCall) Args() []interface{} { + return []interface{}{c.Arg0, c.Arg1, c.Arg2, c.Arg3} +} + +// Results returns an interface slice containing the results of this +// invocation. +func (c StoreAuthenticateUserFuncCall) Results() []interface{} { + return []interface{}{c.Result0, c.Result1} +} + // StoreAuthorizeRepositoryAccessFunc describes the behavior when the // AuthorizeRepositoryAccess method of the parent MockStore instance is // invoked. @@ -3930,6 +577,119 @@ func (c StoreCreateLFSObjectFuncCall) Results() []interface{} { return []interface{}{c.Result0} } +// StoreCreateUserFunc describes the behavior when the CreateUser method of +// the parent MockStore instance is invoked. +type StoreCreateUserFunc struct { + defaultHook func(context.Context, string, string, database.CreateUserOptions) (*database.User, error) + hooks []func(context.Context, string, string, database.CreateUserOptions) (*database.User, error) + history []StoreCreateUserFuncCall + mutex sync.Mutex +} + +// CreateUser delegates to the next hook function in the queue and stores +// the parameter and result values of this invocation. +func (m *MockStore) CreateUser(v0 context.Context, v1 string, v2 string, v3 database.CreateUserOptions) (*database.User, error) { + r0, r1 := m.CreateUserFunc.nextHook()(v0, v1, v2, v3) + m.CreateUserFunc.appendCall(StoreCreateUserFuncCall{v0, v1, v2, v3, r0, r1}) + return r0, r1 +} + +// SetDefaultHook sets function that is called when the CreateUser method of +// the parent MockStore instance is invoked and the hook queue is empty. +func (f *StoreCreateUserFunc) SetDefaultHook(hook func(context.Context, string, string, database.CreateUserOptions) (*database.User, error)) { + f.defaultHook = hook +} + +// PushHook adds a function to the end of hook queue. Each invocation of the +// CreateUser method of the parent MockStore 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 *StoreCreateUserFunc) PushHook(hook func(context.Context, string, string, database.CreateUserOptions) (*database.User, error)) { + 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 *StoreCreateUserFunc) SetDefaultReturn(r0 *database.User, r1 error) { + f.SetDefaultHook(func(context.Context, string, string, database.CreateUserOptions) (*database.User, error) { + return r0, r1 + }) +} + +// PushReturn calls PushHook with a function that returns the given values. +func (f *StoreCreateUserFunc) PushReturn(r0 *database.User, r1 error) { + f.PushHook(func(context.Context, string, string, database.CreateUserOptions) (*database.User, error) { + return r0, r1 + }) +} + +func (f *StoreCreateUserFunc) nextHook() func(context.Context, string, string, database.CreateUserOptions) (*database.User, error) { + 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 *StoreCreateUserFunc) appendCall(r0 StoreCreateUserFuncCall) { + f.mutex.Lock() + f.history = append(f.history, r0) + f.mutex.Unlock() +} + +// History returns a sequence of StoreCreateUserFuncCall objects describing +// the invocations of this function. +func (f *StoreCreateUserFunc) History() []StoreCreateUserFuncCall { + f.mutex.Lock() + history := make([]StoreCreateUserFuncCall, len(f.history)) + copy(history, f.history) + f.mutex.Unlock() + + return history +} + +// StoreCreateUserFuncCall is an object that describes an invocation of +// method CreateUser on an instance of MockStore. +type StoreCreateUserFuncCall 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 + // Arg2 is the value of the 3rd argument passed to this method + // invocation. + Arg2 string + // Arg3 is the value of the 4th argument passed to this method + // invocation. + Arg3 database.CreateUserOptions + // Result0 is the value of the 1st result returned from this method + // invocation. + Result0 *database.User + // Result1 is the value of the 2nd result returned from this method + // invocation. + Result1 error +} + +// Args returns an interface slice containing the arguments of this +// invocation. +func (c StoreCreateUserFuncCall) Args() []interface{} { + return []interface{}{c.Arg0, c.Arg1, c.Arg2, c.Arg3} +} + +// Results returns an interface slice containing the results of this +// invocation. +func (c StoreCreateUserFuncCall) Results() []interface{} { + return []interface{}{c.Result0, c.Result1} +} + // StoreGetAccessTokenBySHA1Func describes the behavior when the // GetAccessTokenBySHA1 method of the parent MockStore instance is invoked. type StoreGetAccessTokenBySHA1Func struct { @@ -4378,6 +1138,221 @@ func (c StoreGetRepositoryByNameFuncCall) Results() []interface{} { return []interface{}{c.Result0, c.Result1} } +// StoreGetUserByIDFunc describes the behavior when the GetUserByID method +// of the parent MockStore instance is invoked. +type StoreGetUserByIDFunc struct { + defaultHook func(context.Context, int64) (*database.User, error) + hooks []func(context.Context, int64) (*database.User, error) + history []StoreGetUserByIDFuncCall + mutex sync.Mutex +} + +// GetUserByID delegates to the next hook function in the queue and stores +// the parameter and result values of this invocation. +func (m *MockStore) GetUserByID(v0 context.Context, v1 int64) (*database.User, error) { + r0, r1 := m.GetUserByIDFunc.nextHook()(v0, v1) + m.GetUserByIDFunc.appendCall(StoreGetUserByIDFuncCall{v0, v1, r0, r1}) + return r0, r1 +} + +// SetDefaultHook sets function that is called when the GetUserByID method +// of the parent MockStore instance is invoked and the hook queue is empty. +func (f *StoreGetUserByIDFunc) SetDefaultHook(hook func(context.Context, int64) (*database.User, error)) { + f.defaultHook = hook +} + +// PushHook adds a function to the end of hook queue. Each invocation of the +// GetUserByID method of the parent MockStore 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 *StoreGetUserByIDFunc) PushHook(hook func(context.Context, int64) (*database.User, error)) { + 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 *StoreGetUserByIDFunc) SetDefaultReturn(r0 *database.User, r1 error) { + f.SetDefaultHook(func(context.Context, int64) (*database.User, error) { + return r0, r1 + }) +} + +// PushReturn calls PushHook with a function that returns the given values. +func (f *StoreGetUserByIDFunc) PushReturn(r0 *database.User, r1 error) { + f.PushHook(func(context.Context, int64) (*database.User, error) { + return r0, r1 + }) +} + +func (f *StoreGetUserByIDFunc) nextHook() func(context.Context, int64) (*database.User, error) { + 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 *StoreGetUserByIDFunc) appendCall(r0 StoreGetUserByIDFuncCall) { + f.mutex.Lock() + f.history = append(f.history, r0) + f.mutex.Unlock() +} + +// History returns a sequence of StoreGetUserByIDFuncCall objects describing +// the invocations of this function. +func (f *StoreGetUserByIDFunc) History() []StoreGetUserByIDFuncCall { + f.mutex.Lock() + history := make([]StoreGetUserByIDFuncCall, len(f.history)) + copy(history, f.history) + f.mutex.Unlock() + + return history +} + +// StoreGetUserByIDFuncCall is an object that describes an invocation of +// method GetUserByID on an instance of MockStore. +type StoreGetUserByIDFuncCall 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 int64 + // Result0 is the value of the 1st result returned from this method + // invocation. + Result0 *database.User + // Result1 is the value of the 2nd result returned from this method + // invocation. + Result1 error +} + +// Args returns an interface slice containing the arguments of this +// invocation. +func (c StoreGetUserByIDFuncCall) Args() []interface{} { + return []interface{}{c.Arg0, c.Arg1} +} + +// Results returns an interface slice containing the results of this +// invocation. +func (c StoreGetUserByIDFuncCall) Results() []interface{} { + return []interface{}{c.Result0, c.Result1} +} + +// StoreGetUserByUsernameFunc describes the behavior when the +// GetUserByUsername method of the parent MockStore instance is invoked. +type StoreGetUserByUsernameFunc struct { + defaultHook func(context.Context, string) (*database.User, error) + hooks []func(context.Context, string) (*database.User, error) + history []StoreGetUserByUsernameFuncCall + mutex sync.Mutex +} + +// GetUserByUsername delegates to the next hook function in the queue and +// stores the parameter and result values of this invocation. +func (m *MockStore) GetUserByUsername(v0 context.Context, v1 string) (*database.User, error) { + r0, r1 := m.GetUserByUsernameFunc.nextHook()(v0, v1) + m.GetUserByUsernameFunc.appendCall(StoreGetUserByUsernameFuncCall{v0, v1, r0, r1}) + return r0, r1 +} + +// SetDefaultHook sets function that is called when the GetUserByUsername +// method of the parent MockStore instance is invoked and the hook queue is +// empty. +func (f *StoreGetUserByUsernameFunc) SetDefaultHook(hook func(context.Context, string) (*database.User, error)) { + f.defaultHook = hook +} + +// PushHook adds a function to the end of hook queue. Each invocation of the +// GetUserByUsername method of the parent MockStore 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 *StoreGetUserByUsernameFunc) PushHook(hook func(context.Context, string) (*database.User, error)) { + 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 *StoreGetUserByUsernameFunc) SetDefaultReturn(r0 *database.User, r1 error) { + f.SetDefaultHook(func(context.Context, string) (*database.User, error) { + return r0, r1 + }) +} + +// PushReturn calls PushHook with a function that returns the given values. +func (f *StoreGetUserByUsernameFunc) PushReturn(r0 *database.User, r1 error) { + f.PushHook(func(context.Context, string) (*database.User, error) { + return r0, r1 + }) +} + +func (f *StoreGetUserByUsernameFunc) nextHook() func(context.Context, string) (*database.User, error) { + 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 *StoreGetUserByUsernameFunc) appendCall(r0 StoreGetUserByUsernameFuncCall) { + f.mutex.Lock() + f.history = append(f.history, r0) + f.mutex.Unlock() +} + +// History returns a sequence of StoreGetUserByUsernameFuncCall objects +// describing the invocations of this function. +func (f *StoreGetUserByUsernameFunc) History() []StoreGetUserByUsernameFuncCall { + f.mutex.Lock() + history := make([]StoreGetUserByUsernameFuncCall, len(f.history)) + copy(history, f.history) + f.mutex.Unlock() + + return history +} + +// StoreGetUserByUsernameFuncCall is an object that describes an invocation +// of method GetUserByUsername on an instance of MockStore. +type StoreGetUserByUsernameFuncCall 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 *database.User + // Result1 is the value of the 2nd result returned from this method + // invocation. + Result1 error +} + +// Args returns an interface slice containing the arguments of this +// invocation. +func (c StoreGetUserByUsernameFuncCall) Args() []interface{} { + return []interface{}{c.Arg0, c.Arg1} +} + +// Results returns an interface slice containing the results of this +// invocation. +func (c StoreGetUserByUsernameFuncCall) Results() []interface{} { + return []interface{}{c.Result0, c.Result1} +} + // StoreIsTwoFactorEnabledFunc describes the behavior when the // IsTwoFactorEnabled method of the parent MockStore instance is invoked. type StoreIsTwoFactorEnabledFunc struct { diff --git a/internal/route/lfs/route.go b/internal/route/lfs/route.go index 7e68ee7a3..5ed7a6377 100644 --- a/internal/route/lfs/route.go +++ b/internal/route/lfs/route.go @@ -62,7 +62,7 @@ func authenticate(store Store) macaron.Handler { return } - user, err := database.Users.Authenticate(c.Req.Context(), username, password, -1) + user, err := store.AuthenticateUser(c.Req.Context(), username, password, -1) if err != nil && !auth.IsErrBadCredentials(err) { internalServerError(c.Resp) log.Error("Failed to authenticate user [name: %s]: %v", username, err) @@ -109,7 +109,7 @@ func authorize(store Store, mode database.AccessMode) macaron.Handler { username := c.Params(":username") reponame := strings.TrimSuffix(c.Params(":reponame"), ".git") - owner, err := database.Users.GetByUsername(c.Req.Context(), username) + owner, err := store.GetUserByUsername(c.Req.Context(), username) if err != nil { if database.IsErrUserNotExist(err) { c.Status(http.StatusNotFound) diff --git a/internal/route/lfs/route_test.go b/internal/route/lfs/route_test.go index d691325bb..e0f37a6af 100644 --- a/internal/route/lfs/route_test.go +++ b/internal/route/lfs/route_test.go @@ -22,13 +22,12 @@ import ( func TestAuthenticate(t *testing.T) { tests := []struct { - name string - header http.Header - mockUsersStore func() database.UsersStore - mockStore func() *MockStore - expStatusCode int - expHeader http.Header - expBody string + name string + header http.Header + mockStore func() *MockStore + expStatusCode int + expHeader http.Header + expBody string }{ { name: "no authorization", @@ -44,14 +43,10 @@ func TestAuthenticate(t *testing.T) { header: http.Header{ "Authorization": []string{"Basic dXNlcm5hbWU6cGFzc3dvcmQ="}, }, - mockUsersStore: func() database.UsersStore { - mock := NewMockUsersStore() - mock.AuthenticateFunc.SetDefaultReturn(&database.User{}, nil) - return mock - }, mockStore: func() *MockStore { mockStore := NewMockStore() mockStore.IsTwoFactorEnabledFunc.SetDefaultReturn(true) + mockStore.AuthenticateUserFunc.SetDefaultReturn(&database.User{}, nil) return mockStore }, expStatusCode: http.StatusBadRequest, @@ -63,14 +58,10 @@ func TestAuthenticate(t *testing.T) { header: http.Header{ "Authorization": []string{"Basic dXNlcm5hbWU="}, }, - mockUsersStore: func() database.UsersStore { - mock := NewMockUsersStore() - mock.AuthenticateFunc.SetDefaultReturn(nil, auth.ErrBadCredentials{}) - return mock - }, mockStore: func() *MockStore { mockStore := NewMockStore() mockStore.GetAccessTokenBySHA1Func.SetDefaultReturn(nil, database.ErrAccessTokenNotExist{}) + mockStore.AuthenticateUserFunc.SetDefaultReturn(nil, auth.ErrBadCredentials{}) return mockStore }, expStatusCode: http.StatusUnauthorized, @@ -86,14 +77,10 @@ func TestAuthenticate(t *testing.T) { header: http.Header{ "Authorization": []string{"Basic dXNlcm5hbWU6cGFzc3dvcmQ="}, }, - mockUsersStore: func() database.UsersStore { - mock := NewMockUsersStore() - mock.AuthenticateFunc.SetDefaultReturn(&database.User{ID: 1, Name: "unknwon"}, nil) - return mock - }, mockStore: func() *MockStore { mockStore := NewMockStore() mockStore.IsTwoFactorEnabledFunc.SetDefaultReturn(false) + mockStore.AuthenticateUserFunc.SetDefaultReturn(&database.User{ID: 1, Name: "unknwon"}, nil) return mockStore }, expStatusCode: http.StatusOK, @@ -105,15 +92,11 @@ func TestAuthenticate(t *testing.T) { header: http.Header{ "Authorization": []string{"Basic dXNlcm5hbWU="}, }, - mockUsersStore: func() database.UsersStore { - mock := NewMockUsersStore() - mock.AuthenticateFunc.SetDefaultReturn(nil, auth.ErrBadCredentials{}) - mock.GetByIDFunc.SetDefaultReturn(&database.User{ID: 1, Name: "unknwon"}, nil) - return mock - }, mockStore: func() *MockStore { mockStore := NewMockStore() mockStore.GetAccessTokenBySHA1Func.SetDefaultReturn(&database.AccessToken{}, nil) + mockStore.AuthenticateUserFunc.SetDefaultReturn(nil, auth.ErrBadCredentials{}) + mockStore.GetUserByIDFunc.SetDefaultReturn(&database.User{ID: 1, Name: "unknwon"}, nil) return mockStore }, expStatusCode: http.StatusOK, @@ -125,12 +108,6 @@ func TestAuthenticate(t *testing.T) { header: http.Header{ "Authorization": []string{"Basic dXNlcm5hbWU6cGFzc3dvcmQ="}, }, - mockUsersStore: func() database.UsersStore { - mock := NewMockUsersStore() - mock.AuthenticateFunc.SetDefaultReturn(nil, auth.ErrBadCredentials{}) - mock.GetByIDFunc.SetDefaultReturn(&database.User{ID: 1, Name: "unknwon"}, nil) - return mock - }, mockStore: func() *MockStore { mockStore := NewMockStore() mockStore.GetAccessTokenBySHA1Func.SetDefaultHook(func(_ context.Context, sha1 string) (*database.AccessToken, error) { @@ -139,6 +116,8 @@ func TestAuthenticate(t *testing.T) { } return nil, database.ErrAccessTokenNotExist{} }) + mockStore.AuthenticateUserFunc.SetDefaultReturn(nil, auth.ErrBadCredentials{}) + mockStore.GetUserByIDFunc.SetDefaultReturn(&database.User{ID: 1, Name: "unknwon"}, nil) return mockStore }, expStatusCode: http.StatusOK, @@ -148,9 +127,6 @@ func TestAuthenticate(t *testing.T) { } for _, test := range tests { t.Run(test.name, func(t *testing.T) { - if test.mockUsersStore != nil { - database.SetMockUsersStore(t, test.mockUsersStore()) - } if test.mockStore == nil { test.mockStore = NewMockStore } @@ -185,36 +161,31 @@ func TestAuthenticate(t *testing.T) { func TestAuthorize(t *testing.T) { tests := []struct { - name string - accessMode database.AccessMode - mockUsersStore func() database.UsersStore - mockStore func() *MockStore - expStatusCode int - expBody string + name string + accessMode database.AccessMode + mockStore func() *MockStore + expStatusCode int + expBody string }{ { name: "user does not exist", accessMode: database.AccessModeNone, - mockUsersStore: func() database.UsersStore { - mock := NewMockUsersStore() - mock.GetByUsernameFunc.SetDefaultReturn(nil, database.ErrUserNotExist{}) - return mock + mockStore: func() *MockStore { + mockStore := NewMockStore() + mockStore.GetUserByUsernameFunc.SetDefaultReturn(nil, database.ErrUserNotExist{}) + return mockStore }, expStatusCode: http.StatusNotFound, }, { name: "repository does not exist", accessMode: database.AccessModeNone, - mockUsersStore: func() database.UsersStore { - mock := NewMockUsersStore() - mock.GetByUsernameFunc.SetDefaultHook(func(ctx context.Context, username string) (*database.User, error) { - return &database.User{Name: username}, nil - }) - return mock - }, mockStore: func() *MockStore { mockStore := NewMockStore() mockStore.GetRepositoryByNameFunc.SetDefaultReturn(nil, database.ErrRepoNotExist{}) + mockStore.GetUserByUsernameFunc.SetDefaultHook(func(ctx context.Context, username string) (*database.User, error) { + return &database.User{Name: username}, nil + }) return mockStore }, expStatusCode: http.StatusNotFound, @@ -222,13 +193,6 @@ func TestAuthorize(t *testing.T) { { name: "actor is not authorized", accessMode: database.AccessModeWrite, - mockUsersStore: func() database.UsersStore { - mock := NewMockUsersStore() - mock.GetByUsernameFunc.SetDefaultHook(func(ctx context.Context, username string) (*database.User, error) { - return &database.User{Name: username}, nil - }) - return mock - }, mockStore: func() *MockStore { mockStore := NewMockStore() mockStore.AuthorizeRepositoryAccessFunc.SetDefaultHook(func(_ context.Context, _ int64, _ int64, desired database.AccessMode, _ database.AccessModeOptions) bool { @@ -237,6 +201,9 @@ func TestAuthorize(t *testing.T) { mockStore.GetRepositoryByNameFunc.SetDefaultHook(func(ctx context.Context, ownerID int64, name string) (*database.Repository, error) { return &database.Repository{Name: name}, nil }) + mockStore.GetUserByUsernameFunc.SetDefaultHook(func(ctx context.Context, username string) (*database.User, error) { + return &database.User{Name: username}, nil + }) return mockStore }, expStatusCode: http.StatusNotFound, @@ -245,13 +212,6 @@ func TestAuthorize(t *testing.T) { { name: "actor is authorized", accessMode: database.AccessModeRead, - mockUsersStore: func() database.UsersStore { - mock := NewMockUsersStore() - mock.GetByUsernameFunc.SetDefaultHook(func(ctx context.Context, username string) (*database.User, error) { - return &database.User{Name: username}, nil - }) - return mock - }, mockStore: func() *MockStore { mockStore := NewMockStore() mockStore.AuthorizeRepositoryAccessFunc.SetDefaultHook(func(_ context.Context, _ int64, _ int64, desired database.AccessMode, _ database.AccessModeOptions) bool { @@ -260,6 +220,9 @@ func TestAuthorize(t *testing.T) { mockStore.GetRepositoryByNameFunc.SetDefaultHook(func(ctx context.Context, ownerID int64, name string) (*database.Repository, error) { return &database.Repository{Name: name}, nil }) + mockStore.GetUserByUsernameFunc.SetDefaultHook(func(ctx context.Context, username string) (*database.User, error) { + return &database.User{Name: username}, nil + }) return mockStore }, expStatusCode: http.StatusOK, @@ -268,9 +231,6 @@ func TestAuthorize(t *testing.T) { } for _, test := range tests { t.Run(test.name, func(t *testing.T) { - if test.mockUsersStore != nil { - database.SetMockUsersStore(t, test.mockUsersStore()) - } mockStore := NewMockStore() if test.mockStore != nil { mockStore = test.mockStore() diff --git a/internal/route/lfs/store.go b/internal/route/lfs/store.go index ca4a6f160..054041798 100644 --- a/internal/route/lfs/store.go +++ b/internal/route/lfs/store.go @@ -37,6 +37,32 @@ type Store interface { // IsTwoFactorEnabled returns true if the user has enabled 2FA. IsTwoFactorEnabled(ctx context.Context, userID int64) bool + + // GetUserByID returns the user with given ID. It returns + // database.ErrUserNotExist when not found. + GetUserByID(ctx context.Context, id int64) (*database.User, error) + // GetUserByUsername returns the user with given username. It returns + // database.ErrUserNotExist when not found. + GetUserByUsername(ctx context.Context, username string) (*database.User, error) + // CreateUser creates a new user and persists to database. It returns + // database.ErrNameNotAllowed if the given name or pattern of the name is not + // allowed as a username, or database.ErrUserAlreadyExist when a user with same + // name already exists, or database.ErrEmailAlreadyUsed if the email has been + // verified by another user. + CreateUser(ctx context.Context, username, email string, opts database.CreateUserOptions) (*database.User, error) + // AuthenticateUser validates username and password via given login source ID. + // It returns database.ErrUserNotExist when the user was not found. + // + // When the "loginSourceID" is negative, it aborts the process and returns + // database.ErrUserNotExist if the user was not found in the database. + // + // When the "loginSourceID" is non-negative, it returns + // database.ErrLoginSourceMismatch if the user has different login source ID + // than the "loginSourceID". + // + // When the "loginSourceID" is positive, it tries to authenticate via given + // login source and creates a new user when not yet exists in the database. + AuthenticateUser(ctx context.Context, login, password string, loginSourceID int64) (*database.User, error) } type store struct{} @@ -77,3 +103,19 @@ func (*store) GetRepositoryByName(ctx context.Context, ownerID int64, name strin func (*store) IsTwoFactorEnabled(ctx context.Context, userID int64) bool { return database.Handle.TwoFactors().IsEnabled(ctx, userID) } + +func (*store) GetUserByID(ctx context.Context, id int64) (*database.User, error) { + return database.Handle.Users().GetByID(ctx, id) +} + +func (*store) GetUserByUsername(ctx context.Context, username string) (*database.User, error) { + return database.Handle.Users().GetByUsername(ctx, username) +} + +func (*store) CreateUser(ctx context.Context, username, email string, opts database.CreateUserOptions) (*database.User, error) { + return database.Handle.Users().Create(ctx, username, email, opts) +} + +func (*store) AuthenticateUser(ctx context.Context, login, password string, loginSourceID int64) (*database.User, error) { + return database.Handle.Users().Authenticate(ctx, login, password, loginSourceID) +} diff --git a/internal/route/org/members.go b/internal/route/org/members.go index ef473de9c..9e3a0fd06 100644 --- a/internal/route/org/members.go +++ b/internal/route/org/members.go @@ -97,7 +97,7 @@ func Invitation(c *context.Context) { if c.Req.Method == "POST" { uname := c.Query("uname") - u, err := database.Users.GetByUsername(c.Req.Context(), uname) + u, err := database.Handle.Users().GetByUsername(c.Req.Context(), uname) if err != nil { if database.IsErrUserNotExist(err) { c.Flash.Error(c.Tr("form.user_not_exist")) diff --git a/internal/route/org/setting.go b/internal/route/org/setting.go index d8f89c5cb..ef3b8b093 100644 --- a/internal/route/org/setting.go +++ b/internal/route/org/setting.go @@ -39,7 +39,7 @@ func SettingsPost(c *context.Context, f form.UpdateOrgSetting) { // Check if the organization username (including cases) had been changed if org.Name != f.Name { - err := database.Users.ChangeUsername(c.Req.Context(), c.Org.Organization.ID, f.Name) + err := database.Handle.Users().ChangeUsername(c.Req.Context(), c.Org.Organization.ID, f.Name) if err != nil { c.Data["OrgName"] = true var msg string @@ -71,7 +71,7 @@ func SettingsPost(c *context.Context, f form.UpdateOrgSetting) { if c.User.IsAdmin { opts.MaxRepoCreation = &f.MaxRepoCreation } - err := database.Users.Update(c.Req.Context(), c.Org.Organization.ID, opts) + err := database.Handle.Users().Update(c.Req.Context(), c.Org.Organization.ID, opts) if err != nil { c.Error(err, "update organization") return @@ -93,7 +93,7 @@ func SettingsAvatar(c *context.Context, f form.Avatar) { } func SettingsDeleteAvatar(c *context.Context) { - if err := database.Users.DeleteCustomAvatar(c.Req.Context(), c.Org.Organization.ID); err != nil { + if err := database.Handle.Users().DeleteCustomAvatar(c.Req.Context(), c.Org.Organization.ID); err != nil { c.Flash.Error(err.Error()) } @@ -106,7 +106,7 @@ func SettingsDelete(c *context.Context) { org := c.Org.Organization if c.Req.Method == "POST" { - if _, err := database.Users.Authenticate(c.Req.Context(), c.User.Name, c.Query("password"), c.User.LoginSource); err != nil { + if _, err := database.Handle.Users().Authenticate(c.Req.Context(), c.User.Name, c.Query("password"), c.User.LoginSource); err != nil { if auth.IsErrBadCredentials(err) { c.RenderWithErr(c.Tr("form.enterred_invalid_password"), SETTINGS_DELETE, nil) } else { diff --git a/internal/route/org/teams.go b/internal/route/org/teams.go index 919c0d4f1..a52753cce 100644 --- a/internal/route/org/teams.go +++ b/internal/route/org/teams.go @@ -71,7 +71,7 @@ func TeamsAction(c *context.Context) { } uname := c.Query("uname") var u *database.User - u, err = database.Users.GetByUsername(c.Req.Context(), uname) + u, err = database.Handle.Users().GetByUsername(c.Req.Context(), uname) if err != nil { if database.IsErrUserNotExist(err) { c.Flash.Error(c.Tr("form.user_not_exist")) diff --git a/internal/route/repo/commit.go b/internal/route/repo/commit.go index 55dac6aec..e9c843743 100644 --- a/internal/route/repo/commit.go +++ b/internal/route/repo/commit.go @@ -114,7 +114,7 @@ func FileHistory(c *context.Context) { // tryGetUserByEmail returns a non-nil value if the email is corresponding to an // existing user. func tryGetUserByEmail(ctx gocontext.Context, email string) *database.User { - user, _ := database.Users.GetByEmail(ctx, email) + user, _ := database.Handle.Users().GetByEmail(ctx, email) return user } @@ -197,10 +197,11 @@ type userCommit struct { func matchUsersWithCommitEmails(ctx gocontext.Context, oldCommits []*git.Commit) []*userCommit { emailToUsers := make(map[string]*database.User) newCommits := make([]*userCommit, len(oldCommits)) + usersStore := database.Handle.Users() for i := range oldCommits { var u *database.User if v, ok := emailToUsers[oldCommits[i].Author.Email]; !ok { - u, _ = database.Users.GetByEmail(ctx, oldCommits[i].Author.Email) + u, _ = usersStore.GetByEmail(ctx, oldCommits[i].Author.Email) emailToUsers[oldCommits[i].Author.Email] = u } else { u = v diff --git a/internal/route/repo/http.go b/internal/route/repo/http.go index 8870bea53..520ea8180 100644 --- a/internal/route/repo/http.go +++ b/internal/route/repo/http.go @@ -66,7 +66,7 @@ func HTTPContexter(store Store) macaron.Handler { strings.HasSuffix(c.Req.URL.Path, "git-upload-pack") || c.Req.Method == "GET" - owner, err := database.Users.GetByUsername(c.Req.Context(), ownerName) + owner, err := store.GetUserByUsername(c.Req.Context(), ownerName) if err != nil { if database.IsErrUserNotExist(err) { c.Status(http.StatusNotFound) @@ -124,7 +124,7 @@ func HTTPContexter(store Store) macaron.Handler { return } - authUser, err := database.Users.Authenticate(c.Req.Context(), authUsername, authPassword, -1) + authUser, err := store.AuthenticateUser(c.Req.Context(), authUsername, authPassword, -1) if err != nil && !auth.IsErrBadCredentials(err) { c.Status(http.StatusInternalServerError) log.Error("Failed to authenticate user [name: %s]: %v", authUsername, err) diff --git a/internal/route/repo/pull.go b/internal/route/repo/pull.go index c6bd09d26..8b46cef3d 100644 --- a/internal/route/repo/pull.go +++ b/internal/route/repo/pull.go @@ -466,7 +466,7 @@ func ParseCompareInfo(c *context.Context) (*database.User, *database.Repository, headBranch = headInfos[0] } else if len(headInfos) == 2 { - headUser, err = database.Users.GetByUsername(c.Req.Context(), headInfos[0]) + headUser, err = database.Handle.Users().GetByUsername(c.Req.Context(), headInfos[0]) if err != nil { c.NotFoundOrError(err, "get user by name") return nil, nil, nil, nil, "", "" diff --git a/internal/route/repo/repo.go b/internal/route/repo/repo.go index 9266a506b..672dcc4f1 100644 --- a/internal/route/repo/repo.go +++ b/internal/route/repo/repo.go @@ -47,7 +47,7 @@ func checkContextUser(c *context.Context, uid int64) *database.User { return c.User } - org, err := database.Users.GetByID(c.Req.Context(), uid) + org, err := database.Handle.Users().GetByID(c.Req.Context(), uid) if database.IsErrUserNotExist(err) { return c.User } diff --git a/internal/route/repo/setting.go b/internal/route/repo/setting.go index 037fd9646..196c1c62b 100644 --- a/internal/route/repo/setting.go +++ b/internal/route/repo/setting.go @@ -225,7 +225,7 @@ func SettingsPost(c *context.Context, f form.RepoSetting) { } newOwner := c.Query("new_owner_name") - if !database.Users.IsUsernameUsed(c.Req.Context(), newOwner, c.Repo.Owner.ID) { + if !database.Handle.Users().IsUsernameUsed(c.Req.Context(), newOwner, c.Repo.Owner.ID) { c.RenderWithErr(c.Tr("form.enterred_invalid_owner_name"), SETTINGS_OPTIONS, nil) return } @@ -380,7 +380,7 @@ func SettingsCollaborationPost(c *context.Context) { return } - u, err := database.Users.GetByUsername(c.Req.Context(), name) + u, err := database.Handle.Users().GetByUsername(c.Req.Context(), name) if err != nil { if database.IsErrUserNotExist(err) { c.Flash.Error(c.Tr("form.user_not_exist")) diff --git a/internal/route/repo/store.go b/internal/route/repo/store.go index 4c5b75f5f..6ac234589 100644 --- a/internal/route/repo/store.go +++ b/internal/route/repo/store.go @@ -23,6 +23,32 @@ type Store interface { // IsTwoFactorEnabled returns true if the user has enabled 2FA. IsTwoFactorEnabled(ctx context.Context, userID int64) bool + + // GetUserByID returns the user with given ID. It returns + // database.ErrUserNotExist when not found. + GetUserByID(ctx context.Context, id int64) (*database.User, error) + // GetUserByUsername returns the user with given username. It returns + // database.ErrUserNotExist when not found. + GetUserByUsername(ctx context.Context, username string) (*database.User, error) + // CreateUser creates a new user and persists to database. It returns + // database.ErrNameNotAllowed if the given name or pattern of the name is not + // allowed as a username, or database.ErrUserAlreadyExist when a user with same + // name already exists, or database.ErrEmailAlreadyUsed if the email has been + // verified by another user. + CreateUser(ctx context.Context, username, email string, opts database.CreateUserOptions) (*database.User, error) + // AuthenticateUser validates username and password via given login source ID. + // It returns database.ErrUserNotExist when the user was not found. + // + // When the "loginSourceID" is negative, it aborts the process and returns + // database.ErrUserNotExist if the user was not found in the database. + // + // When the "loginSourceID" is non-negative, it returns + // database.ErrLoginSourceMismatch if the user has different login source ID + // than the "loginSourceID". + // + // When the "loginSourceID" is positive, it tries to authenticate via given + // login source and creates a new user when not yet exists in the database. + AuthenticateUser(ctx context.Context, login, password string, loginSourceID int64) (*database.User, error) } type store struct{} @@ -47,3 +73,19 @@ func (*store) GetRepositoryByName(ctx context.Context, ownerID int64, name strin func (*store) IsTwoFactorEnabled(ctx context.Context, userID int64) bool { return database.Handle.TwoFactors().IsEnabled(ctx, userID) } + +func (*store) GetUserByID(ctx context.Context, id int64) (*database.User, error) { + return database.Handle.Users().GetByID(ctx, id) +} + +func (*store) GetUserByUsername(ctx context.Context, username string) (*database.User, error) { + return database.Handle.Users().GetByUsername(ctx, username) +} + +func (*store) CreateUser(ctx context.Context, username, email string, opts database.CreateUserOptions) (*database.User, error) { + return database.Handle.Users().Create(ctx, username, email, opts) +} + +func (*store) AuthenticateUser(ctx context.Context, login, password string, loginSourceID int64) (*database.User, error) { + return database.Handle.Users().Authenticate(ctx, login, password, loginSourceID) +} diff --git a/internal/route/repo/tasks.go b/internal/route/repo/tasks.go index c5d8187a3..386966f88 100644 --- a/internal/route/repo/tasks.go +++ b/internal/route/repo/tasks.go @@ -26,7 +26,7 @@ func TriggerTask(c *macaron.Context) { username := c.Params(":username") reponame := c.Params(":reponame") - owner, err := database.Users.GetByUsername(c.Req.Context(), username) + owner, err := database.Handle.Users().GetByUsername(c.Req.Context(), username) if err != nil { if database.IsErrUserNotExist(err) { c.Error(http.StatusBadRequest, "Owner does not exist") @@ -55,7 +55,7 @@ func TriggerTask(c *macaron.Context) { return } - pusher, err := database.Users.GetByID(c.Req.Context(), pusherID) + pusher, err := database.Handle.Users().GetByID(c.Req.Context(), pusherID) if err != nil { if database.IsErrUserNotExist(err) { c.Error(http.StatusBadRequest, "Pusher does not exist") diff --git a/internal/route/repo/webhook.go b/internal/route/repo/webhook.go index 18e2d8d99..239a2a637 100644 --- a/internal/route/repo/webhook.go +++ b/internal/route/repo/webhook.go @@ -493,7 +493,7 @@ func TestWebhook(c *context.Context) { committer = c.Repo.Commit.Committer // Try to match email with a real user. - author, err := database.Users.GetByEmail(c.Req.Context(), c.Repo.Commit.Author.Email) + author, err := database.Handle.Users().GetByEmail(c.Req.Context(), c.Repo.Commit.Author.Email) if err == nil { authorUsername = author.Name } else if !database.IsErrUserNotExist(err) { @@ -501,7 +501,7 @@ func TestWebhook(c *context.Context) { return } - user, err := database.Users.GetByEmail(c.Req.Context(), c.Repo.Commit.Committer.Email) + user, err := database.Handle.Users().GetByEmail(c.Req.Context(), c.Repo.Commit.Committer.Email) if err == nil { committerUsername = user.Name } else if !database.IsErrUserNotExist(err) { diff --git a/internal/route/user/auth.go b/internal/route/user/auth.go index 7c80762ca..52d8fc25b 100644 --- a/internal/route/user/auth.go +++ b/internal/route/user/auth.go @@ -56,7 +56,7 @@ func AutoLogin(c *context.Context) (bool, error) { } }() - u, err := database.Users.GetByUsername(c.Req.Context(), uname) + u, err := database.Handle.Users().GetByUsername(c.Req.Context(), uname) if err != nil { if !database.IsErrUserNotExist(err) { return false, fmt.Errorf("get user by name: %v", err) @@ -165,7 +165,7 @@ func LoginPost(c *context.Context, f form.SignIn) { return } - u, err := database.Users.Authenticate(c.Req.Context(), f.UserName, f.Password, f.LoginSource) + u, err := database.Handle.Users().Authenticate(c.Req.Context(), f.UserName, f.Password, f.LoginSource) if err != nil { switch { case auth.IsErrBadCredentials(err): @@ -231,7 +231,7 @@ func LoginTwoFactorPost(c *context.Context) { return } - u, err := database.Users.GetByID(c.Req.Context(), userID) + u, err := database.Handle.Users().GetByID(c.Req.Context(), userID) if err != nil { c.Error(err, "get user by ID") return @@ -277,7 +277,7 @@ func LoginTwoFactorRecoveryCodePost(c *context.Context) { return } - u, err := database.Users.GetByID(c.Req.Context(), userID) + u, err := database.Handle.Users().GetByID(c.Req.Context(), userID) if err != nil { c.Error(err, "get user by ID") return @@ -335,7 +335,7 @@ func SignUpPost(c *context.Context, cpt *captcha.Captcha, f form.Register) { return } - user, err := database.Users.Create( + user, err := database.Handle.Users().Create( c.Req.Context(), f.UserName, f.Email, @@ -366,9 +366,9 @@ func SignUpPost(c *context.Context, cpt *captcha.Captcha, f form.Register) { // should have a dedicate method to check whether the "user" table is empty. // // Auto-set admin for the only user. - if database.Users.Count(c.Req.Context()) == 1 { + if database.Handle.Users().Count(c.Req.Context()) == 1 { v := true - err := database.Users.Update( + err := database.Handle.Users().Update( c.Req.Context(), user.ID, database.UpdateUserOptions{ @@ -409,7 +409,7 @@ func parseUserFromCode(code string) (user *database.User) { // Use tail hex username to query user hexStr := code[tool.TIME_LIMIT_CODE_LENGTH:] if b, err := hex.DecodeString(hexStr); err == nil { - if user, err = database.Users.GetByUsername(gocontext.TODO(), string(b)); user != nil { + if user, err = database.Handle.Users().GetByUsername(gocontext.TODO(), string(b)); user != nil { return user } else if !database.IsErrUserNotExist(err) { log.Error("Failed to get user by name %q: %v", string(b), err) @@ -445,7 +445,7 @@ func verifyActiveEmailCode(code, email string) *database.EmailAddress { data := com.ToStr(user.ID) + email + user.LowerName + user.Password + user.Rands if tool.VerifyTimeLimitCode(data, minutes, prefix) { - emailAddress, err := database.Users.GetEmail(gocontext.TODO(), user.ID, email, false) + emailAddress, err := database.Handle.Users().GetEmail(gocontext.TODO(), user.ID, email, false) if err == nil { return emailAddress } @@ -484,7 +484,7 @@ func Activate(c *context.Context) { // Verify code. if user := verifyUserActiveCode(code); user != nil { v := true - err := database.Users.Update( + err := database.Handle.Users().Update( c.Req.Context(), user.ID, database.UpdateUserOptions{ @@ -515,7 +515,7 @@ func ActivateEmail(c *context.Context) { // Verify code. if email := verifyActiveEmailCode(code, emailAddr); email != nil { - err := database.Users.MarkEmailActivated(c.Req.Context(), email.UserID, email.Email) + err := database.Handle.Users().MarkEmailActivated(c.Req.Context(), email.UserID, email.Email) if err != nil { c.Error(err, "activate email") return @@ -553,7 +553,7 @@ func ForgotPasswdPost(c *context.Context) { emailAddr := c.Query("email") c.Data["Email"] = emailAddr - u, err := database.Users.GetByEmail(c.Req.Context(), emailAddr) + u, err := database.Handle.Users().GetByEmail(c.Req.Context(), emailAddr) if err != nil { if database.IsErrUserNotExist(err) { c.Data["Hours"] = conf.Auth.ActivateCodeLives / 60 @@ -621,7 +621,7 @@ func ResetPasswdPost(c *context.Context) { return } - err := database.Users.Update(c.Req.Context(), u.ID, database.UpdateUserOptions{Password: &password}) + err := database.Handle.Users().Update(c.Req.Context(), u.ID, database.UpdateUserOptions{Password: &password}) if err != nil { c.Error(err, "update user") return diff --git a/internal/route/user/home.go b/internal/route/user/home.go index f227abb5b..afdb3f4c6 100644 --- a/internal/route/user/home.go +++ b/internal/route/user/home.go @@ -31,7 +31,7 @@ func getDashboardContextUser(c *context.Context) *database.User { orgName := c.Params(":org") if len(orgName) > 0 { // Organization. - org, err := database.Users.GetByUsername(c.Req.Context(), orgName) + org, err := database.Handle.Users().GetByUsername(c.Req.Context(), orgName) if err != nil { c.NotFoundOrError(err, "get user by name") return nil @@ -81,7 +81,7 @@ func retrieveFeeds(c *context.Context, ctxUser *database.User, userID int64, isP // Cache results to reduce queries. _, ok := unameAvatars[act.ActUserName] if !ok { - u, err := database.Users.GetByUsername(c.Req.Context(), act.ActUserName) + u, err := database.Handle.Users().GetByUsername(c.Req.Context(), act.ActUserName) if err != nil { if database.IsErrUserNotExist(err) { continue @@ -444,7 +444,7 @@ func showOrgProfile(c *context.Context) { } func Email2User(c *context.Context) { - u, err := database.Users.GetByEmail(c.Req.Context(), c.Query("email")) + u, err := database.Handle.Users().GetByEmail(c.Req.Context(), c.Query("email")) if err != nil { c.NotFoundOrError(err, "get user by email") return diff --git a/internal/route/user/profile.go b/internal/route/user/profile.go index 350abbf5f..c65094c32 100644 --- a/internal/route/user/profile.go +++ b/internal/route/user/profile.go @@ -92,7 +92,7 @@ func Followers(c *context.Context, puser *context.ParamsUser) { c, puser.NumFollowers, func(page int) ([]*database.User, error) { - return database.Users.ListFollowers(c.Req.Context(), puser.ID, page, database.ItemsPerPage) + return database.Handle.Users().ListFollowers(c.Req.Context(), puser.ID, page, database.ItemsPerPage) }, FOLLOWERS, ) @@ -107,7 +107,7 @@ func Following(c *context.Context, puser *context.ParamsUser) { c, puser.NumFollowing, func(page int) ([]*database.User, error) { - return database.Users.ListFollowings(c.Req.Context(), puser.ID, page, database.ItemsPerPage) + return database.Handle.Users().ListFollowings(c.Req.Context(), puser.ID, page, database.ItemsPerPage) }, FOLLOWERS, ) @@ -120,9 +120,9 @@ func Action(c *context.Context, puser *context.ParamsUser) { var err error switch c.Params(":action") { case "follow": - err = database.Users.Follow(c.Req.Context(), c.UserID(), puser.ID) + err = database.Handle.Users().Follow(c.Req.Context(), c.UserID(), puser.ID) case "unfollow": - err = database.Users.Unfollow(c.Req.Context(), c.UserID(), puser.ID) + err = database.Handle.Users().Unfollow(c.Req.Context(), c.UserID(), puser.ID) } if err != nil { diff --git a/internal/route/user/setting.go b/internal/route/user/setting.go index bcb6033ba..76ce263b2 100644 --- a/internal/route/user/setting.go +++ b/internal/route/user/setting.go @@ -84,7 +84,7 @@ func SettingsPost(c *context.Context, f form.UpdateProfile) { if c.User.IsLocal() { // Check if the username (including cases) had been changed if c.User.Name != f.Name { - err := database.Users.ChangeUsername(c.Req.Context(), c.User.ID, f.Name) + err := database.Handle.Users().ChangeUsername(c.Req.Context(), c.User.ID, f.Name) if err != nil { c.FormErr("Name") var msg string @@ -106,7 +106,7 @@ func SettingsPost(c *context.Context, f form.UpdateProfile) { } } - err := database.Users.Update( + err := database.Handle.Users().Update( c.Req.Context(), c.User.ID, database.UpdateUserOptions{ @@ -128,7 +128,7 @@ func SettingsPost(c *context.Context, f form.UpdateProfile) { func UpdateAvatarSetting(c *context.Context, f form.Avatar, ctxUser *database.User) error { if f.Source == form.AvatarLookup && f.Gravatar != "" { avatar := cryptoutil.MD5(f.Gravatar) - err := database.Users.Update( + err := database.Handle.Users().Update( c.Req.Context(), ctxUser.ID, database.UpdateUserOptions{ @@ -140,7 +140,7 @@ func UpdateAvatarSetting(c *context.Context, f form.Avatar, ctxUser *database.Us return errors.Wrap(err, "update user") } - err = database.Users.DeleteCustomAvatar(c.Req.Context(), c.User.ID) + err = database.Handle.Users().DeleteCustomAvatar(c.Req.Context(), c.User.ID) if err != nil { return errors.Wrap(err, "delete custom avatar") } @@ -162,7 +162,7 @@ func UpdateAvatarSetting(c *context.Context, f form.Avatar, ctxUser *database.Us return errors.New(c.Tr("settings.uploaded_avatar_not_a_image")) } - err = database.Users.UseCustomAvatar(c.Req.Context(), ctxUser.ID, data) + err = database.Handle.Users().UseCustomAvatar(c.Req.Context(), ctxUser.ID, data) if err != nil { return errors.Wrap(err, "save avatar") } @@ -188,7 +188,7 @@ func SettingsAvatarPost(c *context.Context, f form.Avatar) { } func SettingsDeleteAvatar(c *context.Context) { - err := database.Users.DeleteCustomAvatar(c.Req.Context(), c.User.ID) + err := database.Handle.Users().DeleteCustomAvatar(c.Req.Context(), c.User.ID) if err != nil { c.Flash.Error(fmt.Sprintf("Failed to delete avatar: %v", err)) } @@ -216,7 +216,7 @@ func SettingsPasswordPost(c *context.Context, f form.ChangePassword) { } else if f.Password != f.Retype { c.Flash.Error(c.Tr("form.password_not_match")) } else { - err := database.Users.Update( + err := database.Handle.Users().Update( c.Req.Context(), c.User.ID, database.UpdateUserOptions{ @@ -237,7 +237,7 @@ func SettingsEmails(c *context.Context) { c.Title("settings.emails") c.PageIs("SettingsEmails") - emails, err := database.Users.ListEmails(c.Req.Context(), c.User.ID) + emails, err := database.Handle.Users().ListEmails(c.Req.Context(), c.User.ID) if err != nil { c.Errorf(err, "get email addresses") return @@ -252,7 +252,7 @@ func SettingsEmailPost(c *context.Context, f form.AddEmail) { c.PageIs("SettingsEmails") if c.Query("_method") == "PRIMARY" { - err := database.Users.MarkEmailPrimary(c.Req.Context(), c.User.ID, c.Query("email")) + err := database.Handle.Users().MarkEmailPrimary(c.Req.Context(), c.User.ID, c.Query("email")) if err != nil { c.Errorf(err, "make email primary") return @@ -263,7 +263,7 @@ func SettingsEmailPost(c *context.Context, f form.AddEmail) { } // Add Email address. - emails, err := database.Users.ListEmails(c.Req.Context(), c.User.ID) + emails, err := database.Handle.Users().ListEmails(c.Req.Context(), c.User.ID) if err != nil { c.Errorf(err, "get email addresses") return @@ -275,7 +275,7 @@ func SettingsEmailPost(c *context.Context, f form.AddEmail) { return } - err = database.Users.AddEmail(c.Req.Context(), c.User.ID, f.Email, !conf.Auth.RequireEmailConfirmation) + err = database.Handle.Users().AddEmail(c.Req.Context(), c.User.ID, f.Email, !conf.Auth.RequireEmailConfirmation) if err != nil { if database.IsErrEmailAlreadyUsed(err) { c.RenderWithErr(c.Tr("form.email_been_used"), SETTINGS_EMAILS, &f) @@ -310,7 +310,7 @@ func DeleteEmail(c *context.Context) { return } - err := database.Users.DeleteEmail(c.Req.Context(), c.User.ID, email) + err := database.Handle.Users().DeleteEmail(c.Req.Context(), c.User.ID, email) if err != nil { c.Error(err, "delete email address") return @@ -663,7 +663,7 @@ func SettingsDelete(c *context.Context) { c.PageIs("SettingsDelete") if c.Req.Method == "POST" { - if _, err := database.Users.Authenticate(c.Req.Context(), c.User.Name, c.Query("password"), c.User.LoginSource); err != nil { + if _, err := database.Handle.Users().Authenticate(c.Req.Context(), c.User.Name, c.Query("password"), c.User.LoginSource); err != nil { if auth.IsErrBadCredentials(err) { c.RenderWithErr(c.Tr("form.enterred_invalid_password"), SETTINGS_DELETE, nil) } else { @@ -672,7 +672,7 @@ func SettingsDelete(c *context.Context) { return } - if err := database.Users.DeleteByID(c.Req.Context(), c.User.ID, false); err != nil { + if err := database.Handle.Users().DeleteByID(c.Req.Context(), c.User.ID, false); err != nil { switch { case database.IsErrUserOwnRepos(err): c.Flash.Error(c.Tr("form.still_own_repo")) diff --git a/mockgen.yaml b/mockgen.yaml index cf5b7ee02..65f812736 100644 --- a/mockgen.yaml +++ b/mockgen.yaml @@ -34,9 +34,6 @@ mocks: - Provider - filename: internal/route/lfs/mocks_test.go sources: - - path: gogs.io/gogs/internal/database - interfaces: - - UsersStore - path: gogs.io/gogs/internal/route/lfs interfaces: - Store