2022-07-25 22:03:51 +02:00
|
|
|
package store
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/jmoiron/sqlx"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Account struct {
|
|
|
|
Model
|
|
|
|
Username string
|
|
|
|
Password string
|
|
|
|
Token string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (self *Store) CreateAccount(a *Account, tx *sqlx.Tx) (int, error) {
|
|
|
|
stmt, err := tx.Prepare("insert into accounts (username, password, token) values (?, ?, ?)")
|
|
|
|
if err != nil {
|
|
|
|
return 0, errors.Wrap(err, "error preparing accounts insert statement")
|
|
|
|
}
|
|
|
|
res, err := stmt.Exec(a.Username, a.Password, a.Token)
|
|
|
|
if err != nil {
|
|
|
|
return 0, errors.Wrap(err, "error executing accounts insert statement")
|
|
|
|
}
|
|
|
|
id, err := res.LastInsertId()
|
|
|
|
if err != nil {
|
|
|
|
return 0, errors.Wrap(err, "error retrieving last accounts insert id")
|
|
|
|
}
|
|
|
|
return int(id), nil
|
|
|
|
}
|
|
|
|
|
2022-07-29 19:27:00 +02:00
|
|
|
func (self *Store) GetAccount(id int, tx *sqlx.Tx) (*Account, error) {
|
|
|
|
a := &Account{}
|
|
|
|
if err := tx.QueryRowx("select * from accounts where id = ?", id).StructScan(a); err != nil {
|
|
|
|
return nil, errors.Wrap(err, "error selecting account by id")
|
|
|
|
}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2022-08-02 19:23:31 +02:00
|
|
|
func (self *Store) FindAccountWithUsername(username string, tx *sqlx.Tx) (*Account, error) {
|
|
|
|
a := &Account{}
|
|
|
|
if err := tx.QueryRowx("select * from accounts where username = ?", username).StructScan(a); err != nil {
|
|
|
|
return nil, errors.Wrap(err, "error selecting account by username")
|
|
|
|
}
|
|
|
|
return a, nil
|
|
|
|
}
|
|
|
|
|
2022-07-25 22:03:51 +02:00
|
|
|
func (self *Store) FindAccountWithToken(token string, tx *sqlx.Tx) (*Account, error) {
|
|
|
|
a := &Account{}
|
|
|
|
if err := tx.QueryRowx("select * from accounts where token = ?", token).StructScan(a); err != nil {
|
|
|
|
return nil, errors.Wrap(err, "error selecting account by token")
|
|
|
|
}
|
|
|
|
return a, nil
|
|
|
|
}
|