mirror of
https://github.com/ViViDboarder/bitwarden_rs.git
synced 2024-11-22 13:16:39 +00:00
Improved collection loading
This commit is contained in:
parent
68a4230200
commit
69e624f82b
@ -66,26 +66,19 @@ impl Collection {
|
|||||||
.first::<Self>(&**conn).ok()
|
.first::<Self>(&**conn).ok()
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn find_by_user_uuid(uuid: &str, conn: &DbConn) -> Vec<Self> {
|
pub fn find_by_user_uuid(user_uuid: &str, conn: &DbConn) -> Vec<Self> {
|
||||||
match users_collections::table
|
users_collections::table.inner_join(collections::table)
|
||||||
.filter(users_collections::user_uuid.eq(uuid))
|
.filter(users_collections::user_uuid.eq(user_uuid))
|
||||||
.select(users_collections::columns::collection_uuid)
|
.select(collections::all_columns)
|
||||||
.load(&**conn) {
|
.load::<Self>(&**conn).expect("Error loading user collections")
|
||||||
Ok(uuids) => uuids.iter().map(|uuid: &String| {
|
|
||||||
Collection::find_by_uuid(uuid, &conn).unwrap()
|
|
||||||
}).collect(),
|
|
||||||
Err(list) => vec![]
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn find_by_uuid_and_user(uuid: &str, user_uuid: &str, conn: &DbConn) -> Option<Self> {
|
pub fn find_by_uuid_and_user(uuid: &str, user_uuid: &str, conn: &DbConn) -> Option<Self> {
|
||||||
match users_collections::table
|
users_collections::table.inner_join(collections::table)
|
||||||
.filter(users_collections::collection_uuid.eq(uuid))
|
.filter(users_collections::collection_uuid.eq(uuid))
|
||||||
.filter(users_collections::user_uuid.eq(user_uuid))
|
.filter(users_collections::user_uuid.eq(user_uuid))
|
||||||
.first::<CollectionUsers>(&**conn).ok() {
|
.select(collections::all_columns)
|
||||||
None => None,
|
.first::<Self>(&**conn).ok()
|
||||||
Some(collection_user) => Collection::find_by_uuid(&collection_user.collection_uuid, &conn)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user