forked from alemi/upub
fix: faker inserts addressing too
This commit is contained in:
parent
75db004a20
commit
8aa80c7670
1 changed files with 11 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
use crate::model::{config, credential};
|
use crate::model::{addressing, config, credential};
|
||||||
use super::{activity, object, user, Audience};
|
use super::{activity, object, user, Audience};
|
||||||
use openssl::rsa::Rsa;
|
use openssl::rsa::Rsa;
|
||||||
use sea_orm::IntoActiveModel;
|
use sea_orm::IntoActiveModel;
|
||||||
|
@ -52,6 +52,16 @@ pub async fn faker(db: &sea_orm::DatabaseConnection, domain: String, count: u64)
|
||||||
for i in (0..count).rev() {
|
for i in (0..count).rev() {
|
||||||
let oid = uuid::Uuid::new_v4();
|
let oid = uuid::Uuid::new_v4();
|
||||||
let aid = uuid::Uuid::new_v4();
|
let aid = uuid::Uuid::new_v4();
|
||||||
|
|
||||||
|
addressing::Entity::insert(addressing::ActiveModel {
|
||||||
|
actor: Set(apb::target::PUBLIC.to_string()),
|
||||||
|
server: Set("www.w3.org".to_string()),
|
||||||
|
activity: Set(format!("{domain}/activities/{aid}")),
|
||||||
|
object: Set(Some(format!("{domain}/objects/{oid}"))),
|
||||||
|
published: Set(chrono::Utc::now()),
|
||||||
|
..Default::default()
|
||||||
|
}).exec(db).await?;
|
||||||
|
|
||||||
object::Entity::insert(object::ActiveModel {
|
object::Entity::insert(object::ActiveModel {
|
||||||
id: Set(format!("{domain}/objects/{oid}")),
|
id: Set(format!("{domain}/objects/{oid}")),
|
||||||
name: Set(None),
|
name: Set(None),
|
||||||
|
|
Loading…
Reference in a new issue