mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
73 lines
1.2 KiB
Go
73 lines
1.2 KiB
Go
package data
|
|
|
|
import (
|
|
"database/sql"
|
|
"errors"
|
|
)
|
|
|
|
type Timer struct {
|
|
ID int `json:"id"`
|
|
Name string `json:"name"`
|
|
Text string `json:"text"`
|
|
Channel string `json:"channel"`
|
|
Repeat string `json:"repeat"`
|
|
}
|
|
|
|
type TimerModel struct {
|
|
DB *sql.DB
|
|
}
|
|
|
|
func (t TimerModel) Get(name string) (*Timer, error) {
|
|
query := `
|
|
SELECT id, name, text, channel, repeat
|
|
FROM timers
|
|
WHERE name = $1
|
|
`
|
|
|
|
var timer Timer
|
|
|
|
err := t.DB.QueryRow(query, name).Scan(
|
|
&timer.ID,
|
|
&timer.Name,
|
|
&timer.Text,
|
|
&timer.Channel,
|
|
&timer.Repeat,
|
|
)
|
|
if err != nil {
|
|
switch {
|
|
case errors.Is(err, sql.ErrNoRows):
|
|
return nil, ErrRecordNotFound
|
|
default:
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
return &timer, nil
|
|
}
|
|
|
|
// Insert adds a command into the database.
|
|
func (t TimerModel) Insert(timer *Timer) error {
|
|
query := `
|
|
INSERT into timers(name, text, channel, repeat)
|
|
VALUES ($1, $2, $3, $4)
|
|
RETURNING id;
|
|
`
|
|
|
|
args := []interface{}{timer.Name, timer.Text, timer.Channel, timer.Repeat}
|
|
|
|
result, err := t.DB.Exec(query, args...)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
rowsAffected, err := result.RowsAffected()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if rowsAffected == 0 {
|
|
return ErrCommandRecordAlreadyExists
|
|
}
|
|
|
|
return nil
|
|
}
|