memos/store/user.go

370 lines
7.6 KiB
Go
Raw Normal View History

2021-12-08 23:43:14 +08:00
package store
import (
2022-08-07 09:23:46 +08:00
"context"
2022-05-22 00:59:22 +08:00
"database/sql"
2021-12-08 23:43:14 +08:00
"fmt"
2021-12-09 22:02:57 +08:00
"strings"
2022-06-27 22:09:06 +08:00
"github.com/usememos/memos/api"
"github.com/usememos/memos/common"
2021-12-08 23:43:14 +08:00
)
2022-05-19 18:32:04 +08:00
// userRaw is the store model for an User.
// Fields have exactly the same meanings as User.
type userRaw struct {
ID int
// Standard fields
RowStatus api.RowStatus
CreatedTs int64
UpdatedTs int64
// Domain specific fields
Email string
Role api.Role
Name string
PasswordHash string
OpenID string
}
func (raw *userRaw) toUser() *api.User {
return &api.User{
ID: raw.ID,
RowStatus: raw.RowStatus,
CreatedTs: raw.CreatedTs,
UpdatedTs: raw.UpdatedTs,
Email: raw.Email,
Role: raw.Role,
Name: raw.Name,
PasswordHash: raw.PasswordHash,
OpenID: raw.OpenID,
}
}
2022-09-05 21:14:17 +08:00
func (s *Store) ComposeMemoCreator(ctx context.Context, memo *api.Memo) error {
user, err := s.FindUser(ctx, &api.UserFind{
ID: &memo.CreatorID,
})
if err != nil {
return err
}
2022-10-01 10:37:02 +08:00
2022-09-05 21:14:17 +08:00
user.OpenID = ""
user.UserSettingList = nil
memo.Creator = user
return nil
}
2022-08-07 09:23:46 +08:00
func (s *Store) CreateUser(ctx context.Context, create *api.UserCreate) (*api.User, error) {
tx, err := s.db.BeginTx(ctx, nil)
if err != nil {
return nil, FormatError(err)
}
defer tx.Rollback()
userRaw, err := createUser(ctx, tx, create)
2021-12-15 10:55:17 +08:00
if err != nil {
2022-02-03 15:32:03 +08:00
return nil, err
2021-12-15 10:55:17 +08:00
}
2022-08-07 09:23:46 +08:00
if err := tx.Commit(); err != nil {
return nil, FormatError(err)
}
2022-10-01 10:37:02 +08:00
if err := s.cache.UpsertCache(api.UserCache, userRaw.ID, userRaw); err != nil {
2022-08-07 08:09:43 +08:00
return nil, err
}
2022-10-01 10:37:02 +08:00
user := userRaw.toUser()
2022-02-03 15:32:03 +08:00
return user, nil
}
2021-12-08 23:43:14 +08:00
2022-08-07 09:23:46 +08:00
func (s *Store) PatchUser(ctx context.Context, patch *api.UserPatch) (*api.User, error) {
tx, err := s.db.BeginTx(ctx, nil)
if err != nil {
return nil, FormatError(err)
}
defer tx.Rollback()
userRaw, err := patchUser(ctx, tx, patch)
2022-02-03 15:32:03 +08:00
if err != nil {
return nil, err
2021-12-08 23:43:14 +08:00
}
2022-08-07 09:23:46 +08:00
if err := tx.Commit(); err != nil {
return nil, FormatError(err)
}
2022-10-01 10:37:02 +08:00
if err := s.cache.UpsertCache(api.UserCache, userRaw.ID, userRaw); err != nil {
2022-08-07 08:09:43 +08:00
return nil, err
}
2022-10-01 10:37:02 +08:00
user := userRaw.toUser()
2022-02-03 15:32:03 +08:00
return user, nil
2021-12-08 23:43:14 +08:00
}
2022-08-07 09:23:46 +08:00
func (s *Store) FindUserList(ctx context.Context, find *api.UserFind) ([]*api.User, error) {
tx, err := s.db.BeginTx(ctx, nil)
if err != nil {
return nil, FormatError(err)
}
defer tx.Rollback()
userRawList, err := findUserList(ctx, tx, find)
if err != nil {
return nil, err
}
2022-05-19 18:32:04 +08:00
list := []*api.User{}
for _, raw := range userRawList {
list = append(list, raw.toUser())
}
return list, nil
}
2022-08-07 09:23:46 +08:00
func (s *Store) FindUser(ctx context.Context, find *api.UserFind) (*api.User, error) {
2022-08-07 08:09:43 +08:00
if find.ID != nil {
2022-10-01 10:37:02 +08:00
userRaw := &userRaw{}
has, err := s.cache.FindCache(api.UserCache, *find.ID, userRaw)
2022-08-07 08:09:43 +08:00
if err != nil {
return nil, err
}
if has {
2022-10-01 10:37:02 +08:00
return userRaw.toUser(), nil
2022-08-07 08:09:43 +08:00
}
}
2022-08-07 09:23:46 +08:00
tx, err := s.db.BeginTx(ctx, nil)
if err != nil {
return nil, FormatError(err)
}
defer tx.Rollback()
list, err := findUserList(ctx, tx, find)
2022-02-03 15:32:03 +08:00
if err != nil {
return nil, err
}
2021-12-14 20:40:24 +08:00
2022-02-03 15:32:03 +08:00
if len(list) == 0 {
2022-09-05 21:14:17 +08:00
return nil, &common.Error{Code: common.NotFound, Err: fmt.Errorf("not found user with filter %+v", find)}
2022-02-03 15:32:03 +08:00
} else if len(list) > 1 {
2022-09-05 21:14:17 +08:00
return nil, &common.Error{Code: common.Conflict, Err: fmt.Errorf("found %d users with filter %+v, expect 1", len(list), find)}
2022-02-03 15:32:03 +08:00
}
2021-12-08 23:43:14 +08:00
2022-10-01 10:37:02 +08:00
userRaw := list[0]
2022-05-19 18:32:04 +08:00
2022-10-01 10:37:02 +08:00
if err := s.cache.UpsertCache(api.UserCache, userRaw.ID, userRaw); err != nil {
2022-08-07 08:09:43 +08:00
return nil, err
}
2022-10-01 10:37:02 +08:00
user := userRaw.toUser()
2022-05-19 18:32:04 +08:00
return user, nil
2021-12-08 23:43:14 +08:00
}
2022-08-07 09:23:46 +08:00
func (s *Store) DeleteUser(ctx context.Context, delete *api.UserDelete) error {
tx, err := s.db.BeginTx(ctx, nil)
if err != nil {
return FormatError(err)
}
defer tx.Rollback()
err = deleteUser(ctx, tx, delete)
2022-07-26 21:41:20 +08:00
if err != nil {
return FormatError(err)
}
2022-08-07 09:23:46 +08:00
if err := tx.Commit(); err != nil {
return FormatError(err)
}
2022-08-07 08:09:43 +08:00
s.cache.DeleteCache(api.UserCache, delete.ID)
2022-07-26 21:41:20 +08:00
return nil
}
2022-08-07 09:23:46 +08:00
func createUser(ctx context.Context, tx *sql.Tx, create *api.UserCreate) (*userRaw, error) {
query := `
2022-02-03 15:32:03 +08:00
INSERT INTO user (
email,
role,
2022-02-03 15:32:03 +08:00
name,
2022-02-06 16:19:20 +08:00
password_hash,
2022-02-03 15:32:03 +08:00
open_id
)
VALUES (?, ?, ?, ?, ?)
RETURNING id, email, role, name, password_hash, open_id, created_ts, updated_ts, row_status
2022-08-07 09:23:46 +08:00
`
var userRaw userRaw
if err := tx.QueryRowContext(ctx, query,
create.Email,
create.Role,
2022-02-04 21:24:21 +08:00
create.Name,
2022-02-06 16:19:20 +08:00
create.PasswordHash,
2022-05-03 02:05:43 +08:00
create.OpenID,
2022-08-07 09:23:46 +08:00
).Scan(
2022-05-19 18:32:04 +08:00
&userRaw.ID,
&userRaw.Email,
&userRaw.Role,
&userRaw.Name,
&userRaw.PasswordHash,
&userRaw.OpenID,
&userRaw.CreatedTs,
&userRaw.UpdatedTs,
&userRaw.RowStatus,
2022-02-03 15:32:03 +08:00
); err != nil {
return nil, FormatError(err)
}
2022-05-19 18:32:04 +08:00
return &userRaw, nil
2021-12-08 23:43:14 +08:00
}
2022-08-07 09:23:46 +08:00
func patchUser(ctx context.Context, tx *sql.Tx, patch *api.UserPatch) (*userRaw, error) {
2022-02-03 15:32:03 +08:00
set, args := []string{}, []interface{}{}
2021-12-08 23:43:14 +08:00
2022-05-19 18:32:04 +08:00
if v := patch.RowStatus; v != nil {
set, args = append(set, "row_status = ?"), append(args, *v)
}
if v := patch.Email; v != nil {
2022-05-19 18:32:04 +08:00
set, args = append(set, "email = ?"), append(args, *v)
}
2022-02-03 15:32:03 +08:00
if v := patch.Name; v != nil {
2022-05-19 18:32:04 +08:00
set, args = append(set, "name = ?"), append(args, *v)
2021-12-08 23:43:14 +08:00
}
2022-02-06 16:19:20 +08:00
if v := patch.PasswordHash; v != nil {
2022-05-19 18:32:04 +08:00
set, args = append(set, "password_hash = ?"), append(args, *v)
2022-02-03 15:32:03 +08:00
}
2022-05-03 02:05:43 +08:00
if v := patch.OpenID; v != nil {
2022-05-19 18:32:04 +08:00
set, args = append(set, "open_id = ?"), append(args, *v)
2022-02-03 15:32:03 +08:00
}
2022-02-04 21:24:21 +08:00
2022-05-03 02:05:43 +08:00
args = append(args, patch.ID)
2022-02-03 15:32:03 +08:00
2022-08-07 09:23:46 +08:00
query := `
2022-02-03 15:32:03 +08:00
UPDATE user
2022-08-07 09:23:46 +08:00
SET ` + strings.Join(set, ", ") + `
2022-02-03 15:32:03 +08:00
WHERE id = ?
RETURNING id, email, role, name, password_hash, open_id, created_ts, updated_ts, row_status
2022-08-07 09:23:46 +08:00
`
row, err := tx.QueryContext(ctx, query, args...)
2022-02-03 15:32:03 +08:00
if err != nil {
return nil, FormatError(err)
}
defer row.Close()
if row.Next() {
2022-05-19 18:32:04 +08:00
var userRaw userRaw
2022-02-03 15:32:03 +08:00
if err := row.Scan(
2022-05-19 18:32:04 +08:00
&userRaw.ID,
&userRaw.Email,
&userRaw.Role,
&userRaw.Name,
&userRaw.PasswordHash,
&userRaw.OpenID,
&userRaw.CreatedTs,
&userRaw.UpdatedTs,
&userRaw.RowStatus,
2022-02-03 15:32:03 +08:00
); err != nil {
return nil, FormatError(err)
}
2022-08-24 21:53:12 +08:00
if err := row.Err(); err != nil {
return nil, err
}
2022-05-19 18:32:04 +08:00
return &userRaw, nil
2021-12-08 23:43:14 +08:00
}
2021-12-15 10:55:17 +08:00
2022-05-03 02:05:43 +08:00
return nil, &common.Error{Code: common.NotFound, Err: fmt.Errorf("user ID not found: %d", patch.ID)}
2021-12-08 23:43:14 +08:00
}
2022-08-07 09:23:46 +08:00
func findUserList(ctx context.Context, tx *sql.Tx, find *api.UserFind) ([]*userRaw, error) {
2022-02-04 00:56:44 +08:00
where, args := []string{"1 = 1"}, []interface{}{}
2022-02-03 15:32:03 +08:00
2022-05-03 02:05:43 +08:00
if v := find.ID; v != nil {
2022-02-03 15:32:03 +08:00
where, args = append(where, "id = ?"), append(args, *v)
}
if v := find.Role; v != nil {
where, args = append(where, "role = ?"), append(args, *v)
}
if v := find.Email; v != nil {
where, args = append(where, "email = ?"), append(args, *v)
}
2022-02-03 15:32:03 +08:00
if v := find.Name; v != nil {
where, args = append(where, "name = ?"), append(args, *v)
}
2022-05-03 02:05:43 +08:00
if v := find.OpenID; v != nil {
2022-02-03 15:32:03 +08:00
where, args = append(where, "open_id = ?"), append(args, *v)
}
2021-12-08 23:43:14 +08:00
2022-08-07 09:23:46 +08:00
query := `
2022-02-03 15:32:03 +08:00
SELECT
id,
email,
role,
2022-02-03 15:32:03 +08:00
name,
2022-02-06 16:19:20 +08:00
password_hash,
2022-02-03 15:32:03 +08:00
open_id,
2022-02-04 00:56:44 +08:00
created_ts,
updated_ts,
row_status
2022-02-03 15:32:03 +08:00
FROM user
2022-08-07 09:23:46 +08:00
WHERE ` + strings.Join(where, " AND ") + `
ORDER BY created_ts DESC, row_status DESC
`
rows, err := tx.QueryContext(ctx, query, args...)
2022-02-03 15:32:03 +08:00
if err != nil {
return nil, FormatError(err)
}
defer rows.Close()
2022-05-19 18:32:04 +08:00
userRawList := make([]*userRaw, 0)
2022-02-03 15:32:03 +08:00
for rows.Next() {
2022-05-19 18:32:04 +08:00
var userRaw userRaw
2022-02-03 15:32:03 +08:00
if err := rows.Scan(
2022-05-19 18:32:04 +08:00
&userRaw.ID,
&userRaw.Email,
&userRaw.Role,
&userRaw.Name,
&userRaw.PasswordHash,
&userRaw.OpenID,
&userRaw.CreatedTs,
&userRaw.UpdatedTs,
&userRaw.RowStatus,
2022-02-03 15:32:03 +08:00
); err != nil {
return nil, FormatError(err)
}
2022-05-19 18:32:04 +08:00
userRawList = append(userRawList, &userRaw)
2021-12-08 23:43:14 +08:00
}
2022-02-03 15:32:03 +08:00
if err := rows.Err(); err != nil {
return nil, FormatError(err)
2021-12-08 23:43:14 +08:00
}
2022-02-03 15:32:03 +08:00
2022-05-19 18:32:04 +08:00
return userRawList, nil
2021-12-08 23:43:14 +08:00
}
2022-07-26 21:41:20 +08:00
2022-08-07 09:23:46 +08:00
func deleteUser(ctx context.Context, tx *sql.Tx, delete *api.UserDelete) error {
result, err := tx.ExecContext(ctx, `
2022-07-26 22:32:26 +08:00
DELETE FROM user WHERE id = ?
`, delete.ID)
if err != nil {
2022-07-26 21:41:20 +08:00
return FormatError(err)
}
rows, _ := result.RowsAffected()
if rows == 0 {
return &common.Error{Code: common.NotFound, Err: fmt.Errorf("user ID not found: %d", delete.ID)}
}
2022-07-26 21:41:20 +08:00
return nil
}