2018-06-21 17:09:18 +00:00
|
|
|
use activitypub::object::Article;
|
2018-09-10 18:38:19 +00:00
|
|
|
use chrono::Utc;
|
2018-09-05 20:18:27 +00:00
|
|
|
use heck::{CamelCase, KebabCase};
|
2018-07-26 15:38:22 +00:00
|
|
|
use rocket::{State, request::LenientForm};
|
2018-06-04 19:57:03 +00:00
|
|
|
use rocket::response::{Redirect, Flash};
|
2018-04-23 14:25:39 +00:00
|
|
|
use rocket_contrib::Template;
|
2018-05-10 09:44:57 +00:00
|
|
|
use serde_json;
|
2018-07-07 20:51:48 +00:00
|
|
|
use std::{collections::HashMap, borrow::Cow};
|
2018-07-06 09:51:19 +00:00
|
|
|
use validator::{Validate, ValidationError, ValidationErrors};
|
2018-07-26 15:38:22 +00:00
|
|
|
use workerpool::{Pool, thunk::*};
|
2018-04-23 14:25:39 +00:00
|
|
|
|
2018-09-01 15:28:47 +00:00
|
|
|
use plume_common::activity_pub::{broadcast, ActivityStream, ApRequest, inbox::Deletable};
|
2018-06-23 16:36:11 +00:00
|
|
|
use plume_common::utils;
|
|
|
|
use plume_models::{
|
2018-05-19 07:39:59 +00:00
|
|
|
blogs::*,
|
2018-06-23 16:36:11 +00:00
|
|
|
db_conn::DbConn,
|
2018-05-19 07:39:59 +00:00
|
|
|
comments::Comment,
|
2018-07-27 18:31:47 +00:00
|
|
|
instance::Instance,
|
2018-06-20 20:58:11 +00:00
|
|
|
mentions::Mention,
|
2018-05-19 07:39:59 +00:00
|
|
|
post_authors::*,
|
|
|
|
posts::*,
|
2018-06-23 16:36:11 +00:00
|
|
|
safe_string::SafeString,
|
2018-09-05 20:18:27 +00:00
|
|
|
tags::*,
|
2018-05-19 07:39:59 +00:00
|
|
|
users::User
|
|
|
|
};
|
2018-06-26 22:19:18 +00:00
|
|
|
|
|
|
|
#[derive(FromForm)]
|
|
|
|
struct CommentQuery {
|
|
|
|
responding_to: Option<i32>
|
|
|
|
}
|
2018-04-23 14:25:39 +00:00
|
|
|
|
2018-06-21 14:00:25 +00:00
|
|
|
// See: https://github.com/SergioBenitez/Rocket/pull/454
|
2018-05-04 11:09:08 +00:00
|
|
|
#[get("/~/<blog>/<slug>", rank = 4)]
|
2018-05-10 20:31:52 +00:00
|
|
|
fn details(blog: String, slug: String, conn: DbConn, user: Option<User>) -> Template {
|
2018-06-21 14:00:25 +00:00
|
|
|
details_response(blog, slug, conn, user, None)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[get("/~/<blog>/<slug>?<query>")]
|
|
|
|
fn details_response(blog: String, slug: String, conn: DbConn, user: Option<User>, query: Option<CommentQuery>) -> Template {
|
2018-09-03 13:59:02 +00:00
|
|
|
may_fail!(user.map(|u| u.to_json(&*conn)), Blog::find_by_fqn(&*conn, blog), "Couldn't find this blog", |blog| {
|
|
|
|
may_fail!(user.map(|u| u.to_json(&*conn)), Post::find_by_slug(&*conn, slug, blog.id), "Couldn't find this post", |post| {
|
2018-09-12 15:58:38 +00:00
|
|
|
if post.published || post.get_authors(&*conn).into_iter().any(|a| a.id == user.clone().map(|u| u.id).unwrap_or(0)) {
|
|
|
|
let comments = Comment::list_by_post(&*conn, post.id);
|
|
|
|
let comms = comments.clone();
|
|
|
|
|
|
|
|
Template::render("posts/details", json!({
|
|
|
|
"author": post.get_authors(&*conn)[0].to_json(&*conn),
|
|
|
|
"article": post.to_json(&*conn),
|
|
|
|
"blog": blog.to_json(&*conn),
|
|
|
|
"comments": &comments.into_iter().filter_map(|c| if c.in_response_to_id.is_none() {
|
|
|
|
Some(c.to_json(&*conn, &comms))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}).collect::<Vec<serde_json::Value>>(),
|
|
|
|
"n_likes": post.get_likes(&*conn).len(),
|
|
|
|
"has_liked": user.clone().map(|u| u.has_liked(&*conn, &post)).unwrap_or(false),
|
|
|
|
"n_reshares": post.get_reshares(&*conn).len(),
|
|
|
|
"has_reshared": user.clone().map(|u| u.has_reshared(&*conn, &post)).unwrap_or(false),
|
|
|
|
"account": &user.clone().map(|u| u.to_json(&*conn)),
|
|
|
|
"date": &post.creation_date.timestamp(),
|
|
|
|
"previous": query.and_then(|q| q.responding_to.map(|r| Comment::get(&*conn, r).expect("Error retrieving previous comment").to_json(&*conn, &vec![]))),
|
|
|
|
"user_fqn": user.clone().map(|u| u.get_fqn(&*conn)).unwrap_or(String::new()),
|
|
|
|
"is_author": user.clone().map(|u| post.get_authors(&*conn).into_iter().any(|a| u.id == a.id)).unwrap_or(false),
|
|
|
|
"is_following": user.map(|u| u.is_following(&*conn, post.get_authors(&*conn)[0].id)).unwrap_or(false)
|
|
|
|
}))
|
|
|
|
} else {
|
|
|
|
Template::render("errors/403", json!({
|
|
|
|
"error_message": "This post isn't published yet."
|
|
|
|
}))
|
|
|
|
}
|
2018-06-18 17:28:28 +00:00
|
|
|
})
|
|
|
|
})
|
2018-04-23 14:25:39 +00:00
|
|
|
}
|
|
|
|
|
2018-07-11 15:30:01 +00:00
|
|
|
#[get("/~/<blog>/<slug>", rank = 3)]
|
2018-09-12 15:58:38 +00:00
|
|
|
fn activity_details(blog: String, slug: String, conn: DbConn, _ap: ApRequest) -> Result<ActivityStream<Article>, String> {
|
2018-06-19 19:16:18 +00:00
|
|
|
let blog = Blog::find_by_fqn(&*conn, blog).unwrap();
|
|
|
|
let post = Post::find_by_slug(&*conn, slug, blog.id).unwrap();
|
2018-09-12 15:58:38 +00:00
|
|
|
if post.published {
|
|
|
|
Ok(ActivityStream::new(post.into_activity(&*conn)))
|
|
|
|
} else {
|
|
|
|
Err(String::from("Not published yet."))
|
|
|
|
}
|
2018-04-23 14:25:39 +00:00
|
|
|
}
|
|
|
|
|
2018-06-04 19:57:03 +00:00
|
|
|
#[get("/~/<blog>/new", rank = 2)]
|
|
|
|
fn new_auth(blog: String) -> Flash<Redirect> {
|
2018-09-07 23:11:27 +00:00
|
|
|
utils::requires_login(
|
|
|
|
"You need to be logged in order to write a new post",
|
|
|
|
uri!(new: blog = blog).into()
|
|
|
|
)
|
2018-04-23 14:25:39 +00:00
|
|
|
}
|
|
|
|
|
2018-06-19 19:16:18 +00:00
|
|
|
#[get("/~/<blog>/new", rank = 1)]
|
2018-06-20 08:44:56 +00:00
|
|
|
fn new(blog: String, user: User, conn: DbConn) -> Template {
|
|
|
|
let b = Blog::find_by_fqn(&*conn, blog.to_string()).unwrap();
|
|
|
|
|
|
|
|
if !user.is_author_in(&*conn, b.clone()) {
|
|
|
|
Template::render("errors/403", json!({
|
|
|
|
"error_message": "You are not author in this blog."
|
|
|
|
}))
|
|
|
|
} else {
|
|
|
|
Template::render("posts/new", json!({
|
2018-09-03 13:59:02 +00:00
|
|
|
"account": user.to_json(&*conn),
|
2018-07-27 18:31:47 +00:00
|
|
|
"instance": Instance::get_local(&*conn),
|
2018-09-06 21:39:22 +00:00
|
|
|
"editing": false,
|
2018-07-06 17:29:36 +00:00
|
|
|
"errors": null,
|
2018-09-10 18:38:19 +00:00
|
|
|
"form": null,
|
|
|
|
"is_draft": true,
|
2018-06-20 08:44:56 +00:00
|
|
|
}))
|
|
|
|
}
|
2018-05-04 11:09:08 +00:00
|
|
|
}
|
|
|
|
|
2018-09-06 21:39:22 +00:00
|
|
|
#[get("/~/<blog>/<slug>/edit")]
|
|
|
|
fn edit(blog: String, slug: String, user: User, conn: DbConn) -> Template {
|
|
|
|
let b = Blog::find_by_fqn(&*conn, blog.to_string());
|
|
|
|
let post = b.clone().and_then(|blog| Post::find_by_slug(&*conn, slug, blog.id)).expect("Post to edit not found");
|
|
|
|
|
|
|
|
if !user.is_author_in(&*conn, b.clone().unwrap()) {
|
|
|
|
Template::render("errors/403", json!({
|
|
|
|
"error_message": "You are not author in this blog."
|
|
|
|
}))
|
|
|
|
} else {
|
2018-09-08 11:05:22 +00:00
|
|
|
let source = if post.source.clone().len() > 0 {
|
|
|
|
post.source.clone()
|
|
|
|
} else {
|
|
|
|
post.content.clone().get().clone() // fallback to HTML if the markdown was not stored
|
|
|
|
};
|
|
|
|
|
2018-09-06 21:39:22 +00:00
|
|
|
Template::render("posts/new", json!({
|
|
|
|
"account": user.to_json(&*conn),
|
|
|
|
"instance": Instance::get_local(&*conn),
|
|
|
|
"editing": true,
|
|
|
|
"errors": null,
|
|
|
|
"form": NewPostForm {
|
|
|
|
title: post.title.clone(),
|
|
|
|
subtitle: post.subtitle.clone(),
|
2018-09-08 11:05:22 +00:00
|
|
|
content: source,
|
2018-09-06 21:39:22 +00:00
|
|
|
tags: Tag::for_post(&*conn, post.id)
|
|
|
|
.into_iter()
|
|
|
|
.map(|t| t.tag)
|
|
|
|
.collect::<Vec<String>>()
|
|
|
|
.join(", "),
|
|
|
|
license: post.license.clone(),
|
2018-09-10 18:38:19 +00:00
|
|
|
draft: true,
|
|
|
|
},
|
|
|
|
"is_draft": !post.published
|
2018-09-06 21:39:22 +00:00
|
|
|
}))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[post("/~/<blog>/<slug>/edit", data = "<data>")]
|
|
|
|
fn update(blog: String, slug: String, user: User, conn: DbConn, data: LenientForm<NewPostForm>, worker: State<Pool<ThunkWorker<()>>>) -> Result<Redirect, Template> {
|
|
|
|
let b = Blog::find_by_fqn(&*conn, blog.to_string());
|
2018-09-07 17:51:53 +00:00
|
|
|
let mut post = b.clone().and_then(|blog| Post::find_by_slug(&*conn, slug.clone(), blog.id)).expect("Post to update not found");
|
2018-09-06 21:39:22 +00:00
|
|
|
|
|
|
|
let form = data.get();
|
|
|
|
let new_slug = form.title.to_string().to_kebab_case();
|
|
|
|
|
|
|
|
let mut errors = match form.validate() {
|
|
|
|
Ok(_) => ValidationErrors::new(),
|
|
|
|
Err(e) => e
|
|
|
|
};
|
2018-09-07 17:51:53 +00:00
|
|
|
|
|
|
|
if new_slug != slug {
|
|
|
|
if let Some(_) = Post::find_by_slug(&*conn, new_slug.clone(), b.clone().unwrap().id) {
|
|
|
|
errors.add("title", ValidationError {
|
|
|
|
code: Cow::from("existing_slug"),
|
|
|
|
message: Some(Cow::from("A post with the same title already exists.")),
|
|
|
|
params: HashMap::new()
|
|
|
|
});
|
|
|
|
}
|
2018-09-06 21:39:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if errors.is_empty() {
|
|
|
|
if !user.is_author_in(&*conn, b.clone().unwrap()) {
|
|
|
|
// actually it's not "Ok"…
|
|
|
|
Ok(Redirect::to(uri!(super::blogs::details: name = blog)))
|
|
|
|
} else {
|
|
|
|
let (content, mentions) = utils::md_to_html(form.content.to_string().as_ref());
|
|
|
|
|
|
|
|
let license = if form.license.len() > 0 {
|
|
|
|
form.license.to_string()
|
|
|
|
} else {
|
|
|
|
Instance::get_local(&*conn).map(|i| i.default_license).unwrap_or(String::from("CC-0"))
|
|
|
|
};
|
|
|
|
|
2018-09-10 18:38:19 +00:00
|
|
|
// update publication date if when this article is no longer a draft
|
|
|
|
if !post.published && !form.draft {
|
|
|
|
post.published = true;
|
|
|
|
post.creation_date = Utc::now().naive_utc();
|
|
|
|
}
|
|
|
|
|
2018-09-06 21:39:22 +00:00
|
|
|
post.slug = new_slug.clone();
|
|
|
|
post.title = form.title.clone();
|
|
|
|
post.subtitle = form.subtitle.clone();
|
|
|
|
post.content = SafeString::new(&content);
|
|
|
|
post.source = form.content.clone();
|
|
|
|
post.license = license;
|
|
|
|
post.update(&*conn);
|
|
|
|
let post = post.update_ap_url(&*conn);
|
|
|
|
|
2018-09-12 16:00:00 +00:00
|
|
|
if post.published {
|
|
|
|
for m in mentions.into_iter() {
|
|
|
|
Mention::from_activity(&*conn, Mention::build_activity(&*conn, m), post.id, true, true);
|
|
|
|
}
|
2018-09-06 21:39:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let old_tags = Tag::for_post(&*conn, post.id).into_iter().map(|t| t.tag).collect::<Vec<_>>();
|
|
|
|
let tags = form.tags.split(",").map(|t| t.trim().to_camel_case()).filter(|t| t.len() > 0 && !old_tags.contains(t));
|
|
|
|
for tag in tags {
|
|
|
|
Tag::insert(&*conn, NewTag {
|
|
|
|
tag: tag,
|
|
|
|
is_hastag: false,
|
|
|
|
post_id: post.id
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-09-10 18:38:19 +00:00
|
|
|
if post.published {
|
|
|
|
let act = post.update_activity(&*conn);
|
|
|
|
let dest = User::one_by_instance(&*conn);
|
|
|
|
worker.execute(Thunk::of(move || broadcast(&user, act, dest)));
|
|
|
|
}
|
2018-09-06 21:39:22 +00:00
|
|
|
|
2018-09-07 17:51:53 +00:00
|
|
|
Ok(Redirect::to(uri!(details: blog = blog, slug = new_slug)))
|
2018-09-06 21:39:22 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Err(Template::render("posts/new", json!({
|
|
|
|
"account": user.to_json(&*conn),
|
|
|
|
"instance": Instance::get_local(&*conn),
|
2018-09-07 17:51:53 +00:00
|
|
|
"editing": true,
|
2018-09-06 21:39:22 +00:00
|
|
|
"errors": errors.inner(),
|
2018-09-10 18:38:19 +00:00
|
|
|
"form": form,
|
|
|
|
"is_draft": form.draft,
|
2018-09-06 21:39:22 +00:00
|
|
|
})))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-06 17:29:36 +00:00
|
|
|
#[derive(FromForm, Validate, Serialize)]
|
2018-04-23 14:25:39 +00:00
|
|
|
struct NewPostForm {
|
2018-07-07 20:51:48 +00:00
|
|
|
#[validate(custom(function = "valid_slug", message = "Invalid title"))]
|
2018-04-23 14:25:39 +00:00
|
|
|
pub title: String,
|
2018-09-04 11:26:13 +00:00
|
|
|
pub subtitle: String,
|
2018-04-23 14:25:39 +00:00
|
|
|
pub content: String,
|
2018-09-05 20:18:27 +00:00
|
|
|
pub tags: String,
|
2018-09-10 18:38:19 +00:00
|
|
|
pub license: String,
|
|
|
|
pub draft: bool,
|
2018-04-23 14:25:39 +00:00
|
|
|
}
|
|
|
|
|
2018-06-29 12:56:00 +00:00
|
|
|
fn valid_slug(title: &str) -> Result<(), ValidationError> {
|
|
|
|
let slug = title.to_string().to_kebab_case();
|
|
|
|
if slug.len() == 0 {
|
|
|
|
Err(ValidationError::new("empty_slug"))
|
2018-07-06 09:51:19 +00:00
|
|
|
} else if slug == "new" {
|
|
|
|
Err(ValidationError::new("invalid_slug"))
|
2018-06-29 12:56:00 +00:00
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-23 14:25:39 +00:00
|
|
|
#[post("/~/<blog_name>/new", data = "<data>")]
|
2018-07-26 15:38:22 +00:00
|
|
|
fn create(blog_name: String, data: LenientForm<NewPostForm>, user: User, conn: DbConn, worker: State<Pool<ThunkWorker<()>>>) -> Result<Redirect, Template> {
|
2018-05-13 17:00:47 +00:00
|
|
|
let blog = Blog::find_by_fqn(&*conn, blog_name.to_string()).unwrap();
|
2018-04-23 14:25:39 +00:00
|
|
|
let form = data.get();
|
|
|
|
let slug = form.title.to_string().to_kebab_case();
|
2018-09-03 13:59:02 +00:00
|
|
|
|
2018-07-06 09:51:19 +00:00
|
|
|
let mut errors = match form.validate() {
|
|
|
|
Ok(_) => ValidationErrors::new(),
|
|
|
|
Err(e) => e
|
|
|
|
};
|
2018-07-07 20:51:48 +00:00
|
|
|
if let Some(_) = Post::find_by_slug(&*conn, slug.clone(), blog.id) {
|
|
|
|
errors.add("title", ValidationError {
|
|
|
|
code: Cow::from("existing_slug"),
|
|
|
|
message: Some(Cow::from("A post with the same title already exists.")),
|
|
|
|
params: HashMap::new()
|
|
|
|
});
|
2018-07-06 09:51:19 +00:00
|
|
|
}
|
2018-05-24 10:42:45 +00:00
|
|
|
|
2018-07-06 09:51:19 +00:00
|
|
|
if errors.is_empty() {
|
|
|
|
if !user.is_author_in(&*conn, blog.clone()) {
|
|
|
|
// actually it's not "Ok"…
|
|
|
|
Ok(Redirect::to(uri!(super::blogs::details: name = blog_name)))
|
2018-06-20 08:44:56 +00:00
|
|
|
} else {
|
2018-06-20 20:58:11 +00:00
|
|
|
let (content, mentions) = utils::md_to_html(form.content.to_string().as_ref());
|
2018-05-24 10:42:45 +00:00
|
|
|
|
2018-06-20 08:44:56 +00:00
|
|
|
let post = Post::insert(&*conn, NewPost {
|
|
|
|
blog_id: blog.id,
|
|
|
|
slug: slug.to_string(),
|
|
|
|
title: form.title.to_string(),
|
|
|
|
content: SafeString::new(&content),
|
2018-09-10 18:38:19 +00:00
|
|
|
published: !form.draft,
|
2018-07-27 18:31:47 +00:00
|
|
|
license: if form.license.len() > 0 {
|
|
|
|
form.license.to_string()
|
|
|
|
} else {
|
|
|
|
Instance::get_local(&*conn).map(|i| i.default_license).unwrap_or(String::from("CC-0"))
|
|
|
|
},
|
2018-07-26 22:29:21 +00:00
|
|
|
ap_url: "".to_string(),
|
2018-09-04 11:26:13 +00:00
|
|
|
creation_date: None,
|
2018-09-06 19:00:55 +00:00
|
|
|
subtitle: form.subtitle.clone(),
|
|
|
|
source: form.content.clone(),
|
2018-06-20 08:44:56 +00:00
|
|
|
});
|
2018-06-22 15:17:53 +00:00
|
|
|
let post = post.update_ap_url(&*conn);
|
2018-06-20 08:44:56 +00:00
|
|
|
PostAuthor::insert(&*conn, NewPostAuthor {
|
|
|
|
post_id: post.id,
|
|
|
|
author_id: user.id
|
|
|
|
});
|
2018-05-01 15:51:49 +00:00
|
|
|
|
2018-09-05 20:18:27 +00:00
|
|
|
let tags = form.tags.split(",").map(|t| t.trim().to_camel_case()).filter(|t| t.len() > 0);
|
|
|
|
for tag in tags {
|
|
|
|
Tag::insert(&*conn, NewTag {
|
|
|
|
tag: tag,
|
|
|
|
is_hastag: false,
|
|
|
|
post_id: post.id
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-09-10 18:38:19 +00:00
|
|
|
if post.published {
|
|
|
|
for m in mentions.into_iter() {
|
|
|
|
Mention::from_activity(&*conn, Mention::build_activity(&*conn, m), post.id, true, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
let act = post.create_activity(&*conn);
|
|
|
|
let dest = User::one_by_instance(&*conn);
|
|
|
|
worker.execute(Thunk::of(move || broadcast(&user, act, dest)));
|
|
|
|
}
|
2018-05-01 15:51:49 +00:00
|
|
|
|
2018-07-06 09:51:19 +00:00
|
|
|
Ok(Redirect::to(uri!(details: blog = blog_name, slug = slug)))
|
2018-06-20 08:44:56 +00:00
|
|
|
}
|
2018-07-06 09:51:19 +00:00
|
|
|
} else {
|
|
|
|
Err(Template::render("posts/new", json!({
|
2018-09-03 13:59:02 +00:00
|
|
|
"account": user.to_json(&*conn),
|
|
|
|
"instance": Instance::get_local(&*conn),
|
2018-09-06 21:39:22 +00:00
|
|
|
"editing": false,
|
2018-07-06 17:29:36 +00:00
|
|
|
"errors": errors.inner(),
|
2018-09-10 18:38:19 +00:00
|
|
|
"form": form,
|
|
|
|
"is_draft": form.draft
|
2018-07-06 09:51:19 +00:00
|
|
|
})))
|
2018-06-19 19:16:18 +00:00
|
|
|
}
|
2018-04-23 14:25:39 +00:00
|
|
|
}
|
2018-09-01 15:28:47 +00:00
|
|
|
|
2018-09-01 15:46:23 +00:00
|
|
|
#[get("/~/<blog_name>/<slug>/delete")]
|
2018-09-01 15:28:47 +00:00
|
|
|
fn delete(blog_name: String, slug: String, conn: DbConn, user: User, worker: State<Pool<ThunkWorker<()>>>) -> Redirect {
|
|
|
|
let post = Blog::find_by_fqn(&*conn, blog_name.clone())
|
|
|
|
.and_then(|blog| Post::find_by_slug(&*conn, slug.clone(), blog.id));
|
|
|
|
|
|
|
|
if let Some(post) = post {
|
|
|
|
if !post.get_authors(&*conn).into_iter().any(|a| a.id == user.id) {
|
|
|
|
Redirect::to(uri!(details: blog = blog_name.clone(), slug = slug.clone()))
|
|
|
|
} else {
|
2018-09-09 11:19:11 +00:00
|
|
|
let dest = User::one_by_instance(&*conn);
|
2018-09-01 15:28:47 +00:00
|
|
|
let delete_activity = post.delete(&*conn);
|
2018-09-09 11:19:11 +00:00
|
|
|
worker.execute(Thunk::of(move || broadcast(&user, delete_activity, dest)));
|
2018-09-01 15:28:47 +00:00
|
|
|
|
|
|
|
Redirect::to(uri!(super::blogs::details: name = blog_name))
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Redirect::to(uri!(super::blogs::details: name = blog_name))
|
|
|
|
}
|
|
|
|
}
|