feat(db): Implement handling of 'SearchPosts' message

Adds support for executing full-text search across a forum instance by
sending the `SearchPosts` message with a search query to the DB actor.

The struct used for results is mapped manually to the expected query
result as the query is embedded via raw SQL.
This commit is contained in:
Vincent Ambo 2018-04-14 20:28:30 +02:00 committed by Vincent Ambo
parent 2d8db52010
commit 31b0a550f2
2 changed files with 61 additions and 1 deletions

View file

@ -16,6 +16,7 @@
use chrono::prelude::{DateTime, Utc};
use schema::{threads, posts};
use diesel::sql_types::{Text, Integer};
#[derive(Identifiable, Queryable, Serialize)]
pub struct Thread {
@ -69,3 +70,23 @@ pub struct NewPost {
pub author_name: String,
pub author_email: String,
}
/// This struct models the response of a full-text search query. It
/// does not use a table/schema definition struct like the other
/// tables, as no table of this type actually exists.
#[derive(QueryableByName, Debug)]
pub struct SearchResult {
#[sql_type = "Integer"]
pub post_id: i32,
#[sql_type = "Integer"]
pub thread_id: i32,
#[sql_type = "Text"]
pub author: String,
#[sql_type = "Text"]
pub title: String,
/// Headline represents the result of Postgres' ts_headline()
/// function, which highlights search terms in the search results.
#[sql_type = "Text"]
pub headline: String,
}