use crate::Comment; use rusqlite::{params, Connection, Result}; pub struct Database { conn: Connection, } impl Database { pub fn new(testing: bool) -> Result { if !testing { unimplemented!("Persistent databases unimplemented!"); } let conn = Connection::open_in_memory()?; conn.execute( "CREATE TABLE comment ( id INTEGER PRIMARY KEY, email TEXT, author TEXT, text TEXT NOT NULL, timestamp DATETIME DEFAULT CURRENT_TIMESTAMP, content_id TEXT NOT NULL )", params![], )?; Ok(Self { conn }) } pub fn get_comments(&self, content_id: &str) -> Result> { self.conn .prepare(&format!("SELECT author, email, text, timestamp FROM comment WHERE content_id='{content_id}' ORDER BY timestamp DESC"))? .query_map([], |row| { Ok(Comment { author: row.get(0)?, email: row.get(1)?, text: row.get(2)?, timestamp: row.get(3)?, content_id: content_id.to_owned(), }) })? .collect() } pub fn create_comment(&self, comment: &Comment) -> Result<()> { self.conn.execute( "INSERT INTO comment (author, email, text, content_id) VALUES (?1, ?2, ?3, ?4)", params![ &comment.author, &comment.email, &comment.text, &comment.content_id ], )?; Ok(()) } }