intake/core/source.go

126 lines
2.3 KiB
Go
Raw Normal View History

2025-01-16 22:53:04 +00:00
package core
2025-01-16 19:46:37 +00:00
import (
"database/sql"
2025-01-17 06:02:03 +00:00
"errors"
2025-01-16 21:46:30 +00:00
"fmt"
2025-01-16 19:46:37 +00:00
_ "github.com/mattn/go-sqlite3"
)
func AddSource(db *DB, name string) error {
2025-01-16 21:46:30 +00:00
_, err := db.Exec(`
insert into sources (name)
values (?)
`, name)
return err
}
2025-01-23 15:55:11 +00:00
func GetSources(db *DB) ([]string, error) {
rows, err := db.Query(`
select name
from sources
`)
if err != nil {
return nil, err
}
var names []string
for rows.Next() {
var name string
if err = rows.Scan(&name); err != nil {
return nil, err
}
names = append(names, name)
}
return names, nil
}
func DeleteSource(db *DB, name string) error {
2025-01-16 21:46:30 +00:00
_, err := db.Exec(`
2025-01-23 15:55:11 +00:00
delete from sources
where name = ?
2025-01-16 21:46:30 +00:00
`, name)
return err
}
func AddItem(
db *DB,
2025-01-16 21:46:30 +00:00
source string,
id string,
title string,
author string,
body string,
link string,
time int,
) error {
_, err := db.Exec(`
insert into items (source, id, active, title, author, body, link, time)
values (?, ?, ?, ?, ?, ?, ?, ?)
`, source, id, true, title, author, body, link, time)
return err
}
2025-01-17 06:02:03 +00:00
// Deactivate an item, returning its previous active state.
func DeactivateItem(db *DB, source string, id string) (bool, error) {
2025-01-17 06:02:03 +00:00
row := db.QueryRow(`
select active
from items
where source = ? and id = ?
`, source, id)
var active bool
err := row.Scan(&active)
if err != nil && errors.Is(err, sql.ErrNoRows) {
return false, fmt.Errorf("item %s/%s not found", source, id)
}
_, err = db.Exec(`
2025-01-16 21:46:30 +00:00
update items
set active = 0
where source = ? and id = ?
`, source, id)
if err != nil {
2025-01-17 06:02:03 +00:00
return false, err
2025-01-16 21:46:30 +00:00
}
2025-01-17 06:02:03 +00:00
return active, nil
2025-01-16 21:46:30 +00:00
}
2025-01-23 19:34:44 +00:00
func getItems(db *DB, query string, args ...any) ([]Item, error) {
rows, err := db.Query(query, args...)
2025-01-17 15:05:57 +00:00
if err != nil {
return nil, err
}
var items []Item
for rows.Next() {
var item Item
2025-01-23 17:08:17 +00:00
err = rows.Scan(&item.Source, &item.Id, &item.Created, &item.Active, &item.Title, &item.Author, &item.Body, &item.Link, &item.Time)
if err != nil {
return nil, err
}
2025-01-17 15:05:57 +00:00
items = append(items, item)
}
return items, nil
}
2025-01-23 19:34:44 +00:00
func GetAllActiveItems(db *DB) ([]Item, error) {
return getItems(db, `
select
source, id, created, active, title, author, body, link, time
from items
where active <> 0
`)
}
func GetActiveItemsForSource(db *DB, source string) ([]Item, error) {
2025-01-23 19:34:44 +00:00
return getItems(db, `
2025-01-16 21:46:30 +00:00
select
source, id, created, active, title, author, body, link, time
2025-01-16 21:46:30 +00:00
from items
where
source = ?
and active <> 0
`, source)
}