Add actual templates for everything

This commit is contained in:
Bat 2018-05-09 20:09:52 +01:00
parent ae60d5961c
commit 292f4d6b27
12 changed files with 77 additions and 12 deletions

View File

@ -15,7 +15,7 @@ use models::instance::Instance;
use schema::blogs;
#[derive(Queryable, Identifiable)]
#[derive(Queryable, Identifiable, Serialize)]
pub struct Blog {
pub id: i32,
pub actor_id: String,

View File

@ -5,7 +5,7 @@ use std::iter::Iterator;
use models::users::User;
use schema::{instances, users};
#[derive(Identifiable, Queryable)]
#[derive(Identifiable, Queryable, Serialize)]
pub struct Instance {
pub id: i32,
pub public_domain: String,

View File

@ -12,7 +12,7 @@ use models::users::User;
use models::post_authors::PostAuthor;
use schema::posts;
#[derive(Queryable, Identifiable)]
#[derive(Queryable, Identifiable, Serialize)]
pub struct Post {
pub id: i32,
pub blog_id: i32,

View File

@ -14,8 +14,11 @@ use models::users::User;
use utils;
#[get("/~/<name>", rank = 2)]
fn details(name: String) -> String {
format!("Welcome on ~{}", name)
fn details(name: String, conn: DbConn) -> Template {
let blog = Blog::find_by_actor_id(&*conn, name).unwrap();
Template::render("blogs/details", json!({
"blog": blog
}))
}
#[get("/~/<name>", format = "application/activity+json", rank = 1)]

View File

@ -8,13 +8,17 @@ use db_conn::DbConn;
use models::instance::*;
#[get("/")]
fn index(conn: DbConn) -> String {
fn index(conn: DbConn) -> Template {
match Instance::get_local(&*conn) {
Some(inst) => {
format!("Welcome on {}", inst.name)
Template::render("instance/index", json!({
"instance": inst
}))
}
None => {
String::from("Not initialized")
Template::render("errors/500", json!({
"error_message": "You need to configure your instance before using it."
}))
}
}
}

View File

@ -16,10 +16,13 @@ use models::users::User;
use utils;
#[get("/~/<blog>/<slug>", rank = 4)]
fn details(blog: String, slug: String, conn: DbConn) -> String {
fn details(blog: String, slug: String, conn: DbConn) -> Template {
let blog = Blog::find_by_actor_id(&*conn, blog).unwrap();
let post = Post::find_by_slug(&*conn, slug).unwrap();
format!("{} in {}", post.title, blog.title)
Template::render("posts/details", json!({
"post": post,
"blog": blog
}))
}
#[get("/~/<_blog>/<slug>", rank = 3, format = "application/activity+json")]

View File

@ -14,8 +14,8 @@ use models::instance::Instance;
use models::users::*;
#[get("/me")]
fn me(user: User) -> String {
format!("Logged in as {}", user.username.to_string())
fn me(user: User) -> Redirect {
Redirect::to(format!("/@/{}", user.username).as_ref())
}
#[get("/@/<name>", rank = 2)]

View File

@ -0,0 +1,10 @@
{% extends "base" %}
{% block title %}
{{ blog.title }}
{% endblock title %}
{% block content %}
<h1>{{ blog.title }} (~{{ blog.actor_id }})</h1>
<p>{{ blog.summary }}</p>
{% endblock content %}

View File

@ -0,0 +1,6 @@
{% extends "errors/base" %}
{% block error %}
<h1>Something broke on our side.</h1>
<h2>Sorry about that. If you think this is a bug, please report it.</h2>
{% endblock error %}

View File

@ -0,0 +1,15 @@
{% extends "base" %}
{% block title %}
{{ error_message }}
{% endblock title %}
{% block content %}
<main class="error">
{% block error %}
{% endblock error %}
<p>
{{ error_message }}
</p>
</main>
{% endblock content %}

View File

@ -0,0 +1,9 @@
{% extends "base" %}
{% block title %}
{{ instance.name }}
{% endblock title %}
{% block content %}
<h1>Welcome on {{ instance.name }}</h1>
{% endblock content %}

View File

@ -0,0 +1,15 @@
{% extends "base" %}
{% block title %}
{{ post.title }}
{% endblock title %}
{% block content %}
<h1>{{ post.title }}</h1>
<p>Published in {{ blog.title }}</p>
<hr>
<p>
{{ post.content | safe }}
</p>
<p>License: {{ post.license }}</p>
{% endblock content %}