self.private_key.to_owned()
}
- fn user_id(&self) -> i32 {
- self.creator_id
- }
-
async fn send_follow(
&self,
_follow_actor_id: &Url,
self.private_key.to_owned()
}
- fn user_id(&self) -> i32 {
- self.id
- }
-
/// As a given local user, send out a follow request to a remote community.
async fn send_follow(
&self,
vec![inbox],
context.pool(),
true,
+ true,
)
.await?;
}
follower_inboxes,
context.pool(),
true,
+ false,
)
.await?;
vec![inbox],
context.pool(),
true,
+ false,
)
.await?;
}
mentions,
context.pool(),
false, // Don't create a new DB row
+ false,
)
.await?;
Ok(())
inboxes: Vec<Url>,
pool: &DbPool,
insert_into_db: bool,
+ sensitive: bool,
) -> Result<(), LemmyError>
where
T: AsObject<Kind> + Extends<Kind> + Debug,
// might send the same ap_id
if insert_into_db {
let id = activity.id().context(location_info!())?;
- insert_activity(id, actor.user_id(), activity.clone(), true, pool).await?;
+ insert_activity(id, activity.clone(), true, sensitive, pool).await?;
}
for i in inboxes {
})
.await??;
- Ok(create_apub_response(&activity.data))
+ if !activity.local || activity.sensitive {
+ Ok(HttpResponse::NotFound().finish())
+ } else {
+ Ok(create_apub_response(&activity.data))
+ }
}
let any_base = activity.clone().into_any_base()?;
let kind = activity.kind().context(location_info!())?;
- let user_id = user.id;
let res = match kind {
ValidTypes::Follow => handle_follow(any_base, user, community, &context).await,
ValidTypes::Undo => handle_undo_follow(any_base, user, community, &context).await,
};
- insert_activity(
- &activity_id,
- user_id,
- activity.clone(),
- false,
- context.pool(),
- )
- .await?;
+ insert_activity(&activity_id, activity.clone(), false, true, context.pool()).await?;
res
}
ValidTypes::Undo => receive_undo(&context, any_base, actor_id, request_counter).await,
};
- insert_activity(
- &activity_id,
- actor.user_id(),
- activity.clone(),
- false,
- context.pool(),
- )
- .await?;
+ insert_activity(&activity_id, activity.clone(), false, true, context.pool()).await?;
res
}
}
};
- insert_activity(
- &activity_id,
- actor.user_id(),
- activity.clone(),
- false,
- context.pool(),
- )
- .await?;
+ insert_activity(&activity_id, activity.clone(), false, true, context.pool()).await?;
res
}
fn public_key(&self) -> Option<String>;
fn private_key(&self) -> Option<String>;
- /// numeric id in the database, used for insert_activity
- fn user_id(&self) -> i32;
-
async fn send_follow(
&self,
follow_actor_id: &Url,
/// persistent.
pub async fn insert_activity<T>(
ap_id: &Url,
- user_id: i32,
activity: T,
local: bool,
+ sensitive: bool,
pool: &DbPool,
) -> Result<(), LemmyError>
where
{
let ap_id = ap_id.to_string();
blocking(pool, move |conn| {
- Activity::insert(conn, ap_id, user_id, &activity, local)
+ Activity::insert(conn, ap_id, &activity, local, sensitive)
})
.await??;
Ok(())
pub struct Activity {
pub id: i32,
pub ap_id: String,
- pub user_id: i32,
pub data: Value,
pub local: bool,
+ pub sensitive: bool,
pub published: chrono::NaiveDateTime,
pub updated: Option<chrono::NaiveDateTime>,
}
#[table_name = "activity"]
pub struct ActivityForm {
pub ap_id: String,
- pub user_id: i32,
pub data: Value,
pub local: bool,
+ pub sensitive: bool,
pub updated: Option<chrono::NaiveDateTime>,
}
pub fn insert<T>(
conn: &PgConnection,
ap_id: String,
- user_id: i32,
data: &T,
local: bool,
+ sensitive: bool,
) -> Result<Self, IoError>
where
T: Serialize + Debug,
{
- debug!("inserting activity for user {}: ", user_id);
debug!("{}", serde_json::to_string_pretty(&data)?);
let activity_form = ActivityForm {
ap_id,
- user_id,
data: serde_json::to_value(&data)?,
local,
+ sensitive,
updated: None,
};
let result = Activity::create(&conn, &activity_form);
.unwrap();
let activity_form = ActivityForm {
ap_id: ap_id.to_string(),
- user_id: inserted_creator.id,
data: test_json.to_owned(),
local: true,
+ sensitive: false,
updated: None,
};
let expected_activity = Activity {
ap_id: ap_id.to_string(),
id: inserted_activity.id,
- user_id: inserted_creator.id,
data: test_json,
local: true,
+ sensitive: false,
published: inserted_activity.published,
updated: None,
};
activity (id) {
id -> Int4,
ap_id -> Text,
- user_id -> Int4,
data -> Jsonb,
local -> Bool,
+ sensitive -> Bool,
published -> Timestamp,
updated -> Nullable<Timestamp>,
}
}
}
-joinable!(activity -> user_ (user_id));
joinable!(comment -> post (post_id));
joinable!(comment -> user_ (creator_id));
joinable!(comment_like -> comment (comment_id));
--- /dev/null
+ALTER TABLE activity ADD COLUMN user_id INTEGER;
+ALTER TABLE activity DROP COLUMN sensitive;
\ No newline at end of file
--- /dev/null
+ALTER TABLE activity DROP COLUMN user_id;
+ALTER TABLE activity ADD COLUMN sensitive BOOLEAN DEFAULT TRUE;
\ No newline at end of file