mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
100 lines
1.6 KiB
Go
100 lines
1.6 KiB
Go
package data
|
|
|
|
import (
|
|
"database/sql"
|
|
"errors"
|
|
)
|
|
|
|
type Command struct {
|
|
ID int `json:"id"`
|
|
Name string `json:"name"`
|
|
Text string `json:"text"`
|
|
Permission int `json:"permission"`
|
|
}
|
|
|
|
type CommandModel struct {
|
|
DB *sql.DB
|
|
}
|
|
|
|
func (c CommandModel) Get(name string) (*Command, error) {
|
|
query := `
|
|
SELECT id, name, text, permission
|
|
FROM commands
|
|
WHERE name = $1`
|
|
|
|
var command Command
|
|
|
|
err := c.DB.QueryRow(query, name).Scan(
|
|
&command.ID,
|
|
&command.Name,
|
|
&command.Text,
|
|
&command.Permission,
|
|
)
|
|
|
|
if err != nil {
|
|
switch {
|
|
case errors.Is(err, sql.ErrNoRows):
|
|
return nil, ErrRecordNotFound
|
|
default:
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
return &command, nil
|
|
}
|
|
|
|
func (c CommandModel) Insert(name, text string) error {
|
|
perms := 0
|
|
query := `
|
|
INSERT into commands(name, text, permission)
|
|
VALUES ($1, $2, $3)
|
|
ON CONFLICT (name)
|
|
DO NOTHING
|
|
RETURNING id;
|
|
`
|
|
|
|
args := []interface{}{name, text, perms}
|
|
|
|
result, err := c.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
|
|
}
|
|
|
|
func (c CommandModel) Delete(name string) error {
|
|
// Prepare the statement.
|
|
query := `
|
|
DELETE FROM commands
|
|
WHERE name = $1`
|
|
|
|
// Execute the query returning the number of affected rows.
|
|
result, err := c.DB.Exec(query, name)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Check how many rows were affected.
|
|
rowsAffected, err := result.RowsAffected()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// We want atleast 1, if it is 0 the entry did not exist.
|
|
if rowsAffected == 0 {
|
|
return ErrRecordNotFound
|
|
}
|
|
|
|
return nil
|
|
}
|