2024-05-01 14:21:07 +00:00
|
|
|
use rusqlite::{Connection, Row};
|
2024-05-02 16:10:29 +00:00
|
|
|
use serde::Serialize;
|
2024-05-01 14:21:07 +00:00
|
|
|
|
|
|
|
use super::{
|
|
|
|
error::DataStoreError,
|
|
|
|
pagination::{Pagination, SortOrder},
|
|
|
|
};
|
|
|
|
|
2024-05-02 16:10:29 +00:00
|
|
|
#[derive(Debug, Serialize)]
|
2024-05-01 14:21:07 +00:00
|
|
|
pub struct Author {
|
|
|
|
pub id: i32,
|
|
|
|
pub name: String,
|
|
|
|
pub sort: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Author {
|
|
|
|
fn from_row(row: &Row<'_>) -> Result<Self, rusqlite::Error> {
|
|
|
|
Ok(Self {
|
|
|
|
id: row.get(0)?,
|
|
|
|
name: row.get(1)?,
|
|
|
|
sort: row.get(2)?,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn authors(
|
|
|
|
conn: &Connection,
|
|
|
|
limit: u64,
|
|
|
|
cursor: Option<&str>,
|
|
|
|
sort_order: SortOrder,
|
|
|
|
) -> Result<Vec<Author>, DataStoreError> {
|
|
|
|
let pagination = Pagination::new("sort", cursor, limit, sort_order);
|
|
|
|
pagination.paginate(
|
|
|
|
conn,
|
|
|
|
"SELECT id, name, sort FROM authors",
|
|
|
|
&[],
|
|
|
|
Self::from_row,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|