aboutsummaryrefslogtreecommitdiff
path: root/src/login
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2023-11-01 16:45:29 +0100
committerQuentin Dufour <quentin@deuxfleurs.fr>2023-11-01 16:45:29 +0100
commit8ac3a8ce8ba268a3261e23694b8b62afa6a3ae37 (patch)
tree0ffa2cf006c592f184df693f216ebcaeb07c2876 /src/login
parent3026b217774a51e01cca1ae584fba8c6398754cc (diff)
downloadaerogramme-8ac3a8ce8ba268a3261e23694b8b62afa6a3ae37.tar.gz
aerogramme-8ac3a8ce8ba268a3261e23694b8b62afa6a3ae37.zip
implement an AnyCredentials
Diffstat (limited to 'src/login')
-rw-r--r--src/login/mod.rs33
1 files changed, 16 insertions, 17 deletions
diff --git a/src/login/mod.rs b/src/login/mod.rs
index f403bcb..5bd976e 100644
--- a/src/login/mod.rs
+++ b/src/login/mod.rs
@@ -16,8 +16,6 @@ use rusoto_s3::S3Client;
use crate::cryptoblob::*;
use crate::storage::*;
-use crate::storage::in_memory::MemTypes;
-use crate::storage::garage::GrgTypes;
/// The trait LoginProvider defines the interface for a login provider that allows
/// to retrieve storage and cryptographic credentials for access to a user account
@@ -32,19 +30,28 @@ pub trait LoginProvider {
async fn public_login(&self, email: &str) -> Result<PublicCredentials>;
}
-pub enum AnyCredentials {
- InMemory(Credentials<MemTypes>),
- Garage(Credentials<GrgTypes>),
-}
-
/// ArcLoginProvider is simply an alias on a structure that is used
/// in many places in the code
pub type ArcLoginProvider = Arc<dyn LoginProvider + Send + Sync>;
+pub enum AnyCredentials {
+ InMemory(Credentials<in_memory::MemTypes>),
+ Garage(Credentials<garage::GrgTypes>),
+}
+impl<X> AnyCredentials where X: Sto
+{
+ fn to_gen(&self) -> Credentials<X> {
+ match self {
+ Self::InMemory(u) => u,
+ Self::Garage(u) => u,
+ }
+ }
+}
+
/// The struct Credentials represent all of the necessary information to interact
/// with a user account's data after they are logged in.
#[derive(Clone, Debug)]
-pub struct Credentials<T: StorageEngine> {
+pub struct Credentials<T: Sto> {
/// The storage credentials are used to authenticate access to the underlying storage (S3, K2V)
pub storage: T::Builder,
/// The cryptographic keys are used to encrypt and decrypt data stored in S3 and K2V
@@ -114,7 +121,7 @@ impl Region {
// ----
-/*
+
impl Credentials {
pub fn k2v_client(&self) -> Result<K2vClient> {
self.storage.k2v_client()
@@ -125,14 +132,6 @@ impl Credentials {
pub fn bucket(&self) -> &str {
self.storage.bucket.as_str()
}
-}*/
-impl<T: StorageEngine> From<AnyCredentials> for Credentials<T> {
- fn from(ac: AnyCredentials) -> Self {
- match ac {
- AnyCredentials::InMemory(c) => c,
- AnyCredentials::Garage(c) => c,
- }
- }
}
impl StorageCredentials {