2018-04-23 12:29:27 +02:00
|
|
|
use diesel;
|
|
|
|
use diesel::{QueryDsl, RunQueryDsl, ExpressionMethods, PgConnection};
|
|
|
|
use schema::blogs;
|
2018-04-23 14:00:11 +02:00
|
|
|
use activity_pub::Actor;
|
|
|
|
use models::instance::Instance;
|
2018-04-23 12:29:27 +02:00
|
|
|
|
|
|
|
#[derive(Queryable, Identifiable)]
|
|
|
|
pub struct Blog {
|
|
|
|
pub id: i32,
|
|
|
|
pub actor_id: String,
|
|
|
|
pub title: String,
|
|
|
|
pub summary: String,
|
|
|
|
pub outbox_url: String,
|
|
|
|
pub inbox_url: String,
|
|
|
|
pub instance_id: i32
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Insertable)]
|
|
|
|
#[table_name = "blogs"]
|
|
|
|
pub struct NewBlog {
|
|
|
|
pub actor_id: String,
|
|
|
|
pub title: String,
|
|
|
|
pub summary: String,
|
|
|
|
pub outbox_url: String,
|
|
|
|
pub inbox_url: String,
|
|
|
|
pub instance_id: i32
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Blog {
|
|
|
|
pub fn insert (conn: &PgConnection, new: NewBlog) -> Blog {
|
|
|
|
diesel::insert_into(blogs::table)
|
|
|
|
.values(new)
|
|
|
|
.get_result(conn)
|
|
|
|
.expect("Error saving new blog")
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get(conn: &PgConnection, id: i32) -> Option<Blog> {
|
|
|
|
blogs::table.filter(blogs::id.eq(id))
|
|
|
|
.limit(1)
|
|
|
|
.load::<Blog>(conn)
|
|
|
|
.expect("Error loading blog by id")
|
|
|
|
.into_iter().nth(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn find_by_actor_id(conn: &PgConnection, username: String) -> Option<Blog> {
|
|
|
|
blogs::table.filter(blogs::actor_id.eq(username))
|
|
|
|
.limit(1)
|
|
|
|
.load::<Blog>(conn)
|
|
|
|
.expect("Error loading blog by email")
|
|
|
|
.into_iter().nth(0)
|
|
|
|
}
|
2018-04-23 15:12:59 +02:00
|
|
|
|
|
|
|
pub fn update_boxes(&self, conn: &PgConnection) {
|
|
|
|
if self.outbox_url.len() == 0 {
|
|
|
|
diesel::update(self)
|
|
|
|
.set(blogs::outbox_url.eq(self.compute_outbox(conn)))
|
|
|
|
.get_result::<Blog>(conn).expect("Couldn't update outbox URL");
|
|
|
|
}
|
|
|
|
|
|
|
|
if self.inbox_url.len() == 0 {
|
|
|
|
diesel::update(self)
|
|
|
|
.set(blogs::inbox_url.eq(self.compute_inbox(conn)))
|
|
|
|
.get_result::<Blog>(conn).expect("Couldn't update inbox URL");
|
|
|
|
}
|
|
|
|
}
|
2018-04-23 12:29:27 +02:00
|
|
|
}
|
2018-04-23 14:00:11 +02:00
|
|
|
|
|
|
|
impl Actor for Blog {
|
|
|
|
fn get_box_prefix() -> &'static str {
|
|
|
|
"~"
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_actor_id(&self) -> String {
|
|
|
|
self.actor_id.to_string()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_instance(&self, conn: &PgConnection) -> Instance {
|
|
|
|
Instance::get(conn, self.instance_id).unwrap()
|
|
|
|
}
|
|
|
|
}
|
2018-04-23 15:12:59 +02:00
|
|
|
|
|
|
|
impl NewBlog {
|
|
|
|
pub fn new_local(
|
|
|
|
actor_id: String,
|
|
|
|
title: String,
|
|
|
|
summary: String,
|
|
|
|
instance_id: i32
|
|
|
|
) -> NewBlog {
|
|
|
|
NewBlog {
|
|
|
|
actor_id: actor_id,
|
|
|
|
title: title,
|
|
|
|
summary: summary,
|
|
|
|
outbox_url: String::from(""),
|
|
|
|
inbox_url: String::from(""),
|
|
|
|
instance_id: instance_id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|