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
|
|
|
|
2022-04-03 14:45:50 +03:00
|
|
|
use crate::merge;
|
|
|
|
use crate::models;
|
|
|
|
use crate::schema::*;
|
|
|
|
use crate::theme::Theme;
|
2017-08-20 23:17:16 +03:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2022-04-03 14:45:50 +03:00
|
|
|
pub type Error = Box<dyn std::error::Error + Send + Sync>;
|
2017-09-05 15:55:10 +03:00
|
|
|
|
2017-09-20 12:54:26 +03:00
|
|
|
pub enum SlugLookup {
|
|
|
|
Miss,
|
|
|
|
Hit {
|
|
|
|
article_id: i32,
|
|
|
|
revision: i32,
|
|
|
|
},
|
|
|
|
Redirect(String),
|
|
|
|
}
|
|
|
|
|
2017-09-21 12:38:52 +03:00
|
|
|
#[derive(Insertable)]
|
|
|
|
#[table_name="article_revisions"]
|
|
|
|
struct NewRevision<'a> {
|
|
|
|
article_id: i32,
|
|
|
|
revision: i32,
|
|
|
|
slug: &'a str,
|
|
|
|
title: &'a str,
|
|
|
|
body: &'a str,
|
2017-10-18 17:33:21 +03:00
|
|
|
author: Option<&'a str>,
|
2017-09-21 12:38:52 +03:00
|
|
|
latest: bool,
|
2018-09-23 23:38:18 +03:00
|
|
|
theme: Theme,
|
2017-09-21 12:38:52 +03:00
|
|
|
}
|
|
|
|
|
2017-11-20 17:08:34 +03:00
|
|
|
#[derive(Debug, PartialEq)]
|
|
|
|
pub struct RebaseConflict {
|
2017-11-20 18:07:33 +03:00
|
|
|
pub base_article: models::ArticleRevisionStub,
|
|
|
|
pub title: merge::MergeResult<char>,
|
|
|
|
pub body: merge::MergeResult<String>,
|
2018-09-23 00:16:58 +03:00
|
|
|
pub theme: Theme,
|
2017-11-20 17:08:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
|
|
enum RebaseResult {
|
2018-09-23 00:16:58 +03:00
|
|
|
Clean { title: String, body: String, theme: Theme },
|
2017-11-20 17:08:34 +03:00
|
|
|
Conflict(RebaseConflict),
|
|
|
|
}
|
|
|
|
|
|
|
|
pub enum UpdateResult {
|
|
|
|
Success(models::ArticleRevision),
|
|
|
|
RebaseConflict(RebaseConflict),
|
|
|
|
}
|
|
|
|
|
2017-10-02 18:08:59 +03:00
|
|
|
fn decide_slug(conn: &SqliteConnection, article_id: i32, prev_title: &str, title: &str, prev_slug: Option<&str>) -> Result<String, Error> {
|
|
|
|
let base_slug = ::slug::slugify(title);
|
2017-09-21 11:23:30 +03:00
|
|
|
|
2017-10-02 18:08:59 +03:00
|
|
|
if let Some(prev_slug) = prev_slug {
|
|
|
|
if prev_slug == "" {
|
|
|
|
// Never give a non-empty slug to the front page
|
|
|
|
return Ok(String::new());
|
|
|
|
}
|
2017-09-21 00:31:25 +03:00
|
|
|
|
2017-10-02 18:08:59 +03:00
|
|
|
if title == prev_title {
|
|
|
|
return Ok(prev_slug.to_owned());
|
|
|
|
}
|
2017-09-21 00:31:25 +03:00
|
|
|
|
2017-10-02 18:08:59 +03:00
|
|
|
if base_slug == prev_slug {
|
|
|
|
return Ok(base_slug);
|
|
|
|
}
|
2017-09-21 00:31:25 +03:00
|
|
|
}
|
|
|
|
|
2017-10-30 13:44:36 +03:00
|
|
|
let base_slug = if base_slug.is_empty() { "article" } else { &base_slug };
|
|
|
|
|
2022-04-03 14:45:50 +03:00
|
|
|
use crate::schema::article_revisions;
|
2017-09-21 00:31:25 +03:00
|
|
|
|
2017-10-30 13:44:36 +03:00
|
|
|
let mut slug = base_slug.to_owned();
|
2017-09-21 00:31:25 +03:00
|
|
|
let mut disambiguator = 1;
|
|
|
|
|
|
|
|
loop {
|
|
|
|
let slug_in_use = article_revisions::table
|
2017-09-21 11:09:57 +03:00
|
|
|
.filter(article_revisions::article_id.ne(article_id))
|
2017-09-21 00:31:25 +03:00
|
|
|
.filter(article_revisions::slug.eq(&slug))
|
|
|
|
.filter(article_revisions::latest.eq(true))
|
|
|
|
.count()
|
|
|
|
.first::<i64>(conn)? != 0;
|
|
|
|
|
|
|
|
if !slug_in_use {
|
|
|
|
break Ok(slug);
|
|
|
|
}
|
|
|
|
|
|
|
|
disambiguator += 1;
|
|
|
|
slug = format!("{}-{}", base_slug, disambiguator);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-15 17:48:45 +03:00
|
|
|
struct SyncState<'a> {
|
|
|
|
db_connection: &'a diesel::SqliteConnection,
|
|
|
|
}
|
2017-08-20 22:59:16 +03:00
|
|
|
|
2017-11-15 17:48:45 +03:00
|
|
|
impl<'a> SyncState<'a> {
|
|
|
|
fn new(db_connection: &diesel::SqliteConnection) -> SyncState {
|
|
|
|
SyncState { db_connection }
|
|
|
|
}
|
2017-10-24 11:30:12 +03:00
|
|
|
|
2017-11-15 17:48:45 +03:00
|
|
|
pub fn get_article_slug(&self, article_id: i32) -> Result<Option<String>, Error> {
|
2022-04-03 14:45:50 +03:00
|
|
|
use crate::schema::article_revisions;
|
2017-10-24 11:30:12 +03:00
|
|
|
|
2017-11-15 17:48:45 +03:00
|
|
|
Ok(article_revisions::table
|
|
|
|
.filter(article_revisions::article_id.eq(article_id))
|
|
|
|
.filter(article_revisions::latest.eq(true))
|
2018-05-12 15:36:52 +03:00
|
|
|
.select(article_revisions::slug)
|
2017-11-15 17:48:45 +03:00
|
|
|
.first::<String>(self.db_connection)
|
|
|
|
.optional()?)
|
2017-10-24 11:30:12 +03:00
|
|
|
}
|
|
|
|
|
2017-11-15 17:48:45 +03:00
|
|
|
pub fn get_article_revision(&self, article_id: i32, revision: i32) -> Result<Option<models::ArticleRevision>, Error> {
|
2022-04-03 14:45:50 +03:00
|
|
|
use crate::schema::article_revisions;
|
2017-09-08 17:21:24 +03:00
|
|
|
|
2017-11-15 17:48:45 +03:00
|
|
|
Ok(article_revisions::table
|
|
|
|
.filter(article_revisions::article_id.eq(article_id))
|
|
|
|
.filter(article_revisions::revision.eq(revision))
|
|
|
|
.first::<models::ArticleRevision>(self.db_connection)
|
|
|
|
.optional()?)
|
2017-08-21 00:44:52 +03:00
|
|
|
}
|
2017-09-05 18:07:57 +03:00
|
|
|
|
2017-11-15 17:48:45 +03:00
|
|
|
pub fn query_article_revision_stubs<F>(&self, f: F) -> Result<Vec<models::ArticleRevisionStub>, Error>
|
2017-10-20 21:48:38 +03:00
|
|
|
where
|
|
|
|
F: 'static + Send + Sync,
|
2017-11-15 17:48:45 +03:00
|
|
|
for <'x> F:
|
|
|
|
FnOnce(article_revisions::BoxedQuery<'x, diesel::sqlite::Sqlite>) ->
|
|
|
|
article_revisions::BoxedQuery<'x, diesel::sqlite::Sqlite>,
|
2017-10-20 21:48:38 +03:00
|
|
|
{
|
2022-04-03 14:45:50 +03:00
|
|
|
use crate::schema::article_revisions::dsl::*;
|
2017-11-15 17:48:45 +03:00
|
|
|
|
|
|
|
Ok(f(article_revisions.into_boxed())
|
|
|
|
.select((
|
|
|
|
sequence_number,
|
|
|
|
article_id,
|
|
|
|
revision,
|
|
|
|
created,
|
|
|
|
slug,
|
|
|
|
title,
|
|
|
|
latest,
|
|
|
|
author,
|
2018-09-23 23:38:18 +03:00
|
|
|
theme,
|
2017-11-15 17:48:45 +03:00
|
|
|
))
|
|
|
|
.load(self.db_connection)?
|
|
|
|
)
|
2017-10-03 11:37:18 +03:00
|
|
|
}
|
|
|
|
|
2017-11-20 18:07:33 +03:00
|
|
|
fn get_article_revision_stub(&self, article_id: i32, revision: i32) -> Result<Option<models::ArticleRevisionStub>, Error> {
|
2022-04-03 14:45:50 +03:00
|
|
|
use crate::schema::article_revisions;
|
2017-11-20 18:07:33 +03:00
|
|
|
|
|
|
|
Ok(self.query_article_revision_stubs(move |query| {
|
|
|
|
query
|
|
|
|
.filter(article_revisions::article_id.eq(article_id))
|
|
|
|
.filter(article_revisions::revision.eq(revision))
|
|
|
|
.limit(1)
|
|
|
|
})?.pop())
|
|
|
|
}
|
|
|
|
|
2017-11-15 17:48:45 +03:00
|
|
|
pub fn lookup_slug(&self, slug: String) -> Result<SlugLookup, Error> {
|
2017-09-20 12:54:26 +03:00
|
|
|
#[derive(Queryable)]
|
|
|
|
struct ArticleRevisionStub {
|
|
|
|
article_id: i32,
|
|
|
|
revision: i32,
|
|
|
|
latest: bool,
|
|
|
|
}
|
|
|
|
|
2017-11-15 17:48:45 +03:00
|
|
|
self.db_connection.transaction(|| {
|
2022-04-03 14:45:50 +03:00
|
|
|
use crate::schema::article_revisions;
|
2017-09-20 12:54:26 +03:00
|
|
|
|
2017-11-15 17:48:45 +03:00
|
|
|
Ok(match article_revisions::table
|
|
|
|
.filter(article_revisions::slug.eq(slug))
|
|
|
|
.order(article_revisions::sequence_number.desc())
|
|
|
|
.select((
|
|
|
|
article_revisions::article_id,
|
|
|
|
article_revisions::revision,
|
|
|
|
article_revisions::latest,
|
|
|
|
))
|
|
|
|
.first::<ArticleRevisionStub>(self.db_connection)
|
|
|
|
.optional()?
|
|
|
|
{
|
|
|
|
None => SlugLookup::Miss,
|
|
|
|
Some(ref stub) if stub.latest => SlugLookup::Hit {
|
|
|
|
article_id: stub.article_id,
|
|
|
|
revision: stub.revision,
|
|
|
|
},
|
|
|
|
Some(stub) => SlugLookup::Redirect(
|
|
|
|
article_revisions::table
|
|
|
|
.filter(article_revisions::latest.eq(true))
|
|
|
|
.filter(article_revisions::article_id.eq(stub.article_id))
|
|
|
|
.select(article_revisions::slug)
|
|
|
|
.first::<String>(self.db_connection)?
|
|
|
|
)
|
2017-09-20 12:54:26 +03:00
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2018-09-23 23:38:18 +03:00
|
|
|
fn rebase_update(&self, article_id: i32, target_base_revision: i32, existing_base_revision: i32, title: String, body: String, theme: Theme)
|
2017-11-20 17:08:34 +03:00
|
|
|
-> Result<RebaseResult, Error>
|
2017-11-20 14:37:44 +03:00
|
|
|
{
|
2017-11-20 15:12:36 +03:00
|
|
|
let mut title_a = title;
|
|
|
|
let mut body_a = body;
|
2018-09-23 23:38:18 +03:00
|
|
|
let mut theme_a = theme;
|
2018-09-23 00:16:58 +03:00
|
|
|
|
|
|
|
// TODO: Improve this implementation.
|
|
|
|
// Weakness: If the range of revisions is big, _one_ request from the
|
|
|
|
// client can cause _many_ database requests, cheaply causing lots
|
|
|
|
// of work for the server. Possible attack vector.
|
|
|
|
// Weakness: When the range is larger than just one iteration, the
|
|
|
|
// same title and body are retrieved from the database multiple
|
|
|
|
// times. Unnecessary extra copies.
|
2017-11-20 14:37:44 +03:00
|
|
|
|
|
|
|
for revision in existing_base_revision..target_base_revision {
|
|
|
|
let mut stored = article_revisions::table
|
|
|
|
.filter(article_revisions::article_id.eq(article_id))
|
|
|
|
.filter(article_revisions::revision.ge(revision))
|
|
|
|
.filter(article_revisions::revision.le(revision+1))
|
|
|
|
.order(article_revisions::revision.asc())
|
2017-11-20 15:12:36 +03:00
|
|
|
.select((
|
|
|
|
article_revisions::title,
|
|
|
|
article_revisions::body,
|
2018-09-23 23:38:18 +03:00
|
|
|
article_revisions::theme,
|
2017-11-20 15:12:36 +03:00
|
|
|
))
|
2018-09-23 00:16:58 +03:00
|
|
|
.load::<(String, String, Theme)>(self.db_connection)?;
|
2017-11-20 14:37:44 +03:00
|
|
|
|
2018-09-23 00:16:58 +03:00
|
|
|
let (title_b, body_b, theme_b) = stored.pop().expect("Application layer guarantee");
|
|
|
|
let (title_o, body_o, theme_o) = stored.pop().expect("Application layer guarantee");
|
2017-11-20 14:37:44 +03:00
|
|
|
|
2022-04-03 14:45:50 +03:00
|
|
|
use crate::merge::MergeResult::*;
|
2017-11-20 17:08:34 +03:00
|
|
|
|
2018-09-23 00:16:58 +03:00
|
|
|
fn merge_themes(a: Theme, o: Theme, b: Theme) -> Theme {
|
|
|
|
// Last change wins
|
|
|
|
if a != o { a } else { b }
|
|
|
|
}
|
|
|
|
|
2017-11-20 17:08:34 +03:00
|
|
|
let update = {
|
|
|
|
let title_merge = merge::merge_chars(&title_a, &title_o, &title_b);
|
|
|
|
let body_merge = merge::merge_lines(&body_a, &body_o, &body_b);
|
2018-09-23 00:16:58 +03:00
|
|
|
let theme = merge_themes(theme_a, theme_o, theme_b);
|
2017-11-20 17:08:34 +03:00
|
|
|
|
|
|
|
match (title_merge, body_merge) {
|
2018-09-23 00:16:58 +03:00
|
|
|
(Clean(title), Clean(body)) => (title, body, theme),
|
2017-11-20 17:08:34 +03:00
|
|
|
(title_merge, body_merge) => {
|
|
|
|
return Ok(RebaseResult::Conflict(RebaseConflict {
|
2017-11-20 18:07:33 +03:00
|
|
|
base_article: self.get_article_revision_stub(article_id, revision+1)?.expect("Application layer guarantee"),
|
2017-11-20 17:08:34 +03:00
|
|
|
title: title_merge,
|
|
|
|
body: body_merge.to_strings(),
|
2018-09-23 00:16:58 +03:00
|
|
|
theme,
|
2017-11-20 17:08:34 +03:00
|
|
|
}));
|
|
|
|
},
|
|
|
|
}
|
2017-11-20 15:12:36 +03:00
|
|
|
};
|
|
|
|
|
2017-11-20 17:08:34 +03:00
|
|
|
title_a = update.0;
|
|
|
|
body_a = update.1;
|
2018-09-23 00:16:58 +03:00
|
|
|
theme_a = update.2;
|
2017-11-20 14:37:44 +03:00
|
|
|
}
|
|
|
|
|
2018-09-23 00:16:58 +03:00
|
|
|
Ok(RebaseResult::Clean { title: title_a, body: body_a, theme: theme_a })
|
2017-11-20 14:37:44 +03:00
|
|
|
}
|
|
|
|
|
2018-10-05 14:07:19 +03:00
|
|
|
pub fn update_article(&self, article_id: i32, base_revision: i32, title: String, body: String, author: Option<String>, theme: Option<Theme>)
|
2017-11-20 17:08:34 +03:00
|
|
|
-> Result<UpdateResult, Error>
|
2017-09-21 11:09:57 +03:00
|
|
|
{
|
2017-11-15 17:48:45 +03:00
|
|
|
if title.is_empty() {
|
|
|
|
Err("title cannot be empty")?;
|
|
|
|
}
|
2017-09-08 17:21:24 +03:00
|
|
|
|
2017-11-15 17:48:45 +03:00
|
|
|
self.db_connection.transaction(|| {
|
2022-04-03 14:45:50 +03:00
|
|
|
use crate::schema::article_revisions;
|
2017-10-30 15:20:40 +03:00
|
|
|
|
2018-10-05 14:07:19 +03:00
|
|
|
let (latest_revision, prev_title, prev_slug, prev_theme) = article_revisions::table
|
2017-11-15 17:48:45 +03:00
|
|
|
.filter(article_revisions::article_id.eq(article_id))
|
|
|
|
.order(article_revisions::revision.desc())
|
|
|
|
.select((
|
|
|
|
article_revisions::revision,
|
|
|
|
article_revisions::title,
|
|
|
|
article_revisions::slug,
|
2018-10-05 14:07:19 +03:00
|
|
|
article_revisions::theme,
|
2017-11-15 17:48:45 +03:00
|
|
|
))
|
2018-10-05 14:07:19 +03:00
|
|
|
.first::<(i32, String, String, Theme)>(self.db_connection)?;
|
2017-09-08 17:21:24 +03:00
|
|
|
|
2017-11-20 14:37:44 +03:00
|
|
|
// TODO: If this is an historic edit repeated, just respond OK
|
|
|
|
// This scheme would make POST idempotent.
|
|
|
|
|
|
|
|
if base_revision > latest_revision {
|
|
|
|
Err("This edit is based on a future version of the article")?;
|
2017-11-15 17:48:45 +03:00
|
|
|
}
|
2017-11-20 14:37:44 +03:00
|
|
|
|
2018-10-05 14:07:19 +03:00
|
|
|
let theme = theme.unwrap_or(prev_theme);
|
2018-09-23 23:38:18 +03:00
|
|
|
let rebase_result = self.rebase_update(article_id, latest_revision, base_revision, title, body, theme)?;
|
2017-11-20 17:08:34 +03:00
|
|
|
|
2018-09-23 00:16:58 +03:00
|
|
|
let (title, body, theme) = match rebase_result {
|
|
|
|
RebaseResult::Clean { title, body, theme } => (title, body, theme),
|
2017-11-20 17:08:34 +03:00
|
|
|
RebaseResult::Conflict(x) => return Ok(UpdateResult::RebaseConflict(x)),
|
|
|
|
};
|
2017-11-20 14:37:44 +03:00
|
|
|
|
|
|
|
let new_revision = latest_revision + 1;
|
2017-09-08 17:21:24 +03:00
|
|
|
|
2017-11-15 17:48:45 +03:00
|
|
|
let slug = decide_slug(self.db_connection, article_id, &prev_title, &title, Some(&prev_slug))?;
|
|
|
|
|
|
|
|
diesel::update(
|
|
|
|
article_revisions::table
|
2017-09-08 17:21:24 +03:00
|
|
|
.filter(article_revisions::article_id.eq(article_id))
|
2017-11-20 14:37:44 +03:00
|
|
|
.filter(article_revisions::revision.eq(latest_revision))
|
2017-11-15 17:48:45 +03:00
|
|
|
)
|
|
|
|
.set(article_revisions::latest.eq(false))
|
|
|
|
.execute(self.db_connection)?;
|
|
|
|
|
2017-12-15 18:43:10 +03:00
|
|
|
diesel::insert_into(article_revisions::table)
|
|
|
|
.values(&NewRevision {
|
2017-11-15 17:48:45 +03:00
|
|
|
article_id,
|
|
|
|
revision: new_revision,
|
|
|
|
slug: &slug,
|
|
|
|
title: &title,
|
|
|
|
body: &body,
|
|
|
|
author: author.as_ref().map(|x| &**x),
|
|
|
|
latest: true,
|
2018-09-23 23:38:18 +03:00
|
|
|
theme,
|
2017-11-15 17:48:45 +03:00
|
|
|
})
|
|
|
|
.execute(self.db_connection)?;
|
|
|
|
|
2017-11-20 17:08:34 +03:00
|
|
|
Ok(UpdateResult::Success(article_revisions::table
|
2017-11-15 17:48:45 +03:00
|
|
|
.filter(article_revisions::article_id.eq(article_id))
|
|
|
|
.filter(article_revisions::revision.eq(new_revision))
|
|
|
|
.first::<models::ArticleRevision>(self.db_connection)?
|
2017-11-20 17:08:34 +03:00
|
|
|
))
|
2017-09-08 17:21:24 +03:00
|
|
|
})
|
2017-09-05 18:07:57 +03:00
|
|
|
}
|
2017-09-21 12:38:52 +03:00
|
|
|
|
2018-09-23 23:38:18 +03:00
|
|
|
pub fn create_article(&self, target_slug: Option<String>, title: String, body: String, author: Option<String>, theme: Theme)
|
2017-11-15 17:48:45 +03:00
|
|
|
-> Result<models::ArticleRevision, Error>
|
2017-09-21 12:38:52 +03:00
|
|
|
{
|
2017-11-15 17:48:45 +03:00
|
|
|
if title.is_empty() {
|
|
|
|
Err("title cannot be empty")?;
|
|
|
|
}
|
2017-09-21 12:38:52 +03:00
|
|
|
|
2017-11-15 17:48:45 +03:00
|
|
|
self.db_connection.transaction(|| {
|
|
|
|
#[derive(Insertable)]
|
|
|
|
#[table_name="articles"]
|
|
|
|
struct NewArticle {
|
|
|
|
id: Option<i32>
|
2017-10-30 15:20:40 +03:00
|
|
|
}
|
|
|
|
|
2017-11-15 17:48:45 +03:00
|
|
|
let article_id = {
|
|
|
|
use diesel::expression::sql_literal::sql;
|
|
|
|
// Diesel and SQLite are a bit in disagreement for how this should look:
|
2018-01-19 17:39:56 +03:00
|
|
|
sql::<(diesel::sql_types::Integer)>("INSERT INTO articles VALUES (null)")
|
2017-11-15 17:48:45 +03:00
|
|
|
.execute(self.db_connection)?;
|
2018-01-19 17:39:56 +03:00
|
|
|
sql::<(diesel::sql_types::Integer)>("SELECT LAST_INSERT_ROWID()")
|
2017-11-15 17:48:45 +03:00
|
|
|
.load::<i32>(self.db_connection)?
|
|
|
|
.pop().expect("Statement must evaluate to an integer")
|
|
|
|
};
|
|
|
|
|
|
|
|
let slug = decide_slug(self.db_connection, article_id, "", &title, target_slug.as_ref().map(|x| &**x))?;
|
|
|
|
|
|
|
|
let new_revision = 1;
|
|
|
|
|
2017-12-15 18:43:10 +03:00
|
|
|
diesel::insert_into(article_revisions::table)
|
|
|
|
.values(&NewRevision {
|
2017-11-15 17:48:45 +03:00
|
|
|
article_id,
|
|
|
|
revision: new_revision,
|
|
|
|
slug: &slug,
|
|
|
|
title: &title,
|
|
|
|
body: &body,
|
|
|
|
author: author.as_ref().map(|x| &**x),
|
|
|
|
latest: true,
|
2018-09-23 23:38:18 +03:00
|
|
|
theme,
|
2017-11-15 17:48:45 +03:00
|
|
|
})
|
|
|
|
.execute(self.db_connection)?;
|
|
|
|
|
|
|
|
Ok(article_revisions::table
|
|
|
|
.filter(article_revisions::article_id.eq(article_id))
|
|
|
|
.filter(article_revisions::revision.eq(new_revision))
|
|
|
|
.first::<models::ArticleRevision>(self.db_connection)?
|
|
|
|
)
|
2017-09-21 12:38:52 +03:00
|
|
|
})
|
|
|
|
}
|
2017-10-24 17:48:16 +03:00
|
|
|
|
2017-11-15 17:48:45 +03:00
|
|
|
pub fn search_query(&self, query_string: String, limit: i32, offset: i32, snippet_size: i32) -> Result<Vec<models::SearchResult>, Error> {
|
2017-12-15 18:43:10 +03:00
|
|
|
use diesel::sql_query;
|
2018-01-19 17:39:56 +03:00
|
|
|
use diesel::sql_types::{Integer, Text};
|
2017-11-15 17:48:45 +03:00
|
|
|
|
|
|
|
fn fts_quote(src: &str) -> String {
|
|
|
|
format!("\"{}\"", src.replace('\"', "\"\""))
|
|
|
|
}
|
|
|
|
|
|
|
|
let words = query_string
|
|
|
|
.split_whitespace()
|
|
|
|
.map(fts_quote)
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
|
|
|
|
let query = if words.len() > 1 {
|
|
|
|
format!("NEAR({})", words.join(" "))
|
|
|
|
} else if words.len() == 1 {
|
|
|
|
format!("{}*", words[0])
|
|
|
|
} else {
|
|
|
|
"\"\"".to_owned()
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(
|
2017-12-15 18:43:10 +03:00
|
|
|
sql_query(
|
2018-01-19 18:49:15 +03:00
|
|
|
"SELECT title, snippet(article_search, 1, '<em>', '</em>', '\u{2026}', ?) AS snippet, slug \
|
2017-11-15 17:48:45 +03:00
|
|
|
FROM article_search \
|
|
|
|
WHERE article_search MATCH ? \
|
|
|
|
ORDER BY rank \
|
|
|
|
LIMIT ? OFFSET ?"
|
|
|
|
)
|
|
|
|
.bind::<Integer, _>(snippet_size)
|
|
|
|
.bind::<Text, _>(query)
|
|
|
|
.bind::<Integer, _>(limit)
|
|
|
|
.bind::<Integer, _>(offset)
|
|
|
|
.load(self.db_connection)?)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl State {
|
|
|
|
pub fn new(connection_pool: Pool<ConnectionManager<SqliteConnection>>, cpu_pool: futures_cpupool::CpuPool) -> State {
|
|
|
|
State {
|
|
|
|
connection_pool,
|
|
|
|
cpu_pool,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn execute<F, T>(&self, f: F) -> CpuFuture<T, Error>
|
|
|
|
where
|
|
|
|
F: 'static + Sync + Send,
|
|
|
|
for <'a> F: FnOnce(SyncState<'a>) -> Result<T, Error>,
|
|
|
|
T: 'static + Send,
|
|
|
|
{
|
2017-10-24 17:48:16 +03:00
|
|
|
let connection_pool = self.connection_pool.clone();
|
|
|
|
|
|
|
|
self.cpu_pool.spawn_fn(move || {
|
2017-11-15 17:48:45 +03:00
|
|
|
let db_connection = connection_pool.get()?;
|
2017-10-24 17:48:16 +03:00
|
|
|
|
2017-11-15 17:48:45 +03:00
|
|
|
f(SyncState::new(&*db_connection))
|
|
|
|
})
|
|
|
|
}
|
2017-10-24 22:20:55 +03:00
|
|
|
|
2017-11-15 17:48:45 +03:00
|
|
|
pub fn get_article_slug(&self, article_id: i32) -> CpuFuture<Option<String>, Error> {
|
|
|
|
self.execute(move |state| state.get_article_slug(article_id))
|
|
|
|
}
|
2017-10-24 22:20:55 +03:00
|
|
|
|
2017-11-15 17:48:45 +03:00
|
|
|
pub fn get_article_revision(&self, article_id: i32, revision: i32) -> CpuFuture<Option<models::ArticleRevision>, Error> {
|
|
|
|
self.execute(move |state| state.get_article_revision(article_id, revision))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn query_article_revision_stubs<F>(&self, f: F) -> CpuFuture<Vec<models::ArticleRevisionStub>, Error>
|
|
|
|
where
|
|
|
|
F: 'static + Send + Sync,
|
|
|
|
for <'a> F:
|
|
|
|
FnOnce(article_revisions::BoxedQuery<'a, diesel::sqlite::Sqlite>) ->
|
|
|
|
article_revisions::BoxedQuery<'a, diesel::sqlite::Sqlite>,
|
|
|
|
{
|
|
|
|
self.execute(move |state| state.query_article_revision_stubs(f))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_latest_article_revision_stubs(&self) -> CpuFuture<Vec<models::ArticleRevisionStub>, Error> {
|
|
|
|
self.query_article_revision_stubs(|query| {
|
|
|
|
query
|
|
|
|
.filter(article_revisions::latest.eq(true))
|
|
|
|
.order(article_revisions::title.asc())
|
2017-10-24 17:48:16 +03:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-11-15 17:48:45 +03:00
|
|
|
pub fn lookup_slug(&self, slug: String) -> CpuFuture<SlugLookup, Error> {
|
|
|
|
self.execute(move |state| state.lookup_slug(slug))
|
|
|
|
}
|
|
|
|
|
2018-10-05 14:07:19 +03:00
|
|
|
pub fn update_article(&self, article_id: i32, base_revision: i32, title: String, body: String, author: Option<String>, theme: Option<Theme>)
|
2017-11-20 17:08:34 +03:00
|
|
|
-> CpuFuture<UpdateResult, Error>
|
2017-11-15 17:48:45 +03:00
|
|
|
{
|
2018-09-23 23:38:18 +03:00
|
|
|
self.execute(move |state| state.update_article(article_id, base_revision, title, body, author, theme))
|
2017-11-15 17:48:45 +03:00
|
|
|
}
|
|
|
|
|
2018-09-23 23:38:18 +03:00
|
|
|
pub fn create_article(&self, target_slug: Option<String>, title: String, body: String, author: Option<String>, theme: Theme)
|
2017-11-15 17:48:45 +03:00
|
|
|
-> CpuFuture<models::ArticleRevision, Error>
|
|
|
|
{
|
2018-09-23 23:38:18 +03:00
|
|
|
self.execute(move |state| state.create_article(target_slug, title, body, author, theme))
|
2017-11-15 17:48:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn search_query(&self, query_string: String, limit: i32, offset: i32, snippet_size: i32) -> CpuFuture<Vec<models::SearchResult>, Error> {
|
|
|
|
self.execute(move |state| state.search_query(query_string, limit, offset, snippet_size))
|
|
|
|
}
|
2017-08-20 22:59:16 +03:00
|
|
|
}
|
2017-11-15 18:27:28 +03:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
|
|
|
use super::*;
|
2022-04-03 14:45:50 +03:00
|
|
|
use crate::db;
|
2017-11-15 18:27:28 +03:00
|
|
|
|
2017-11-20 18:37:52 +03:00
|
|
|
impl UpdateResult {
|
|
|
|
pub fn unwrap(self) -> models::ArticleRevision {
|
|
|
|
match self {
|
|
|
|
UpdateResult::Success(x) => x,
|
|
|
|
_ => panic!("Expected success")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-16 12:44:55 +03:00
|
|
|
macro_rules! init {
|
|
|
|
($state:ident) => {
|
|
|
|
let db = db::test_connection();
|
|
|
|
let $state = SyncState::new(&db);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-15 18:27:28 +03:00
|
|
|
#[test]
|
|
|
|
fn get_article_slug() {
|
2017-11-16 12:44:55 +03:00
|
|
|
init!(state);
|
2017-11-15 18:27:28 +03:00
|
|
|
assert_matches!(state.get_article_slug(0), Ok(None));
|
|
|
|
}
|
2017-11-16 12:44:55 +03:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn create_article() {
|
|
|
|
init!(state);
|
2018-09-23 23:38:18 +03:00
|
|
|
let article_revision = state.create_article(None, "Title".into(), "Body".into(), None, Theme::Cyan).unwrap();
|
2017-11-16 12:44:55 +03:00
|
|
|
assert_eq!("title", article_revision.slug);
|
|
|
|
assert_eq!(true, article_revision.latest);
|
2018-09-23 23:38:18 +03:00
|
|
|
assert_eq!(Theme::Cyan, article_revision.theme);
|
2017-11-16 12:44:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn create_article_when_empty_slug_then_empty_slug() {
|
|
|
|
// Front page gets to keep its empty slug
|
|
|
|
init!(state);
|
2018-09-23 23:38:18 +03:00
|
|
|
let article_revision = state.create_article(Some("".into()), "Title".into(), "Body".into(), None, Theme::Cyan).unwrap();
|
2017-11-16 12:44:55 +03:00
|
|
|
assert_eq!("", article_revision.slug);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn update_article() {
|
|
|
|
init!(state);
|
|
|
|
|
2018-09-23 23:38:18 +03:00
|
|
|
let article = state.create_article(None, "Title".into(), "Body".into(), None, Theme::Cyan).unwrap();
|
2017-11-16 12:44:55 +03:00
|
|
|
|
2018-10-05 14:07:19 +03:00
|
|
|
let new_revision = state.update_article(article.article_id, article.revision, article.title.clone(), "New body".into(), None, Some(Theme::BlueGray)).unwrap().unwrap();
|
2017-11-16 12:44:55 +03:00
|
|
|
|
|
|
|
assert_eq!(article.article_id, new_revision.article_id);
|
|
|
|
|
|
|
|
// Revision numbers must actually be sequential:
|
|
|
|
assert_eq!(article.revision + 1, new_revision.revision);
|
|
|
|
|
|
|
|
assert_eq!(article.title, new_revision.title);
|
|
|
|
|
|
|
|
// Slug must remain unchanged when the title is unchanged:
|
|
|
|
assert_eq!(article.slug, new_revision.slug);
|
|
|
|
|
|
|
|
assert_eq!("New body", new_revision.body);
|
2018-09-23 23:38:18 +03:00
|
|
|
assert_eq!(Theme::BlueGray, new_revision.theme);
|
2017-11-16 12:44:55 +03:00
|
|
|
}
|
2017-11-17 18:17:05 +03:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn update_article_when_sequential_edits_then_last_wins() {
|
|
|
|
init!(state);
|
|
|
|
|
2018-09-23 23:38:18 +03:00
|
|
|
let article = state.create_article(None, "Title".into(), "Body".into(), None, Theme::Cyan).unwrap();
|
2017-11-17 18:17:05 +03:00
|
|
|
|
2018-10-05 14:07:19 +03:00
|
|
|
let first_edit = state.update_article(article.article_id, article.revision, article.title.clone(), "New body".into(), None, Some(Theme::Blue)).unwrap().unwrap();
|
|
|
|
let second_edit = state.update_article(article.article_id, first_edit.revision, article.title.clone(), "Newer body".into(), None, Some(Theme::Amber)).unwrap().unwrap();
|
2017-11-17 18:17:05 +03:00
|
|
|
|
|
|
|
assert_eq!("Newer body", second_edit.body);
|
2018-09-23 23:38:18 +03:00
|
|
|
assert_eq!(Theme::Amber, second_edit.theme);
|
2017-11-17 18:17:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn update_article_when_edit_conflict_then_merge() {
|
|
|
|
init!(state);
|
|
|
|
|
2018-09-23 23:38:18 +03:00
|
|
|
let article = state.create_article(None, "Title".into(), "a\nb\nc\n".into(), None, Theme::Cyan).unwrap();
|
2017-11-17 18:17:05 +03:00
|
|
|
|
2018-10-05 14:07:19 +03:00
|
|
|
let first_edit = state.update_article(article.article_id, article.revision, article.title.clone(), "a\nx\nb\nc\n".into(), None, Some(Theme::Blue)).unwrap().unwrap();
|
|
|
|
let second_edit = state.update_article(article.article_id, article.revision, article.title.clone(), "a\nb\ny\nc\n".into(), None, Some(Theme::Amber)).unwrap().unwrap();
|
2017-11-17 18:17:05 +03:00
|
|
|
|
|
|
|
assert!(article.revision < first_edit.revision);
|
|
|
|
assert!(first_edit.revision < second_edit.revision);
|
|
|
|
|
|
|
|
assert_eq!("a\nx\nb\ny\nc\n", second_edit.body);
|
2018-09-23 23:38:18 +03:00
|
|
|
assert_eq!(Theme::Amber, second_edit.theme);
|
2017-11-17 18:17:05 +03:00
|
|
|
}
|
2017-11-20 14:41:14 +03:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn update_article_when_edit_conflict_then_rebase_over_multiple_revisions() {
|
|
|
|
init!(state);
|
|
|
|
|
2018-09-23 23:38:18 +03:00
|
|
|
let article = state.create_article(None, "Title".into(), "a\nb\nc\n".into(), None, Theme::Cyan).unwrap();
|
2017-11-20 14:41:14 +03:00
|
|
|
|
2018-10-05 14:07:19 +03:00
|
|
|
let edit = state.update_article(article.article_id, article.revision, article.title.clone(), "a\nx1\nb\nc\n".into(), None, Some(article.theme)).unwrap().unwrap();
|
|
|
|
let edit = state.update_article(article.article_id, edit.revision, article.title.clone(), "a\nx1\nx2\nb\nc\n".into(), None, Some(article.theme)).unwrap().unwrap();
|
|
|
|
let edit = state.update_article(article.article_id, edit.revision, article.title.clone(), "a\nx1\nx2\nx3\nb\nc\n".into(), None, Some(article.theme)).unwrap().unwrap();
|
2017-11-20 14:41:14 +03:00
|
|
|
|
2018-10-05 14:07:19 +03:00
|
|
|
let rebase_edit = state.update_article(article.article_id, article.revision, article.title.clone(), "a\nb\ny\nc\n".into(), None, Some(article.theme)).unwrap().unwrap();
|
2017-11-20 14:41:14 +03:00
|
|
|
|
|
|
|
assert!(article.revision < edit.revision);
|
|
|
|
assert!(edit.revision < rebase_edit.revision);
|
|
|
|
|
|
|
|
assert_eq!("a\nx1\nx2\nx3\nb\ny\nc\n", rebase_edit.body);
|
|
|
|
}
|
2017-11-20 15:12:36 +03:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn update_article_when_title_edit_conflict_then_merge_title() {
|
|
|
|
init!(state);
|
|
|
|
|
2018-09-23 23:38:18 +03:00
|
|
|
let article = state.create_article(None, "titlle".into(), "".into(), None, Theme::Cyan).unwrap();
|
2017-11-20 15:12:36 +03:00
|
|
|
|
2018-10-05 14:07:19 +03:00
|
|
|
let first_edit = state.update_article(article.article_id, article.revision, "Titlle".into(), article.body.clone(), None, Some(article.theme)).unwrap().unwrap();
|
|
|
|
let second_edit = state.update_article(article.article_id, article.revision, "title".into(), article.body.clone(), None, Some(article.theme)).unwrap().unwrap();
|
2017-11-20 15:12:36 +03:00
|
|
|
|
|
|
|
assert!(article.revision < first_edit.revision);
|
|
|
|
assert!(first_edit.revision < second_edit.revision);
|
|
|
|
|
|
|
|
assert_eq!("Title", second_edit.title);
|
|
|
|
}
|
2017-11-20 17:08:34 +03:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn update_article_when_merge_conflict() {
|
|
|
|
init!(state);
|
|
|
|
|
2018-09-23 23:38:18 +03:00
|
|
|
let article = state.create_article(None, "Title".into(), "a".into(), None, Theme::Cyan).unwrap();
|
2017-11-20 17:08:34 +03:00
|
|
|
|
2018-10-05 14:07:19 +03:00
|
|
|
let first_edit = state.update_article(article.article_id, article.revision, article.title.clone(), "b".into(), None, Some(Theme::Blue)).unwrap().unwrap();
|
|
|
|
let conflict_edit = state.update_article(article.article_id, article.revision, article.title.clone(), "c".into(), None, Some(Theme::Amber)).unwrap();
|
2017-11-20 17:08:34 +03:00
|
|
|
|
|
|
|
match conflict_edit {
|
|
|
|
UpdateResult::Success(..) => panic!("Expected conflict"),
|
2018-09-23 23:38:18 +03:00
|
|
|
UpdateResult::RebaseConflict(RebaseConflict { base_article, title, body, theme }) => {
|
2017-11-20 18:48:31 +03:00
|
|
|
assert_eq!(first_edit.revision, base_article.revision);
|
2017-11-20 17:08:34 +03:00
|
|
|
assert_eq!(title, merge::MergeResult::Clean(article.title.clone()));
|
|
|
|
assert_eq!(body, merge::MergeResult::Conflicted(vec![
|
|
|
|
merge::Output::Conflict(vec!["c"], vec!["a"], vec!["b"]),
|
|
|
|
]).to_strings());
|
2018-09-23 23:38:18 +03:00
|
|
|
assert_eq!(Theme::Amber, theme);
|
2017-11-20 17:08:34 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2018-09-23 23:38:18 +03:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn update_article_when_theme_conflict_then_ignore_unchanged() {
|
|
|
|
init!(state);
|
|
|
|
|
|
|
|
let article = state.create_article(None, "Title".into(), "a\nb\nc\n".into(), None, Theme::Cyan).unwrap();
|
|
|
|
|
2018-10-05 14:07:19 +03:00
|
|
|
let _first_edit = state.update_article(article.article_id, article.revision, article.title.clone(), "a\nx\nb\nc\n".into(), None, Some(Theme::Blue)).unwrap().unwrap();
|
|
|
|
let second_edit = state.update_article(article.article_id, article.revision, article.title.clone(), "a\nb\ny\nc\n".into(), None, Some(Theme::Cyan)).unwrap().unwrap();
|
2018-09-23 23:38:18 +03:00
|
|
|
|
|
|
|
assert_eq!(Theme::Blue, second_edit.theme);
|
|
|
|
}
|
2018-10-05 14:07:19 +03:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn update_article_with_no_given_theme_then_theme_unchanged() {
|
|
|
|
init!(state);
|
|
|
|
|
|
|
|
let article = state.create_article(None, "Title".into(), "a\nb\nc\n".into(), None, Theme::Cyan).unwrap();
|
|
|
|
|
|
|
|
let edit = state.update_article(article.article_id, article.revision, article.title, article.body, None, None).unwrap().unwrap();
|
|
|
|
|
|
|
|
assert_eq!(Theme::Cyan, edit.theme);
|
|
|
|
}
|
2017-11-15 18:27:28 +03:00
|
|
|
}
|