2017-08-20 22:59:16 +03:00
|
|
|
use std;
|
|
|
|
|
2017-09-05 18:07:57 +03:00
|
|
|
use diesel;
|
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-08 17:21:24 +03:00
|
|
|
use futures_cpupool::{self, CpuFuture};
|
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-08 17:21:24 +03:00
|
|
|
connection_pool: Pool<ConnectionManager<SqliteConnection>>,
|
|
|
|
cpu_pool: futures_cpupool::CpuPool,
|
2017-08-20 22:59:16 +03:00
|
|
|
}
|
|
|
|
|
2017-09-05 15:55:10 +03:00
|
|
|
pub type Error = Box<std::error::Error + Send + Sync>;
|
|
|
|
|
2017-08-20 22:59:16 +03:00
|
|
|
impl State {
|
2017-09-10 13:29:33 +03:00
|
|
|
pub fn new(connection_pool: Pool<ConnectionManager<SqliteConnection>>, cpu_pool: futures_cpupool::CpuPool) -> State {
|
2017-09-08 17:21:24 +03:00
|
|
|
State {
|
|
|
|
connection_pool,
|
2017-09-10 13:29:33 +03:00
|
|
|
cpu_pool,
|
2017-09-08 17:21:24 +03:00
|
|
|
}
|
2017-08-20 22:59:16 +03:00
|
|
|
}
|
|
|
|
|
2017-09-08 17:21:24 +03:00
|
|
|
pub fn get_article_revision_by_id(&self, article_id: i32) -> CpuFuture<Option<models::ArticleRevision>, Error> {
|
|
|
|
let connection_pool = self.connection_pool.clone();
|
|
|
|
|
|
|
|
self.cpu_pool.spawn_fn(move || {
|
2017-09-08 16:58:15 +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-08 17:21:24 +03:00
|
|
|
.load::<models::ArticleRevision>(&*connection_pool.get()?)?
|
2017-09-08 16:58:15 +03:00
|
|
|
.pop())
|
2017-09-08 17:21:24 +03:00
|
|
|
})
|
2017-08-21 00:44:52 +03:00
|
|
|
}
|
2017-09-05 18:07:57 +03:00
|
|
|
|
2017-09-08 17:21:24 +03:00
|
|
|
pub fn update_article(&self, article_id: i32, base_revision: i32, body: String) -> CpuFuture<models::ArticleRevision, Error> {
|
|
|
|
let connection_pool = self.connection_pool.clone();
|
|
|
|
|
|
|
|
self.cpu_pool.spawn_fn(move || {
|
|
|
|
let conn = connection_pool.get()?;
|
|
|
|
|
|
|
|
conn.transaction(|| {
|
|
|
|
use schema::article_revisions;
|
|
|
|
|
|
|
|
let (latest_revision, title) = article_revisions::table
|
|
|
|
.filter(article_revisions::article_id.eq(article_id))
|
|
|
|
.order(article_revisions::revision.desc())
|
|
|
|
.limit(1)
|
|
|
|
.select((article_revisions::revision, article_revisions::title))
|
|
|
|
.load::<(i32, String)>(&*conn)?
|
|
|
|
.pop()
|
|
|
|
.unwrap_or_else(|| unimplemented!("TODO Missing an error type"));
|
|
|
|
|
|
|
|
if latest_revision != base_revision {
|
|
|
|
// TODO: If it is the same edit repeated, just respond OK
|
|
|
|
// TODO: If there is a conflict, transform the edit to work seamlessly
|
|
|
|
unimplemented!("TODO Missing handling of revision conflicts");
|
|
|
|
}
|
|
|
|
let new_revision = base_revision + 1;
|
|
|
|
|
|
|
|
#[derive(Insertable)]
|
|
|
|
#[table_name="article_revisions"]
|
|
|
|
struct NewRevision<'a> {
|
|
|
|
article_id: i32,
|
|
|
|
revision: i32,
|
|
|
|
title: &'a str,
|
|
|
|
body: &'a str,
|
|
|
|
}
|
|
|
|
|
|
|
|
diesel::insert(&NewRevision {
|
|
|
|
article_id,
|
|
|
|
revision: new_revision,
|
|
|
|
title: &title,
|
|
|
|
body: &body,
|
|
|
|
})
|
|
|
|
.into(article_revisions::table)
|
|
|
|
.execute(&*conn)?;
|
|
|
|
|
|
|
|
Ok(article_revisions::table
|
|
|
|
.filter(article_revisions::article_id.eq(article_id))
|
|
|
|
.filter(article_revisions::revision.eq(new_revision))
|
|
|
|
.load::<models::ArticleRevision>(&*conn)?
|
|
|
|
.pop()
|
|
|
|
.expect("We just inserted this row!")
|
|
|
|
)
|
2017-09-08 16:37:58 +03:00
|
|
|
})
|
2017-09-08 17:21:24 +03:00
|
|
|
})
|
2017-09-05 18:07:57 +03:00
|
|
|
}
|
2017-08-20 22:59:16 +03:00
|
|
|
}
|