feat(handlers): Add thread submission handler
This commit is contained in:
parent
fc7ca2900d
commit
094b1e0722
3 changed files with 17 additions and 1 deletions
|
@ -74,3 +74,18 @@ pub fn forum_thread(state: State<AppState>, thread_id: Path<i32>) -> ConverseRes
|
||||||
})
|
})
|
||||||
.responder()
|
.responder()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// This handler receives a "New thread"-form and redirects the user
|
||||||
|
/// to the new thread after creation.
|
||||||
|
pub fn submit_thread(state: State<AppState>, input: Form<NewThread>) -> ConverseResponse {
|
||||||
|
state.db.send(CreateThread(input.0))
|
||||||
|
.from_err()
|
||||||
|
.and_then(move |res| {
|
||||||
|
let thread = res?;
|
||||||
|
info!("Created new thread \"{}\" with ID {}", thread.title, thread.id);
|
||||||
|
Ok(HttpResponse::TemporaryRedirect()
|
||||||
|
.header("Location", format!("/thread/{}", thread.id))
|
||||||
|
.finish())
|
||||||
|
})
|
||||||
|
.responder()
|
||||||
|
}
|
||||||
|
|
|
@ -61,6 +61,7 @@ fn main() {
|
||||||
App::with_state(AppState { db: db_addr.clone(), tera })
|
App::with_state(AppState { db: db_addr.clone(), tera })
|
||||||
.middleware(middleware::Logger::default())
|
.middleware(middleware::Logger::default())
|
||||||
.resource("/", |r| r.method(Method::GET).with(forum_index))
|
.resource("/", |r| r.method(Method::GET).with(forum_index))
|
||||||
|
.resource("/thread", |r| r.method(Method::POST).with2(submit_thread))
|
||||||
.resource("/thread/{id}", |r| r.method(Method::GET).with2(forum_thread))})
|
.resource("/thread/{id}", |r| r.method(Method::GET).with2(forum_thread))})
|
||||||
.bind(&bind_host).expect(&format!("Could not bind on '{}'", bind_host))
|
.bind(&bind_host).expect(&format!("Could not bind on '{}'", bind_host))
|
||||||
.start();
|
.start();
|
||||||
|
|
|
@ -18,7 +18,7 @@ pub struct Post {
|
||||||
pub posted: DateTime<Utc>,
|
pub posted: DateTime<Utc>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Insertable)]
|
#[derive(Deserialize, Insertable)]
|
||||||
#[table_name="threads"]
|
#[table_name="threads"]
|
||||||
pub struct NewThread {
|
pub struct NewThread {
|
||||||
pub title: String,
|
pub title: String,
|
||||||
|
|
Loading…
Reference in a new issue