2022-09-09 20:03:47 +02:00
package store
import (
2023-01-12 20:00:16 +01:00
"fmt"
"strings"
2023-01-12 17:04:56 +01:00
"time"
2022-09-09 20:03:47 +02:00
"github.com/jmoiron/sqlx"
"github.com/pkg/errors"
)
type AccountRequest struct {
Model
Token string
Email string
SourceAddress string
2023-03-09 21:08:59 +01:00
Deleted bool
2022-09-09 20:03:47 +02:00
}
2023-03-22 20:17:27 +01:00
func ( str * Store ) CreateAccountRequest ( ar * AccountRequest , tx * sqlx . Tx ) ( int , error ) {
2022-10-21 15:31:12 +02:00
stmt , err := tx . Prepare ( "insert into account_requests (token, email, source_address) values ($1, $2, $3) returning id" )
2022-09-09 20:03:47 +02:00
if err != nil {
return 0 , errors . Wrap ( err , "error preparing account_requests insert statement" )
}
2022-10-21 15:31:12 +02:00
var id int
if err := stmt . QueryRow ( ar . Token , ar . Email , ar . SourceAddress ) . Scan ( & id ) ; err != nil {
2022-09-09 20:03:47 +02:00
return 0 , errors . Wrap ( err , "error executing account_requests insert statement" )
}
2022-10-21 15:31:12 +02:00
return id , nil
2022-09-09 20:03:47 +02:00
}
2023-03-22 20:17:27 +01:00
func ( str * Store ) GetAccountRequest ( id int , tx * sqlx . Tx ) ( * AccountRequest , error ) {
2022-09-09 20:03:47 +02:00
ar := & AccountRequest { }
2022-10-21 15:31:12 +02:00
if err := tx . QueryRowx ( "select * from account_requests where id = $1" , id ) . StructScan ( ar ) ; err != nil {
2022-09-09 20:03:47 +02:00
return nil , errors . Wrap ( err , "error selecting account_request by id" )
}
return ar , nil
}
2023-03-22 20:17:27 +01:00
func ( str * Store ) FindAccountRequestWithToken ( token string , tx * sqlx . Tx ) ( * AccountRequest , error ) {
2022-09-09 20:03:47 +02:00
ar := & AccountRequest { }
2023-03-10 16:57:59 +01:00
if err := tx . QueryRowx ( "select * from account_requests where token = $1 and not deleted" , token ) . StructScan ( ar ) ; err != nil {
2022-09-09 20:03:47 +02:00
return nil , errors . Wrap ( err , "error selecting account_request by token" )
}
return ar , nil
}
2022-09-20 20:23:01 +02:00
2023-03-22 20:17:27 +01:00
func ( str * Store ) FindExpiredAccountRequests ( before time . Time , limit int , tx * sqlx . Tx ) ( [ ] * AccountRequest , error ) {
2023-01-12 22:00:09 +01:00
var sql string
2023-03-22 20:17:27 +01:00
switch str . cfg . Type {
2023-01-12 22:00:09 +01:00
case "postgres" :
2023-03-09 21:29:15 +01:00
sql = "select * from account_requests where created_at < $1 and not deleted limit %d for update"
2023-01-12 22:00:09 +01:00
case "sqlite3" :
2023-03-09 21:29:15 +01:00
sql = "select * from account_requests where created_at < $1 and not deleted limit %d"
2023-01-12 22:00:09 +01:00
default :
2023-03-22 20:17:27 +01:00
return nil , errors . Errorf ( "unknown database type '%v'" , str . cfg . Type )
2023-01-12 22:00:09 +01:00
}
rows , err := tx . Queryx ( fmt . Sprintf ( sql , limit ) , before )
2023-01-12 20:00:16 +01:00
if err != nil {
return nil , errors . Wrap ( err , "error selecting expired account_requests" )
}
var ars [ ] * AccountRequest
for rows . Next ( ) {
ar := & AccountRequest { }
if err := rows . StructScan ( ar ) ; err != nil {
return nil , errors . Wrap ( err , "error scanning account_request" )
}
ars = append ( ars , ar )
}
return ars , nil
}
2023-03-22 20:17:27 +01:00
func ( str * Store ) FindAccountRequestWithEmail ( email string , tx * sqlx . Tx ) ( * AccountRequest , error ) {
2022-09-20 20:23:01 +02:00
ar := & AccountRequest { }
2023-03-10 16:57:59 +01:00
if err := tx . QueryRowx ( "select * from account_requests where email = $1 and not deleted" , email ) . StructScan ( ar ) ; err != nil {
2022-09-20 20:23:01 +02:00
return nil , errors . Wrap ( err , "error selecting account_request by email" )
}
return ar , nil
}
2023-03-22 20:17:27 +01:00
func ( str * Store ) DeleteAccountRequest ( id int , tx * sqlx . Tx ) error {
2023-03-09 21:29:15 +01:00
stmt , err := tx . Prepare ( "update account_requests set deleted = true, updated_at = current_timestamp where id = $1" )
2022-09-20 20:23:01 +02:00
if err != nil {
return errors . Wrap ( err , "error preparing account_requests delete statement" )
}
_ , err = stmt . Exec ( id )
if err != nil {
return errors . Wrap ( err , "error executing account_requests delete statement" )
}
return nil
}
2023-01-12 17:04:56 +01:00
2023-03-22 20:17:27 +01:00
func ( str * Store ) DeleteMultipleAccountRequests ( ids [ ] int , tx * sqlx . Tx ) error {
2023-01-12 20:00:16 +01:00
if len ( ids ) == 0 {
return nil
}
anyIds := make ( [ ] any , len ( ids ) )
indexes := make ( [ ] string , len ( ids ) )
for i , id := range ids {
anyIds [ i ] = id
indexes [ i ] = fmt . Sprintf ( "$%d" , i + 1 )
}
2023-03-09 21:29:15 +01:00
stmt , err := tx . Prepare ( fmt . Sprintf ( "update account_requests set deleted = true, updated_at = current_timestamp where id in (%s)" , strings . Join ( indexes , "," ) ) )
2023-01-12 17:04:56 +01:00
if err != nil {
2023-01-12 20:00:16 +01:00
return errors . Wrap ( err , "error preparing account_requests delete multiple statement" )
2023-01-12 17:04:56 +01:00
}
2023-01-12 20:00:16 +01:00
_ , err = stmt . Exec ( anyIds ... )
2023-01-12 17:04:56 +01:00
if err != nil {
2023-01-12 20:00:16 +01:00
return errors . Wrap ( err , "error executing account_requests delete multiple statement" )
2023-01-12 17:04:56 +01:00
}
return nil
}