350 lines
8.6 KiB
Go
350 lines
8.6 KiB
Go
// 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.
|
|
|
|
package storage
|
|
|
|
import (
|
|
"database/sql"
|
|
"errors"
|
|
"fmt"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/lib/pq/hstore"
|
|
|
|
"github.com/miniflux/miniflux/helper"
|
|
"github.com/miniflux/miniflux/model"
|
|
|
|
"golang.org/x/crypto/bcrypt"
|
|
)
|
|
|
|
// SetLastLogin updates the last login date of a user.
|
|
func (s *Storage) SetLastLogin(userID int64) error {
|
|
defer helper.ExecutionTime(time.Now(), fmt.Sprintf("[Storage:SetLastLogin] userID=%d", userID))
|
|
query := "UPDATE users SET last_login_at=now() WHERE id=$1"
|
|
_, err := s.db.Exec(query, userID)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to update last login date: %v", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// UserExists checks if a user exists by using the given username.
|
|
func (s *Storage) UserExists(username string) bool {
|
|
defer helper.ExecutionTime(time.Now(), fmt.Sprintf("[Storage:UserExists] username=%s", username))
|
|
|
|
var result int
|
|
s.db.QueryRow(`SELECT count(*) as c FROM users WHERE username=$1`, username).Scan(&result)
|
|
return result >= 1
|
|
}
|
|
|
|
// AnotherUserExists checks if another user exists with the given username.
|
|
func (s *Storage) AnotherUserExists(userID int64, username string) bool {
|
|
defer helper.ExecutionTime(time.Now(), fmt.Sprintf("[Storage:AnotherUserExists] userID=%d, username=%s", userID, username))
|
|
|
|
var result int
|
|
s.db.QueryRow(`SELECT count(*) as c FROM users WHERE id != $1 AND username=$2`, userID, username).Scan(&result)
|
|
return result >= 1
|
|
}
|
|
|
|
// CreateUser creates a new user.
|
|
func (s *Storage) CreateUser(user *model.User) (err error) {
|
|
defer helper.ExecutionTime(time.Now(), fmt.Sprintf("[Storage:CreateUser] username=%s", user.Username))
|
|
password := ""
|
|
extra := hstore.Hstore{Map: make(map[string]sql.NullString)}
|
|
|
|
if user.Password != "" {
|
|
password, err = hashPassword(user.Password)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
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)
|
|
VALUES
|
|
($1, $2, $3, $4)
|
|
RETURNING id, language, theme, timezone`
|
|
|
|
err = s.db.QueryRow(query, strings.ToLower(user.Username), password, user.IsAdmin, extra).Scan(
|
|
&user.ID,
|
|
&user.Language,
|
|
&user.Theme,
|
|
&user.Timezone,
|
|
)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to create user: %v", err)
|
|
}
|
|
|
|
s.CreateCategory(&model.Category{Title: "All", UserID: user.ID})
|
|
s.CreateIntegration(user.ID)
|
|
return nil
|
|
}
|
|
|
|
// UpdateExtraField updates an extra field of the given user.
|
|
func (s *Storage) UpdateExtraField(userID int64, field, value string) error {
|
|
query := fmt.Sprintf(`UPDATE users SET extra = hstore('%s', $1) WHERE id=$2`, field)
|
|
_, err := s.db.Exec(query, value, userID)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to update user extra field: %v", err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// RemoveExtraField deletes an extra field for the given user.
|
|
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 {
|
|
return fmt.Errorf("unable to remove user extra field: %v", err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// UpdateUser updates a user.
|
|
func (s *Storage) UpdateUser(user *model.User) error {
|
|
defer helper.ExecutionTime(time.Now(), fmt.Sprintf("[Storage:UpdateUser] userID=%d", user.ID))
|
|
|
|
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
|
|
WHERE id=$8`
|
|
|
|
_, err = s.db.Exec(
|
|
query,
|
|
user.Username,
|
|
hashedPassword,
|
|
user.IsAdmin,
|
|
user.Theme,
|
|
user.Language,
|
|
user.Timezone,
|
|
user.EntryDirection,
|
|
user.ID,
|
|
)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to update user: %v", err)
|
|
}
|
|
} else {
|
|
query := `UPDATE users SET
|
|
username=$1,
|
|
is_admin=$2,
|
|
theme=$3,
|
|
language=$4,
|
|
timezone=$5,
|
|
entry_direction=$6
|
|
WHERE id=$7`
|
|
|
|
_, err := s.db.Exec(
|
|
query,
|
|
user.Username,
|
|
user.IsAdmin,
|
|
user.Theme,
|
|
user.Language,
|
|
user.Timezone,
|
|
user.EntryDirection,
|
|
user.ID,
|
|
)
|
|
|
|
if err != nil {
|
|
return fmt.Errorf("unable to update user: %v", err)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// UserByID finds a user by the ID.
|
|
func (s *Storage) UserByID(userID int64) (*model.User, error) {
|
|
defer helper.ExecutionTime(time.Now(), fmt.Sprintf("[Storage:UserByID] userID=%d", userID))
|
|
query := `SELECT
|
|
id, username, is_admin, theme, language, timezone, entry_direction, extra
|
|
FROM users
|
|
WHERE id = $1`
|
|
|
|
var user model.User
|
|
var extra hstore.Hstore
|
|
row := s.db.QueryRow(query, userID)
|
|
err := row.Scan(
|
|
&user.ID,
|
|
&user.Username,
|
|
&user.IsAdmin,
|
|
&user.Theme,
|
|
&user.Language,
|
|
&user.Timezone,
|
|
&user.EntryDirection,
|
|
&extra,
|
|
)
|
|
if err == sql.ErrNoRows {
|
|
return nil, nil
|
|
} else if err != nil {
|
|
return nil, fmt.Errorf("unable to fetch user: %v", err)
|
|
}
|
|
|
|
user.Extra = make(map[string]string)
|
|
for key, value := range extra.Map {
|
|
if value.Valid {
|
|
user.Extra[key] = value.String
|
|
}
|
|
}
|
|
|
|
return &user, nil
|
|
}
|
|
|
|
// UserByUsername finds a user by the username.
|
|
func (s *Storage) UserByUsername(username string) (*model.User, error) {
|
|
defer helper.ExecutionTime(time.Now(), fmt.Sprintf("[Storage:UserByUsername] username=%s", username))
|
|
query := `SELECT
|
|
id, username, is_admin, theme, language, timezone, entry_direction
|
|
FROM users
|
|
WHERE username=LOWER($1)`
|
|
|
|
var user model.User
|
|
row := s.db.QueryRow(query, username)
|
|
err := row.Scan(
|
|
&user.ID,
|
|
&user.Username,
|
|
&user.IsAdmin,
|
|
&user.Theme,
|
|
&user.Language,
|
|
&user.Timezone,
|
|
&user.EntryDirection,
|
|
)
|
|
if err == sql.ErrNoRows {
|
|
return nil, nil
|
|
} else if err != nil {
|
|
return nil, fmt.Errorf("unable to fetch user: %v", err)
|
|
}
|
|
|
|
return &user, nil
|
|
}
|
|
|
|
// UserByExtraField finds a user by an extra field value.
|
|
func (s *Storage) UserByExtraField(field, value string) (*model.User, error) {
|
|
defer helper.ExecutionTime(time.Now(), fmt.Sprintf("[Storage:UserByExtraField] field=%s", field))
|
|
query := `SELECT
|
|
id, username, is_admin, theme, language, timezone, entry_direction
|
|
FROM users
|
|
WHERE extra->$1=$2`
|
|
|
|
var user model.User
|
|
row := s.db.QueryRow(query, field, value)
|
|
err := row.Scan(
|
|
&user.ID,
|
|
&user.Username,
|
|
&user.IsAdmin,
|
|
&user.Theme,
|
|
&user.Language,
|
|
&user.Timezone,
|
|
&user.EntryDirection,
|
|
)
|
|
if err == sql.ErrNoRows {
|
|
return nil, nil
|
|
} else if err != nil {
|
|
return nil, fmt.Errorf("unable to fetch user: %v", err)
|
|
}
|
|
|
|
return &user, nil
|
|
}
|
|
|
|
// RemoveUser deletes a user.
|
|
func (s *Storage) RemoveUser(userID int64) error {
|
|
defer helper.ExecutionTime(time.Now(), fmt.Sprintf("[Storage:RemoveUser] userID=%d", userID))
|
|
|
|
result, err := s.db.Exec("DELETE FROM users WHERE id = $1", userID)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to remove this user: %v", err)
|
|
}
|
|
|
|
count, err := result.RowsAffected()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to remove this user: %v", err)
|
|
}
|
|
|
|
if count == 0 {
|
|
return errors.New("nothing has been removed")
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Users returns all users.
|
|
func (s *Storage) Users() (model.Users, error) {
|
|
defer helper.ExecutionTime(time.Now(), "[Storage:Users]")
|
|
query := `SELECT
|
|
id, username, is_admin, theme, language, timezone, last_login_at
|
|
FROM users
|
|
ORDER BY username ASC`
|
|
|
|
rows, err := s.db.Query(query)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("unable to fetch users: %v", err)
|
|
}
|
|
defer rows.Close()
|
|
|
|
var users model.Users
|
|
for rows.Next() {
|
|
var user model.User
|
|
err := rows.Scan(
|
|
&user.ID,
|
|
&user.Username,
|
|
&user.IsAdmin,
|
|
&user.Theme,
|
|
&user.Language,
|
|
&user.Timezone,
|
|
&user.LastLoginAt,
|
|
)
|
|
|
|
if err != nil {
|
|
return nil, fmt.Errorf("unable to fetch users row: %v", err)
|
|
}
|
|
|
|
users = append(users, &user)
|
|
}
|
|
|
|
return users, nil
|
|
}
|
|
|
|
// CheckPassword validate the hashed password.
|
|
func (s *Storage) CheckPassword(username, password string) error {
|
|
defer helper.ExecutionTime(time.Now(), "[Storage:CheckPassword]")
|
|
|
|
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 {
|
|
return fmt.Errorf("unable to find this user: %s", username)
|
|
} else if err != nil {
|
|
return fmt.Errorf("unable to fetch user: %v", err)
|
|
}
|
|
|
|
if err := bcrypt.CompareHashAndPassword([]byte(hash), []byte(password)); err != nil {
|
|
return fmt.Errorf(`invalid password for "%s" (%v)`, username, err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func hashPassword(password string) (string, error) {
|
|
bytes, err := bcrypt.GenerateFromPassword([]byte(password), bcrypt.DefaultCost)
|
|
return string(bytes), err
|
|
}
|