1
0
Fork 1
Spiegel von https://github.com/dani-garcia/vaultwarden.git synchronisiert 2024-07-02 12:14:41 +02:00

Improved collection loading

Dieser Commit ist enthalten in:
Daniel García 2018-04-26 23:21:29 +02:00
Ursprung 68a4230200
Commit 69e624f82b

Datei anzeigen

@ -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)
}
} }
} }