scim-server 0.5.3

A comprehensive SCIM 2.0 server library for Rust with multi-tenant support and type-safe operations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
//! Provider adapter utilities for the unified ResourceProvider trait.
//!
//! This module provides utilities for working with the unified ResourceProvider trait
//! that supports both single and multi-tenant operations through the RequestContext.
//!
//! Since the ResourceProvider is now unified, these are primarily validation and
//! convenience utilities rather than true adapters.

use crate::providers::ResourceProvider;
use crate::resource::version::RawVersion;
use crate::resource::{ListQuery, RequestContext, TenantContext, versioned::VersionedResource};
use serde_json::Value;
use std::future::Future;

/// Error types for adapter operations.
#[derive(Debug, thiserror::Error)]
pub enum AdapterError<E> {
    /// Error from the underlying provider
    #[error("Provider error: {0}")]
    Provider(#[source] E),

    /// Tenant validation error
    #[error("Tenant validation error: {message}")]
    TenantValidation { message: String },

    /// Context conversion error
    #[error("Context conversion error: {message}")]
    ContextConversion { message: String },
}

/// Validation wrapper that ensures tenant context is properly handled.
///
/// This wrapper validates tenant contexts and provides clear error messages
/// when operations are performed with incorrect tenant contexts.
pub struct TenantValidatingProvider<P> {
    inner: P,
}

impl<P> TenantValidatingProvider<P> {
    /// Create a new validating provider wrapper.
    pub fn new(provider: P) -> Self {
        Self { inner: provider }
    }

    /// Get reference to the inner provider.
    pub fn inner(&self) -> &P {
        &self.inner
    }

    /// Consume wrapper and return inner provider.
    pub fn into_inner(self) -> P {
        self.inner
    }
}

impl<P> ResourceProvider for TenantValidatingProvider<P>
where
    P: ResourceProvider + Send + Sync,
    P::Error: Send + Sync + 'static,
{
    type Error = AdapterError<P::Error>;

    fn create_resource(
        &self,
        resource_type: &str,
        data: Value,
        context: &RequestContext,
    ) -> impl Future<Output = Result<VersionedResource, Self::Error>> + Send {
        async move {
            // Validate context consistency
            self.validate_context_consistency(context)?;

            self.inner
                .create_resource(resource_type, data, context)
                .await
                .map_err(AdapterError::Provider)
        }
    }

    fn get_resource(
        &self,
        resource_type: &str,
        id: &str,
        context: &RequestContext,
    ) -> impl Future<Output = Result<Option<VersionedResource>, Self::Error>> + Send {
        async move {
            self.validate_context_consistency(context)?;

            self.inner
                .get_resource(resource_type, id, context)
                .await
                .map_err(AdapterError::Provider)
        }
    }

    fn update_resource(
        &self,
        resource_type: &str,
        id: &str,
        data: Value,
        expected_version: Option<&RawVersion>,
        context: &RequestContext,
    ) -> impl Future<Output = Result<VersionedResource, Self::Error>> + Send {
        async move {
            self.validate_context_consistency(context)?;

            self.inner
                .update_resource(resource_type, id, data, expected_version, context)
                .await
                .map_err(AdapterError::Provider)
        }
    }

    fn delete_resource(
        &self,
        resource_type: &str,
        id: &str,
        expected_version: Option<&RawVersion>,
        context: &RequestContext,
    ) -> impl Future<Output = Result<(), Self::Error>> + Send {
        async move {
            self.validate_context_consistency(context)?;

            self.inner
                .delete_resource(resource_type, id, expected_version, context)
                .await
                .map_err(AdapterError::Provider)
        }
    }

    fn list_resources(
        &self,
        resource_type: &str,
        query: Option<&ListQuery>,
        context: &RequestContext,
    ) -> impl Future<Output = Result<Vec<VersionedResource>, Self::Error>> + Send {
        async move {
            self.validate_context_consistency(context)?;

            self.inner
                .list_resources(resource_type, query, context)
                .await
                .map_err(AdapterError::Provider)
        }
    }

    fn find_resources_by_attribute(
        &self,
        resource_type: &str,
        attribute_name: &str,
        attribute_value: &str,
        context: &RequestContext,
    ) -> impl Future<Output = Result<Vec<VersionedResource>, Self::Error>> + Send {
        async move {
            self.validate_context_consistency(context)?;

            self.inner
                .find_resources_by_attribute(
                    resource_type,
                    attribute_name,
                    attribute_value,
                    context,
                )
                .await
                .map_err(AdapterError::Provider)
        }
    }

    fn patch_resource(
        &self,
        resource_type: &str,
        id: &str,
        patch_request: &Value,
        expected_version: Option<&RawVersion>,
        context: &RequestContext,
    ) -> impl Future<Output = Result<VersionedResource, Self::Error>> + Send {
        async move {
            self.validate_context_consistency(context)?;

            self.inner
                .patch_resource(resource_type, id, patch_request, expected_version, context)
                .await
                .map_err(AdapterError::Provider)
        }
    }

    fn resource_exists(
        &self,
        resource_type: &str,
        id: &str,
        context: &RequestContext,
    ) -> impl Future<Output = Result<bool, Self::Error>> + Send {
        async move {
            self.validate_context_consistency(context)?;

            self.inner
                .resource_exists(resource_type, id, context)
                .await
                .map_err(AdapterError::Provider)
        }
    }
}

// TenantValidator is implemented via blanket impl

impl<P> TenantValidatingProvider<P>
where
    P: ResourceProvider,
{
    /// Validate that the request context is internally consistent.
    fn validate_context_consistency(
        &self,
        context: &RequestContext,
    ) -> Result<(), AdapterError<P::Error>> {
        // Ensure request ID is not empty
        if context.request_id.trim().is_empty() {
            return Err(AdapterError::ContextConversion {
                message: "Request ID cannot be empty".to_string(),
            });
        }

        // Validate tenant context if present
        if let Some(tenant_context) = &context.tenant_context {
            if tenant_context.tenant_id.trim().is_empty() {
                return Err(AdapterError::TenantValidation {
                    message: "Tenant ID cannot be empty".to_string(),
                });
            }
        }

        Ok(())
    }
}

/// Trait for converting providers to single-tenant mode (legacy compatibility).
///
/// Since ResourceProvider is now unified, this is mainly for API compatibility.
pub trait ToSingleTenant<P> {
    /// Convert to a provider that validates single-tenant contexts.
    fn to_single_tenant(self) -> TenantValidatingProvider<P>;
}

impl<P> ToSingleTenant<P> for P
where
    P: ResourceProvider,
{
    fn to_single_tenant(self) -> TenantValidatingProvider<P> {
        TenantValidatingProvider::new(self)
    }
}

/// Legacy type alias for backward compatibility.
///
/// Note: With the unified ResourceProvider, this is now just a validation wrapper.
pub type SingleTenantAdapter<P> = TenantValidatingProvider<P>;

/// Context conversion utilities.
pub struct ContextConverter;

impl ContextConverter {
    /// Create a single-tenant RequestContext.
    pub fn single_tenant_context(request_id: Option<String>) -> RequestContext {
        match request_id {
            Some(id) => RequestContext::new(id),
            None => RequestContext::with_generated_id(),
        }
    }

