2022-10-27 09:24:07 +00:00
|
|
|
use crate::newtypes::{DbUrl, InstanceId, SiteId};
|
2022-05-03 17:44:13 +00:00
|
|
|
#[cfg(feature = "full")]
|
|
|
|
use crate::schema::site;
|
2023-07-13 14:12:01 +00:00
|
|
|
use chrono::NaiveDateTime;
|
2022-11-02 19:18:22 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2023-04-26 04:26:10 +00:00
|
|
|
use serde_with::skip_serializing_none;
|
|
|
|
#[cfg(feature = "full")]
|
|
|
|
use ts_rs::TS;
|
2022-11-02 19:18:22 +00:00
|
|
|
use typed_builder::TypedBuilder;
|
2022-05-03 17:44:13 +00:00
|
|
|
|
2023-04-26 04:26:10 +00:00
|
|
|
#[skip_serializing_none]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[derive(PartialEq, Eq, Debug, Clone, Serialize, Deserialize)]
|
2023-04-26 04:26:10 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(Queryable, Identifiable, TS))]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(table_name = site))]
|
2023-04-26 04:26:10 +00:00
|
|
|
#[cfg_attr(feature = "full", ts(export))]
|
2023-05-10 19:20:39 +00:00
|
|
|
/// The site.
|
2020-12-21 13:38:34 +00:00
|
|
|
pub struct Site {
|
2022-10-06 18:27:58 +00:00
|
|
|
pub id: SiteId,
|
2020-12-21 13:38:34 +00:00
|
|
|
pub name: String,
|
2023-05-10 19:20:39 +00:00
|
|
|
/// A sidebar for the site in markdown.
|
2021-04-07 11:40:35 +00:00
|
|
|
pub sidebar: Option<String>,
|
2023-07-13 14:12:01 +00:00
|
|
|
pub published: NaiveDateTime,
|
|
|
|
pub updated: Option<NaiveDateTime>,
|
2023-05-10 19:20:39 +00:00
|
|
|
/// An icon URL.
|
2021-03-02 12:41:48 +00:00
|
|
|
pub icon: Option<DbUrl>,
|
2023-05-10 19:20:39 +00:00
|
|
|
/// A banner url.
|
2021-03-02 12:41:48 +00:00
|
|
|
pub banner: Option<DbUrl>,
|
2023-05-10 19:20:39 +00:00
|
|
|
/// A shorter, one-line description of the site.
|
2021-04-07 11:40:35 +00:00
|
|
|
pub description: Option<String>,
|
2023-05-10 19:20:39 +00:00
|
|
|
/// The federated actor_id.
|
2022-02-07 19:23:12 +00:00
|
|
|
pub actor_id: DbUrl,
|
2023-05-10 19:20:39 +00:00
|
|
|
/// The time the site was last refreshed.
|
2023-07-13 14:12:01 +00:00
|
|
|
pub last_refreshed_at: NaiveDateTime,
|
2023-05-10 19:20:39 +00:00
|
|
|
/// The site inbox
|
2022-02-07 19:23:12 +00:00
|
|
|
pub inbox_url: DbUrl,
|
|
|
|
pub private_key: Option<String>,
|
|
|
|
pub public_key: String,
|
2022-10-27 09:24:07 +00:00
|
|
|
pub instance_id: InstanceId,
|
2020-12-21 13:38:34 +00:00
|
|
|
}
|
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
#[derive(Clone, TypedBuilder)]
|
|
|
|
#[builder(field_defaults(default))]
|
2022-05-03 17:44:13 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(table_name = site))]
|
2022-10-27 09:24:07 +00:00
|
|
|
pub struct SiteInsertForm {
|
|
|
|
#[builder(!default)]
|
2020-12-21 13:38:34 +00:00
|
|
|
pub name: String,
|
2022-10-27 09:24:07 +00:00
|
|
|
pub sidebar: Option<String>,
|
2023-07-13 14:12:01 +00:00
|
|
|
pub updated: Option<NaiveDateTime>,
|
2022-10-27 09:24:07 +00:00
|
|
|
pub icon: Option<DbUrl>,
|
|
|
|
pub banner: Option<DbUrl>,
|
|
|
|
pub description: Option<String>,
|
|
|
|
pub actor_id: Option<DbUrl>,
|
2023-07-13 14:12:01 +00:00
|
|
|
pub last_refreshed_at: Option<NaiveDateTime>,
|
2022-10-27 09:24:07 +00:00
|
|
|
pub inbox_url: Option<DbUrl>,
|
|
|
|
pub private_key: Option<String>,
|
|
|
|
pub public_key: Option<String>,
|
|
|
|
#[builder(!default)]
|
|
|
|
pub instance_id: InstanceId,
|
|
|
|
}
|
|
|
|
|
2023-08-08 09:41:41 +00:00
|
|
|
#[derive(Clone, Default)]
|
2022-10-27 09:24:07 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(AsChangeset))]
|
|
|
|
#[cfg_attr(feature = "full", diesel(table_name = site))]
|
|
|
|
pub struct SiteUpdateForm {
|
|
|
|
pub name: Option<String>,
|
|
|
|
pub sidebar: Option<Option<String>>,
|
2023-07-13 14:12:01 +00:00
|
|
|
pub updated: Option<Option<NaiveDateTime>>,
|
2020-12-21 13:38:34 +00:00
|
|
|
// when you want to null out a column, you have to send Some(None)), since sending None means you just don't want to update that column.
|
2021-03-02 12:41:48 +00:00
|
|
|
pub icon: Option<Option<DbUrl>>,
|
|
|
|
pub banner: Option<Option<DbUrl>>,
|
2021-04-07 11:40:35 +00:00
|
|
|
pub description: Option<Option<String>>,
|
2022-02-07 19:23:12 +00:00
|
|
|
pub actor_id: Option<DbUrl>,
|
2023-07-13 14:12:01 +00:00
|
|
|
pub last_refreshed_at: Option<NaiveDateTime>,
|
2022-02-07 19:23:12 +00:00
|
|
|
pub inbox_url: Option<DbUrl>,
|
|
|
|
pub private_key: Option<Option<String>>,
|
|
|
|
pub public_key: Option<String>,
|
2020-12-21 13:38:34 +00:00
|
|
|
}
|