2018-09-02 13:34:48 +02:00
|
|
|
use diesel::{self, PgConnection, QueryDsl, ExpressionMethods, RunQueryDsl};
|
2018-09-02 22:55:42 +02:00
|
|
|
use serde_json;
|
|
|
|
|
|
|
|
use ap_url;
|
|
|
|
use instance::Instance;
|
2018-09-02 13:34:48 +02:00
|
|
|
use schema::medias;
|
|
|
|
|
2018-09-02 22:55:42 +02:00
|
|
|
#[derive(Queryable, Serialize)]
|
2018-09-02 13:34:48 +02:00
|
|
|
pub struct Media {
|
|
|
|
pub id: i32,
|
|
|
|
pub file_path: String,
|
|
|
|
pub alt_text: String,
|
|
|
|
pub is_remote: bool,
|
|
|
|
pub remote_url: Option<String>,
|
|
|
|
pub sensitive: bool,
|
2018-09-02 22:55:42 +02:00
|
|
|
pub content_warning: Option<String>,
|
|
|
|
pub owner_id: i32
|
2018-09-02 13:34:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Insertable)]
|
|
|
|
#[table_name = "medias"]
|
|
|
|
pub struct NewMedia {
|
|
|
|
pub file_path: String,
|
|
|
|
pub alt_text: String,
|
|
|
|
pub is_remote: bool,
|
|
|
|
pub remote_url: Option<String>,
|
|
|
|
pub sensitive: bool,
|
2018-09-02 22:55:42 +02:00
|
|
|
pub content_warning: Option<String>,
|
|
|
|
pub owner_id: i32
|
2018-09-02 13:34:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Media {
|
|
|
|
insert!(medias, NewMedia);
|
|
|
|
get!(medias);
|
2018-09-02 22:55:42 +02:00
|
|
|
list_by!(medias, for_user, owner_id as i32);
|
|
|
|
|
|
|
|
pub fn to_json(&self, conn: &PgConnection) -> serde_json::Value {
|
|
|
|
let mut json = serde_json::to_value(self).unwrap();
|
|
|
|
let (preview, html) = match self.file_path.rsplitn(2, '.').next().unwrap() {
|
|
|
|
"png" | "jpg" | "jpeg" | "gif" => (
|
|
|
|
format!("<img src=\"{}\" alt=\"{}\" title=\"{}\" class=\"preview\">", self.url(conn), self.alt_text, self.alt_text),
|
|
|
|
format!("<img src=\"{}\" alt=\"{}\" title=\"{}\">", self.url(conn), self.alt_text, self.alt_text)
|
|
|
|
),
|
|
|
|
"mp3" | "wav" | "flac" => (
|
|
|
|
format!("<audio src=\"{}\" title=\"{}\" class=\"preview\"></audio>", self.url(conn), self.alt_text),
|
|
|
|
format!("<audio src=\"{}\" title=\"{}\"></audio>", self.url(conn), self.alt_text)
|
|
|
|
),
|
|
|
|
"mp4" | "avi" | "webm" | "mov" => (
|
|
|
|
format!("<video src=\"{}\" title=\"{}\" class=\"preview\"></video>", self.url(conn), self.alt_text),
|
|
|
|
format!("<video src=\"{}\" title=\"{}\"></video>", self.url(conn), self.alt_text)
|
|
|
|
),
|
|
|
|
_ => (String::new(), String::new())
|
|
|
|
};
|
|
|
|
json["html_preview"] = json!(preview);
|
|
|
|
json["html"] = json!(html);
|
|
|
|
json
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn url(&self, conn: &PgConnection) -> String {
|
|
|
|
ap_url(format!("{}/static/{}", Instance::get_local(conn).unwrap().public_domain, self.file_path))
|
|
|
|
}
|
2018-09-02 13:34:48 +02:00
|
|
|
}
|