    /// Create a multi-tenant RequestContext.
    pub fn multi_tenant_context(
        tenant_id: String,
        client_id: Option<String>,
        request_id: Option<String>,
    ) -> RequestContext {
        let tenant_context = TenantContext {
            tenant_id,
            client_id: client_id.unwrap_or_else(|| "default-client".to_string()),
            permissions: Default::default(),
            isolation_level: Default::default(),
        };

        match request_id {
            Some(id) => RequestContext::with_tenant(id, tenant_context),
            None => RequestContext::with_tenant_generated_id(tenant_context),
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[derive(Debug, thiserror::Error)]
    #[error("Mock error")]
    struct MockError;

    struct MockProvider;

    impl ResourceProvider for MockProvider {
        type Error = MockError;

        async fn create_resource(
            &self,
            _resource_type: &str,
            _data: Value,
            _context: &RequestContext,
        ) -> Result<VersionedResource, Self::Error> {
            Err(MockError)
        }

        async fn get_resource(
            &self,
            _resource_type: &str,
            _id: &str,
            _context: &RequestContext,
        ) -> Result<Option<VersionedResource>, Self::Error> {
            Ok(None)
        }

        async fn update_resource(
            &self,
            _resource_type: &str,
            _id: &str,
            _data: Value,
            _expected_version: Option<&RawVersion>,
            _context: &RequestContext,
        ) -> Result<VersionedResource, Self::Error> {
            Err(MockError)
        }

        async fn delete_resource(
            &self,
            _resource_type: &str,
            _id: &str,
            _expected_version: Option<&RawVersion>,
            _context: &RequestContext,
        ) -> Result<(), Self::Error> {
            Ok(())
        }

        async fn list_resources(
            &self,
            _resource_type: &str,
            _query: Option<&ListQuery>,
            _context: &RequestContext,
        ) -> Result<Vec<VersionedResource>, Self::Error> {
            Ok(vec![])
        }

        async fn find_resources_by_attribute(
            &self,
            _resource_type: &str,
            _attribute_name: &str,
            _attribute_value: &str,
            _context: &RequestContext,
        ) -> Result<Vec<VersionedResource>, Self::Error> {
            Ok(vec![])
        }

        async fn patch_resource(
            &self,
            _resource_type: &str,
            _id: &str,
            _patch_request: &Value,
            _expected_version: Option<&RawVersion>,
            _context: &RequestContext,
        ) -> Result<VersionedResource, Self::Error> {
            Err(MockError)
        }

        async fn resource_exists(
            &self,
            _resource_type: &str,
            _id: &str,
            _context: &RequestContext,
        ) -> Result<bool, Self::Error> {
            Ok(false)
        }
    }

    #[tokio::test]
    async fn test_validating_provider() {
        let provider = MockProvider;
        let validating_provider = TenantValidatingProvider::new(provider);

        let context = RequestContext::with_generated_id();
        let result = validating_provider
            .get_resource("User", "123", &context)
            .await;

        assert!(result.is_ok());
    }

    #[tokio::test]
    async fn test_context_validation() {
        let provider = MockProvider;
        let validating_provider = TenantValidatingProvider::new(provider);

        // Empty request ID should fail
        let context = RequestContext::new("".to_string());
        let result = validating_provider
            .get_resource("User", "123", &context)
            .await;

        assert!(result.is_err());
        assert!(matches!(
            result.unwrap_err(),
            AdapterError::ContextConversion { .. }
        ));
    }

    #[test]
    fn test_context_converter() {
        // Single-tenant context
        let context = ContextConverter::single_tenant_context(Some("req-123".to_string()));
        assert_eq!(context.request_id, "req-123");
        assert!(context.tenant_context.is_none());

        // Multi-tenant context
        let context = ContextConverter::multi_tenant_context(
            "tenant-1".to_string(),
            Some("client-1".to_string()),
            Some("req-456".to_string()),
        );
        assert_eq!(context.request_id, "req-456");
        assert!(context.tenant_context.is_some());
        assert_eq!(context.tenant_id(), Some("tenant-1"));
    }

    #[test]
    fn test_to_single_tenant_trait() {
        let provider = MockProvider;
        let _validating_provider = provider.to_single_tenant();
    }
}