Plume/src/models/instance.rs

71 lines
1.9 KiB
Rust
Raw Normal View History

2018-04-30 19:46:27 +02:00
use chrono::NaiveDateTime;
2018-04-24 11:21:39 +02:00
use diesel::{self, QueryDsl, RunQueryDsl, ExpressionMethods, PgConnection};
2018-05-13 19:39:18 +02:00
use serde_json;
use std::iter::Iterator;
2018-04-24 11:21:39 +02:00
2018-05-13 19:39:18 +02:00
use activity_pub::inbox::Inbox;
2018-04-23 17:19:28 +02:00
use models::users::User;
2018-04-24 11:21:39 +02:00
use schema::{instances, users};
2018-05-09 21:09:52 +02:00
#[derive(Identifiable, Queryable, Serialize)]
pub struct Instance {
pub id: i32,
pub public_domain: String,
pub name: String,
pub local: bool,
2018-04-30 19:46:27 +02:00
pub blocked: bool,
pub creation_date: NaiveDateTime
}
#[derive(Insertable)]
#[table_name = "instances"]
pub struct NewInstance {
pub public_domain: String,
pub name: String,
pub local: bool
}
impl Instance {
pub fn get_local(conn: &PgConnection) -> Option<Instance> {
instances::table.filter(instances::local.eq(true))
.limit(1)
.load::<Instance>(conn)
.expect("Error loading local instance infos")
.into_iter().nth(0)
}
2018-05-01 17:51:49 +02:00
pub fn get_remotes(conn: &PgConnection) -> Vec<Instance> {
instances::table.filter(instances::local.eq(false))
.load::<Instance>(conn)
.expect("Error loading remote instances infos")
}
2018-05-01 13:48:19 +02:00
pub fn local_id(conn: &PgConnection) -> i32 {
Instance::get_local(conn).unwrap().id
}
insert!(instances, NewInstance);
get!(instances);
find_by!(instances, find_by_domain, public_domain as String);
2018-05-01 13:48:19 +02:00
pub fn block(&self) {
unimplemented!()
}
pub fn has_admin(&self, conn: &PgConnection) -> bool {
users::table.filter(users::instance_id.eq(self.id))
.filter(users::is_admin.eq(true))
.load::<User>(conn)
.expect("Couldn't load admins")
.len() > 0
}
}
2018-05-13 19:39:18 +02:00
impl Inbox for Instance {
fn received(&self, conn: &PgConnection, act: serde_json::Value) {
2018-06-18 13:32:03 +02:00
self.save(conn, act.clone()).expect("Shared Inbox: Couldn't save activity");
2018-05-13 19:39:18 +02:00
// TODO: add to stream, or whatever needs to be done
}
}