about summary refs log tree commit diff stats
path: root/src/posts.rs
diff options
context:
space:
mode:
authorBen Morrison <ben@gbmor.dev>2019-08-31 14:03:02 -0400
committerBen Morrison <ben@gbmor.dev>2019-08-31 14:03:02 -0400
commit39894be3eac7d3410d460c8a7b52a6eae2caf841 (patch)
treea8967ac68d900d37633e8f302d9e2ecdf68f892a /src/posts.rs
parentcf0ad9b11707abef27ee4acd00f3cfd679eeff23 (diff)
downloadclinte-39894be3eac7d3410d460c8a7b52a6eae2caf841.tar.gz
moved display func to posts.rs
Diffstat (limited to 'src/posts.rs')
-rw-r--r--src/posts.rs34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/posts.rs b/src/posts.rs
index 698f8a6..77e24fc 100644
--- a/src/posts.rs
+++ b/src/posts.rs
@@ -15,6 +15,40 @@ pub fn new(stmt: &mut rusqlite::Statement, title: &str, body: &str) -> Result<()
     Ok(())
 }
 
+pub fn display(db: &db::Conn) {
+    let mut stmt = db.conn.prepare("SELECT * FROM posts").unwrap();
+    let out = stmt
+        .query_map(rusqlite::NO_PARAMS, |row| {
+            let id: u32 = row.get(0)?;
+            let title: String = row.get(1)?;
+            let author: String = row.get(2)?;
+            let body: String = row.get(3)?;
+            Ok(db::Post {
+                id,
+                title,
+                author,
+                body,
+            })
+        })
+        .unwrap();
+
+    let mut postvec = Vec::new();
+    out.for_each(|row| {
+        if let Ok(post) = row {
+            postvec.push(format!(
+                "{}. {} -> by {}\n{}\n\n",
+                post.id, post.title, post.author, post.body
+            ));
+        }
+    });
+
+    for (i, e) in postvec.iter().enumerate() {
+        if (postvec.len() > 14 && i >= postvec.len() - 15) || postvec.len() < 15 {
+            print!("{}", e);
+        }
+    }
+}
+
 pub fn update(new_title: &str, new_body: &str, id_num_in: u32, db: &db::Conn) -> Result<()> {
     let new_title = new_title.trim();
     let new_body = new_body.trim();