2017-08-20 22:59:16 +03:00
|
|
|
use std;
|
|
|
|
|
2017-08-20 23:17:16 +03:00
|
|
|
use chrono;
|
2017-08-20 22:59:16 +03:00
|
|
|
use diesel::sqlite::SqliteConnection;
|
2017-08-21 00:44:52 +03:00
|
|
|
use diesel::prelude::*;
|
2017-09-05 15:55:10 +03:00
|
|
|
use r2d2::Pool;
|
|
|
|
use r2d2_diesel::ConnectionManager;
|
2017-08-20 22:59:16 +03:00
|
|
|
|
2017-08-20 23:17:16 +03:00
|
|
|
use models;
|
|
|
|
|
2017-09-05 15:55:10 +03:00
|
|
|
#[derive(Clone)]
|
2017-08-20 22:59:16 +03:00
|
|
|
pub struct State {
|
2017-09-05 15:55:10 +03:00
|
|
|
connection_pool: Pool<ConnectionManager<SqliteConnection>>
|
2017-08-20 22:59:16 +03:00
|
|
|
}
|
|
|
|
|
2017-09-05 15:55:10 +03:00
|
|
|
#[derive(Deserialize)]
|
|
|
|
pub struct UpdateArticle {
|
|
|
|
base_revision: i32,
|
|
|
|
body: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub type Error = Box<std::error::Error + Send + Sync>;
|
|
|
|
|
2017-08-20 22:59:16 +03:00
|
|
|
impl State {
|
2017-09-05 15:55:10 +03:00
|
|
|
pub fn new(connection_pool: Pool<ConnectionManager<SqliteConnection>>) -> State {
|
|
|
|
State { connection_pool }
|
2017-08-20 22:59:16 +03:00
|
|
|
}
|
|
|
|
|
2017-09-05 15:55:10 +03:00
|
|
|
pub fn get_article_revision_by_slug(&self, slug: &str) -> Result<Option<models::ArticleRevision>, Error> {
|
2017-08-21 00:44:52 +03:00
|
|
|
Ok(Some(models::ArticleRevision {
|
|
|
|
article_id: 0,
|
2017-08-20 23:17:16 +03:00
|
|
|
revision: 0,
|
|
|
|
created: chrono::Local::now().naive_local(),
|
|
|
|
title: slug.to_owned(),
|
|
|
|
body: "Look at me!".to_owned(),
|
|
|
|
}))
|
2017-08-20 22:59:16 +03:00
|
|
|
}
|
2017-08-21 00:44:52 +03:00
|
|
|
|
2017-09-05 15:55:10 +03:00
|
|
|
pub fn get_article_revision_by_id(&self, article_id: i32) -> Result<Option<models::ArticleRevision>, Error> {
|
2017-08-21 00:44:52 +03:00
|
|
|
use schema::article_revisions;
|
|
|
|
|
|
|
|
Ok(article_revisions::table
|
|
|
|
.filter(article_revisions::article_id.eq(article_id))
|
|
|
|
.order(article_revisions::revision.desc())
|
|
|
|
.limit(1)
|
2017-09-05 15:55:10 +03:00
|
|
|
.load::<models::ArticleRevision>(&*self.connection_pool.get()?)?
|
2017-08-21 00:44:52 +03:00
|
|
|
.pop())
|
|
|
|
}
|
2017-08-20 22:59:16 +03:00
|
|
|
}
|