miniflux-v2/storage/user.go

462 lines
10 KiB
Go
Raw Normal View History

2017-11-20 06:10:04 +01:00
// Copyright 2017 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
2018-08-25 06:51:50 +02:00
package storage // import "miniflux.app/storage"
2017-11-20 06:10:04 +01:00
import (
"database/sql"
"fmt"
"strings"
2018-08-25 06:51:50 +02:00
"miniflux.app/model"
2017-11-23 07:22:33 +01:00
"github.com/lib/pq/hstore"
2017-11-20 06:10:04 +01:00
"golang.org/x/crypto/bcrypt"
)
2017-11-28 06:30:04 +01:00
// SetLastLogin updates the last login date of a user.
2017-11-20 06:10:04 +01:00
func (s *Storage) SetLastLogin(userID int64) error {
2019-10-30 06:48:07 +01:00
query := `UPDATE users SET last_login_at=now() WHERE id=$1`
2017-11-20 06:10:04 +01:00
_, err := s.db.Exec(query, userID)
if err != nil {
2019-10-30 06:48:07 +01:00
return fmt.Errorf(`store: unable to update last login date: %v`, err)
2017-11-20 06:10:04 +01:00
}
return nil
}
2017-11-28 06:30:04 +01:00
// UserExists checks if a user exists by using the given username.
2017-11-20 06:10:04 +01:00
func (s *Storage) UserExists(username string) bool {
2019-10-30 06:48:07 +01:00
var result bool
s.db.QueryRow(`SELECT true FROM users WHERE username=LOWER($1)`, username).Scan(&result)
return result
2017-11-20 06:10:04 +01:00
}
2017-11-28 06:30:04 +01:00
// AnotherUserExists checks if another user exists with the given username.
2017-11-20 06:10:04 +01:00
func (s *Storage) AnotherUserExists(userID int64, username string) bool {
2019-10-30 06:48:07 +01:00
var result bool
s.db.QueryRow(`SELECT true FROM users WHERE id != $1 AND username=LOWER($2)`, userID, username).Scan(&result)
return result
2017-11-20 06:10:04 +01:00
}
2017-11-28 06:30:04 +01:00
// CreateUser creates a new user.
2017-11-23 07:22:33 +01:00
func (s *Storage) CreateUser(user *model.User) (err error) {
password := ""
extra := hstore.Hstore{Map: make(map[string]sql.NullString)}
2017-11-20 06:10:04 +01:00
2017-11-23 07:22:33 +01:00
if user.Password != "" {
password, err = hashPassword(user.Password)
if err != nil {
return err
}
2017-11-20 06:10:04 +01:00
}
2017-11-23 07:22:33 +01:00
if len(user.Extra) > 0 {
for key, value := range user.Extra {
extra.Map[key] = sql.NullString{String: value, Valid: true}
}
}
query := `
INSERT INTO users
(username, password, is_admin, extra)
2017-11-25 19:40:23 +01:00
VALUES
(LOWER($1), $2, $3, $4)
RETURNING
2020-07-17 04:46:24 +02:00
id, username, is_admin, language, theme, timezone, entry_direction, entries_per_page, keyboard_shortcuts, show_reading_time
`
2017-11-25 19:40:23 +01:00
err = s.db.QueryRow(query, user.Username, password, user.IsAdmin, extra).Scan(
2017-11-25 19:40:23 +01:00
&user.ID,
&user.Username,
&user.IsAdmin,
2017-11-25 19:40:23 +01:00
&user.Language,
&user.Theme,
&user.Timezone,
2017-12-25 03:04:34 +01:00
&user.EntryDirection,
&user.EntriesPerPage,
&user.KeyboardShortcuts,
2020-07-17 04:46:24 +02:00
&user.ShowReadingTime,
2017-11-25 19:40:23 +01:00
)
2017-11-20 06:10:04 +01:00
if err != nil {
2019-10-30 06:48:07 +01:00
return fmt.Errorf(`store: unable to create user: %v`, err)
2017-11-20 06:10:04 +01:00
}
s.CreateCategory(&model.Category{Title: "All", UserID: user.ID})
2017-12-03 04:32:14 +01:00
s.CreateIntegration(user.ID)
2017-11-20 06:10:04 +01:00
return nil
}
2017-11-28 06:30:04 +01:00
// UpdateExtraField updates an extra field of the given user.
2017-11-25 01:09:10 +01:00
func (s *Storage) UpdateExtraField(userID int64, field, value string) error {
query := fmt.Sprintf(`UPDATE users SET extra = extra || hstore('%s', $1) WHERE id=$2`, field)
2017-11-25 01:09:10 +01:00
_, err := s.db.Exec(query, value, userID)
if err != nil {
2019-10-30 06:48:07 +01:00
return fmt.Errorf(`store: unable to update user extra field: %v`, err)
2017-11-25 01:09:10 +01:00
}
return nil
}
2017-11-28 06:30:04 +01:00
// RemoveExtraField deletes an extra field for the given user.
2017-11-25 01:09:10 +01:00
func (s *Storage) RemoveExtraField(userID int64, field string) error {
query := `UPDATE users SET extra = delete(extra, $1) WHERE id=$2`
_, err := s.db.Exec(query, field, userID)
if err != nil {
2019-10-30 06:48:07 +01:00
return fmt.Errorf(`store: unable to remove user extra field: %v`, err)
2017-11-25 01:09:10 +01:00
}
return nil
}
2017-11-28 06:30:04 +01:00
// UpdateUser updates a user.
2017-11-20 06:10:04 +01:00
func (s *Storage) UpdateUser(user *model.User) error {
if user.Password != "" {
hashedPassword, err := hashPassword(user.Password)
if err != nil {
return err
}
query := `
UPDATE users SET
username=LOWER($1),
password=$2,
is_admin=$3,
theme=$4,
language=$5,
timezone=$6,
entry_direction=$7,
entries_per_page=$8,
2020-07-17 04:46:24 +02:00
keyboard_shortcuts=$9,
show_reading_time=$10
WHERE
2020-07-17 04:46:24 +02:00
id=$11
`
2017-12-03 02:04:01 +01:00
_, err = s.db.Exec(
query,
user.Username,
hashedPassword,
user.IsAdmin,
user.Theme,
user.Language,
user.Timezone,
user.EntryDirection,
user.EntriesPerPage,
user.KeyboardShortcuts,
2020-07-17 04:46:24 +02:00
user.ShowReadingTime,
2017-12-03 02:04:01 +01:00
user.ID,
)
2017-11-20 06:10:04 +01:00
if err != nil {
2019-10-30 06:48:07 +01:00
return fmt.Errorf(`store: unable to update user: %v`, err)
2017-11-20 06:10:04 +01:00
}
} else {
query := `
UPDATE users SET
username=LOWER($1),
is_admin=$2,
theme=$3,
language=$4,
timezone=$5,
entry_direction=$6,
entries_per_page=$7,
2020-07-17 04:46:24 +02:00
keyboard_shortcuts=$8,
show_reading_time=$9
WHERE
2020-07-17 04:46:24 +02:00
id=$10
`
2017-12-03 02:04:01 +01:00
_, err := s.db.Exec(
query,
user.Username,
user.IsAdmin,
user.Theme,
user.Language,
user.Timezone,
user.EntryDirection,
user.EntriesPerPage,
user.KeyboardShortcuts,
2020-07-17 04:46:24 +02:00
user.ShowReadingTime,
2017-12-03 02:04:01 +01:00
user.ID,
)
2017-11-20 06:10:04 +01:00
if err != nil {
2019-10-30 06:48:07 +01:00
return fmt.Errorf(`store: unable to update user: %v`, err)
2017-11-20 06:10:04 +01:00
}
}
2020-03-31 01:54:02 +02:00
if err := s.UpdateExtraField(user.ID, "custom_css", user.Extra["custom_css"]); err != nil {
return fmt.Errorf(`store: unable to update user custom css: %v`, err)
2017-11-20 06:10:04 +01:00
}
return nil
}
// UserLanguage returns the language of the given user.
func (s *Storage) UserLanguage(userID int64) (language string) {
err := s.db.QueryRow(`SELECT language FROM users WHERE id = $1`, userID).Scan(&language)
if err != nil {
return "en_US"
}
return language
}
2017-11-28 06:30:04 +01:00
// UserByID finds a user by the ID.
func (s *Storage) UserByID(userID int64) (*model.User, error) {
query := `
SELECT
2019-10-30 06:48:07 +01:00
id,
username,
is_admin,
theme,
language,
timezone,
entry_direction,
entries_per_page,
2019-10-30 06:48:07 +01:00
keyboard_shortcuts,
2020-07-17 04:46:24 +02:00
show_reading_time,
2019-10-30 06:48:07 +01:00
last_login_at,
extra
FROM
users
WHERE
id = $1
`
2017-12-29 22:53:02 +01:00
return s.fetchUser(query, userID)
2017-11-20 06:10:04 +01:00
}
2017-11-28 06:30:04 +01:00
// UserByUsername finds a user by the username.
func (s *Storage) UserByUsername(username string) (*model.User, error) {
query := `
SELECT
2019-10-30 06:48:07 +01:00
id,
username,
is_admin,
theme,
language,
timezone,
entry_direction,
entries_per_page,
2019-10-30 06:48:07 +01:00
keyboard_shortcuts,
2020-07-17 04:46:24 +02:00
show_reading_time,
2019-10-30 06:48:07 +01:00
last_login_at,
extra
FROM
users
WHERE
username=LOWER($1)
`
2017-12-29 22:53:02 +01:00
return s.fetchUser(query, username)
2017-11-23 07:22:33 +01:00
}
2017-11-28 06:30:04 +01:00
// UserByExtraField finds a user by an extra field value.
func (s *Storage) UserByExtraField(field, value string) (*model.User, error) {
query := `
SELECT
2019-10-30 06:48:07 +01:00
id,
username,
is_admin,
theme,
language,
timezone,
entry_direction,
entries_per_page,
2019-10-30 06:48:07 +01:00
keyboard_shortcuts,
2020-07-17 04:46:24 +02:00
show_reading_time,
2019-10-30 06:48:07 +01:00
last_login_at,
extra
FROM
users
WHERE
extra->$1=$2
`
2017-12-29 22:53:02 +01:00
return s.fetchUser(query, field, value)
}
2020-03-02 02:38:29 +01:00
// UserByAPIKey returns a User from an API Key.
func (s *Storage) UserByAPIKey(token string) (*model.User, error) {
query := `
SELECT
u.id,
u.username,
u.is_admin,
u.theme,
u.language,
u.timezone,
u.entry_direction,
u.entries_per_page,
2020-03-02 02:38:29 +01:00
u.keyboard_shortcuts,
2020-07-17 04:46:24 +02:00
u.show_reading_time,
2020-03-02 02:38:29 +01:00
u.last_login_at,
u.extra
FROM
users u
LEFT JOIN
api_keys ON api_keys.user_id=u.id
WHERE
api_keys.token = $1
`
return s.fetchUser(query, token)
}
2017-12-29 22:53:02 +01:00
func (s *Storage) fetchUser(query string, args ...interface{}) (*model.User, error) {
var extra hstore.Hstore
user := model.NewUser()
err := s.db.QueryRow(query, args...).Scan(
2017-12-03 02:04:01 +01:00
&user.ID,
&user.Username,
&user.IsAdmin,
&user.Theme,
&user.Language,
&user.Timezone,
&user.EntryDirection,
&user.EntriesPerPage,
&user.KeyboardShortcuts,
2020-07-17 04:46:24 +02:00
&user.ShowReadingTime,
2017-12-29 22:53:02 +01:00
&user.LastLoginAt,
&extra,
2017-12-03 02:04:01 +01:00
)
2017-12-29 22:53:02 +01:00
2017-11-23 07:22:33 +01:00
if err == sql.ErrNoRows {
return nil, nil
} else if err != nil {
2019-10-30 06:48:07 +01:00
return nil, fmt.Errorf(`store: unable to fetch user: %v`, err)
2017-11-20 06:10:04 +01:00
}
2017-12-29 22:53:02 +01:00
for key, value := range extra.Map {
if value.Valid {
user.Extra[key] = value.String
}
}
return user, nil
2017-11-20 06:10:04 +01:00
}
2017-11-28 06:30:04 +01:00
// RemoveUser deletes a user.
2017-11-20 06:10:04 +01:00
func (s *Storage) RemoveUser(userID int64) error {
ts, err := s.db.Begin()
2017-11-20 06:10:04 +01:00
if err != nil {
return fmt.Errorf(`store: unable to start transaction: %v`, err)
2017-11-20 06:10:04 +01:00
}
if _, err := ts.Exec(`DELETE FROM users WHERE id=$1`, userID); err != nil {
ts.Rollback()
return fmt.Errorf(`store: unable to remove user #%d: %v`, userID, err)
}
if _, err := ts.Exec(`DELETE FROM integrations WHERE user_id=$1`, userID); err != nil {
ts.Rollback()
return fmt.Errorf(`store: unable to remove integration settings for user #%d: %v`, userID, err)
2017-11-20 06:10:04 +01:00
}
if err := ts.Commit(); err != nil {
return fmt.Errorf(`store: unable to commit transaction: %v`, err)
2017-11-20 06:10:04 +01:00
}
return nil
}
2017-11-28 06:30:04 +01:00
// Users returns all users.
func (s *Storage) Users() (model.Users, error) {
2017-12-29 22:53:02 +01:00
query := `
SELECT
2019-10-30 06:48:07 +01:00
id,
username,
is_admin,
theme,
language,
timezone,
entry_direction,
entries_per_page,
2019-10-30 06:48:07 +01:00
keyboard_shortcuts,
2020-07-17 04:46:24 +02:00
show_reading_time,
2019-10-30 06:48:07 +01:00
last_login_at,
extra
FROM
users
ORDER BY username ASC
`
2017-12-03 02:04:01 +01:00
rows, err := s.db.Query(query)
2017-11-20 06:10:04 +01:00
if err != nil {
2019-10-30 06:48:07 +01:00
return nil, fmt.Errorf(`store: unable to fetch users: %v`, err)
2017-11-20 06:10:04 +01:00
}
defer rows.Close()
2017-12-03 02:04:01 +01:00
var users model.Users
2017-11-20 06:10:04 +01:00
for rows.Next() {
2017-12-29 22:53:02 +01:00
var extra hstore.Hstore
user := model.NewUser()
2017-11-20 06:10:04 +01:00
err := rows.Scan(
&user.ID,
&user.Username,
&user.IsAdmin,
&user.Theme,
&user.Language,
&user.Timezone,
2017-12-29 22:53:02 +01:00
&user.EntryDirection,
&user.EntriesPerPage,
&user.KeyboardShortcuts,
2020-07-17 04:46:24 +02:00
&user.ShowReadingTime,
2017-11-20 06:10:04 +01:00
&user.LastLoginAt,
2017-12-29 22:53:02 +01:00
&extra,
2017-11-20 06:10:04 +01:00
)
if err != nil {
2019-10-30 06:48:07 +01:00
return nil, fmt.Errorf(`store: unable to fetch users row: %v`, err)
2017-11-20 06:10:04 +01:00
}
2017-12-29 22:53:02 +01:00
for key, value := range extra.Map {
if value.Valid {
user.Extra[key] = value.String
}
}
users = append(users, user)
2017-11-20 06:10:04 +01:00
}
return users, nil
}
2017-11-28 06:30:04 +01:00
// CheckPassword validate the hashed password.
2017-11-20 06:10:04 +01:00
func (s *Storage) CheckPassword(username, password string) error {
var hash string
username = strings.ToLower(username)
err := s.db.QueryRow("SELECT password FROM users WHERE username=$1", username).Scan(&hash)
if err == sql.ErrNoRows {
2019-10-30 06:48:07 +01:00
return fmt.Errorf(`store: unable to find this user: %s`, username)
2017-11-20 06:10:04 +01:00
} else if err != nil {
2019-10-30 06:48:07 +01:00
return fmt.Errorf(`store: unable to fetch user: %v`, err)
2017-11-20 06:10:04 +01:00
}
if err := bcrypt.CompareHashAndPassword([]byte(hash), []byte(password)); err != nil {
2019-10-30 06:48:07 +01:00
return fmt.Errorf(`store: invalid password for "%s" (%v)`, username, err)
2017-11-20 06:10:04 +01:00
}
return nil
}
// HasPassword returns true if the given user has a password defined.
func (s *Storage) HasPassword(userID int64) (bool, error) {
var result bool
query := `SELECT true FROM users WHERE id=$1 AND password <> ''`
err := s.db.QueryRow(query, userID).Scan(&result)
if err == sql.ErrNoRows {
return false, nil
} else if err != nil {
2019-10-30 06:48:07 +01:00
return false, fmt.Errorf(`store: unable to execute query: %v`, err)
}
if result {
return true, nil
}
return false, nil
}
2017-11-20 06:10:04 +01:00
func hashPassword(password string) (string, error) {
bytes, err := bcrypt.GenerateFromPassword([]byte(password), bcrypt.DefaultCost)
return string(bytes), err
}