minco-plugin-object-storage 1.12.0

Provider-neutral object storage port and reference memory implementation for Minco
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
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
//! Provider-neutral object storage and a deterministic in-memory reference adapter.
#![forbid(unsafe_code)]

use async_trait::async_trait;
use chrono::{DateTime, TimeDelta, Utc};
use minco_core::{
    CapabilityProvision, DataClass, Plugin, PluginContext, PluginDescriptor, PluginError, PluginId,
    PluginStability,
};
use semver::{Version, VersionReq};
use serde::{Deserialize, Serialize};
use sha2::{Digest, Sha256};
use std::{
    collections::{BTreeMap, VecDeque},
    fmt,
    sync::Arc,
};
use tokio::sync::{Mutex, RwLock};

#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Serialize)]
#[serde(transparent)]
pub struct ObjectKey(String);

impl ObjectKey {
    pub fn parse(value: impl Into<String>) -> Result<Self, ObjectStoreError> {
        let value = value.into();
        if value.is_empty()
            || value.len() > 1024
            || value.starts_with('/')
            || value.ends_with('/')
            || value.split('/').any(|part| {
                part.is_empty() || part == "." || part == ".." || part.chars().any(char::is_control)
            })
        {
            return Err(ObjectStoreError::InvalidKey(value));
        }
        Ok(Self(value))
    }

    pub fn as_str(&self) -> &str {
        &self.0
    }
}

impl<'de> Deserialize<'de> for ObjectKey {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: serde::Deserializer<'de>,
    {
        let value = String::deserialize(deserializer)?;
        Self::parse(value).map_err(|_| serde::de::Error::custom("invalid object key"))
    }
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct ObjectMetadata {
    pub content_type: String,
    pub size_bytes: u64,
    pub sha256: String,
    pub created_at: DateTime<Utc>,
    #[serde(default)]
    pub attributes: BTreeMap<String, String>,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct StoredObject {
    pub key: ObjectKey,
    pub bytes: Vec<u8>,
    pub metadata: ObjectMetadata,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct PutObject {
    pub key: ObjectKey,
    pub bytes: Vec<u8>,
    pub content_type: String,
    pub attributes: BTreeMap<String, String>,
}

#[async_trait]
pub trait ObjectStore: Send + Sync + std::fmt::Debug {
    async fn put(&self, object: PutObject) -> Result<ObjectMetadata, ObjectStoreError>;
    async fn get(&self, key: &ObjectKey) -> Result<Option<StoredObject>, ObjectStoreError>;
    async fn delete(&self, key: &ObjectKey) -> Result<bool, ObjectStoreError>;
}

#[derive(Clone)]
pub struct ObjectStoreService(pub Arc<dyn ObjectStore>);

impl std::fmt::Debug for ObjectStoreService {
    fn fmt(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        formatter.debug_tuple("ObjectStoreService").finish()
    }
}

impl ObjectStoreService {
    pub fn new(store: Arc<dyn ObjectStore>) -> Self {
        Self(store)
    }

    pub async fn put(&self, object: PutObject) -> Result<ObjectMetadata, ObjectStoreError> {
        self.0.put(object).await
    }

    pub async fn get(&self, key: &ObjectKey) -> Result<Option<StoredObject>, ObjectStoreError> {
        self.0.get(key).await
    }

    pub async fn delete(&self, key: &ObjectKey) -> Result<bool, ObjectStoreError> {
        self.0.delete(key).await
    }
}

/// HTTP method required by a signed direct-object request.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "UPPERCASE")]
pub enum PresignedMethod {
    Get,
    Put,
    Post,
}

/// Browser- or client-usable request produced by a provider adapter such as S3.
///
/// `form_fields` is populated for multipart POST uploads. This is required for
/// providers such as S3 where the signed POST policy, rather than a presigned
/// PUT URL, enforces an upload-size range.
#[derive(Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct PresignedObjectRequest {
    pub method: PresignedMethod,
    pub url: String,
    #[serde(default)]
    pub headers: BTreeMap<String, String>,
    #[serde(default, skip_serializing_if = "BTreeMap::is_empty")]
    pub form_fields: BTreeMap<String, String>,
    pub expires_at: DateTime<Utc>,
}

impl std::fmt::Debug for PresignedObjectRequest {
    fn fmt(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        formatter
            .debug_struct("PresignedObjectRequest")
            .field("method", &self.method)
            .field("url", &"[REDACTED PRESIGNED URL]")
            .field("header_names", &self.headers.keys().collect::<Vec<_>>())
            .field(
                "form_field_names",
                &self.form_fields.keys().collect::<Vec<_>>(),
            )
            .field("expires_at", &self.expires_at)
            .finish()
    }
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct PresignPutObject {
    pub key: ObjectKey,
    pub content_type: String,
    pub maximum_size_bytes: u64,
    pub expires_in: TimeDelta,
    pub attributes: BTreeMap<String, String>,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct PresignGetObject {
    pub key: ObjectKey,
    pub expires_in: TimeDelta,
    pub download_file_name: Option<String>,
}

/// Provider adapter for direct upload and download URLs.
///
/// Keeping signing separate from [`ObjectStore`] lets applications use server-side storage without
/// exposing direct browser access. AWS implementations can map this port to S3 presigning while
/// local/test implementations remain deterministic.
#[async_trait]
pub trait ObjectAccessSigner: Send + Sync + std::fmt::Debug {
    async fn sign_put(
        &self,
        request: PresignPutObject,
    ) -> Result<PresignedObjectRequest, ObjectStoreError>;

    async fn sign_get(
        &self,
        request: PresignGetObject,
    ) -> Result<PresignedObjectRequest, ObjectStoreError>;
}

#[derive(Clone)]
pub struct ObjectAccessService(pub Arc<dyn ObjectAccessSigner>);

impl std::fmt::Debug for ObjectAccessService {
    fn fmt(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        formatter.debug_tuple("ObjectAccessService").finish()
    }
}

impl ObjectAccessService {
    pub fn new(signer: Arc<dyn ObjectAccessSigner>) -> Self {
        Self(signer)
    }

    pub async fn sign_put(
        &self,
        request: PresignPutObject,
    ) -> Result<PresignedObjectRequest, ObjectStoreError> {
        validate_expiry(request.expires_in)?;
        if request.content_type.trim().is_empty() {
            return Err(ObjectStoreError::InvalidContentType);
        }
        if request.maximum_size_bytes == 0 {
            return Err(ObjectStoreError::InvalidMaximumSize);
        }
        self.0.sign_put(request).await
    }

    pub async fn sign_get(
        &self,
        request: PresignGetObject,
    ) -> Result<PresignedObjectRequest, ObjectStoreError> {
        validate_expiry(request.expires_in)?;
        self.0.sign_get(request).await
    }
}

fn validate_expiry(expires_in: TimeDelta) -> Result<(), ObjectStoreError> {
    if expires_in <= TimeDelta::zero() || expires_in > TimeDelta::hours(24) {
        return Err(ObjectStoreError::InvalidExpiry);
    }
    Ok(())
}

#[derive(Debug, Default)]
pub struct MemoryObjectStore {
    objects: RwLock<BTreeMap<ObjectKey, StoredObject>>,
}

impl MemoryObjectStore {
    /// Number of objects currently retained by the deterministic memory adapter.
    ///
    /// This is primarily useful for conformance tests and local diagnostics.
    pub async fn len(&self) -> usize {
        self.objects.read().await.len()
    }

    pub async fn is_empty(&self) -> bool {
        self.len().await == 0
    }
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
pub enum ObjectStoreOperation {
    Put,
    Get,
    Delete,
}

#[derive(Clone, PartialEq, Eq)]
pub enum ObjectStoreAttempt {
    Put(PutObject),
    Get(ObjectKey),
    Delete(ObjectKey),
}

impl fmt::Debug for ObjectStoreAttempt {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Self::Put(object) => formatter
                .debug_struct("Put")
                .field("key", &object.key)
                .field("byte_count", &object.bytes.len())
                .field("content_type", &object.content_type)
                .field(
                    "attribute_names",
                    &object.attributes.keys().collect::<Vec<_>>(),
                )
                .finish(),
            Self::Get(key) => formatter.debug_tuple("Get").field(key).finish(),
            Self::Delete(key) => formatter.debug_tuple("Delete").field(key).finish(),
        }
    }
}

/// Deterministic object-store fake with exact attempt capture and one-shot failures.
#[derive(Default)]
pub struct FakeObjectStore {
    inner: MemoryObjectStore,
    attempts: RwLock<Vec<ObjectStoreAttempt>>,
    failures: Mutex<BTreeMap<ObjectStoreOperation, VecDeque<String>>>,
}

impl FakeObjectStore {
    pub async fn fail_next(&self, operation: ObjectStoreOperation, message: impl Into<String>) {
        self.failures
            .lock()
            .await
            .entry(operation)
            .or_default()
            .push_back(message.into());
    }

    pub async fn attempts(&self) -> Vec<ObjectStoreAttempt> {
        self.attempts.read().await.clone()
    }

    async fn take_failure(&self, operation: ObjectStoreOperation) -> Option<String> {
        let mut failures = self.failures.lock().await;
        let failure = failures.get_mut(&operation).and_then(VecDeque::pop_front);
        if failures.get(&operation).is_some_and(VecDeque::is_empty) {
            failures.remove(&operation);
        }
        drop(failures);
        failure
    }
}

impl fmt::Debug for FakeObjectStore {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        formatter
            .debug_struct("FakeObjectStore")
            .finish_non_exhaustive()
    }
}

#[async_trait]
impl ObjectStore for FakeObjectStore {
    async fn put(&self, object: PutObject) -> Result<ObjectMetadata, ObjectStoreError> {
        validate_put_object(&object)?;
        self.attempts
            .write()
            .await
            .push(ObjectStoreAttempt::Put(object.clone()));
        if let Some(message) = self.take_failure(ObjectStoreOperation::Put).await {
            return Err(ObjectStoreError::Store(message));
        }
        self.inner.put(object).await
    }

    async fn get(&self, key: &ObjectKey) -> Result<Option<StoredObject>, ObjectStoreError> {
        self.attempts
            .write()
            .await
            .push(ObjectStoreAttempt::Get(key.clone()));
        if let Some(message) = self.take_failure(ObjectStoreOperation::Get).await {
            return Err(ObjectStoreError::Store(message));
        }
        self.inner.get(key).await
    }

    async fn delete(&self, key: &ObjectKey) -> Result<bool, ObjectStoreError> {
        self.attempts
            .write()
            .await
            .push(ObjectStoreAttempt::Delete(key.clone()));
        if let Some(message) = self.take_failure(ObjectStoreOperation::Delete).await {
            return Err(ObjectStoreError::Store(message));
        }
        self.inner.delete(key).await
    }
}

#[async_trait]
impl ObjectStore for MemoryObjectStore {
    async fn put(&self, object: PutObject) -> Result<ObjectMetadata, ObjectStoreError> {
        validate_put_object(&object)?;
        let metadata = ObjectMetadata {
            content_type: object.content_type,
            size_bytes: u64::try_from(object.bytes.len())
                .map_err(|_| ObjectStoreError::ObjectTooLarge)?,
            sha256: hex::encode(Sha256::digest(&object.bytes)),
            created_at: Utc::now(),
            attributes: object.attributes,
        };
        self.objects.write().await.insert(
            object.key.clone(),
            StoredObject {
                key: object.key,
                bytes: object.bytes,
                metadata: metadata.clone(),
            },
        );
        Ok(metadata)
    }

    async fn get(&self, key: &ObjectKey) -> Result<Option<StoredObject>, ObjectStoreError> {
        Ok(self.objects.read().await.get(key).cloned())
    }

    async fn delete(&self, key: &ObjectKey) -> Result<bool, ObjectStoreError> {
        Ok(self.objects.write().await.remove(key).is_some())
    }
}

fn validate_put_object(object: &PutObject) -> Result<(), ObjectStoreError> {
    if object.content_type.trim().is_empty() {
        Err(ObjectStoreError::InvalidContentType)
    } else {
        Ok(())
    }
}

#[derive(Debug, Clone)]
pub struct ObjectStoragePlugin {
    store: ObjectStoreService,
    access: Option<ObjectAccessService>,
}

impl ObjectStoragePlugin {
    pub fn new(store: Arc<dyn ObjectStore>) -> Self {
        Self {
            store: ObjectStoreService::new(store),
            access: None,
        }
    }

    pub fn memory() -> Self {
        Self::new(Arc::new(MemoryObjectStore::default()))
    }

    #[must_use]
    pub fn with_access_signer(mut self, signer: Arc<dyn ObjectAccessSigner>) -> Self {
        self.access = Some(ObjectAccessService::new(signer));
        self
    }
}

impl Plugin for ObjectStoragePlugin {
    fn descriptor(&self) -> PluginDescriptor {
        let mut descriptor = PluginDescriptor::new(
            PluginId::new("object-storage").expect("static plugin ID"),
            Version::new(1, 0, 0),
            "Provider-neutral object storage used by uploads, exports, and feedback attachments",
        );
        descriptor.documentation = Some("https://docs.rs/minco-plugin-object-storage".into());
        descriptor.core_compatibility =
            VersionReq::parse(concat!("^", env!("CARGO_PKG_VERSION"))).expect("package version");
        descriptor.stability = PluginStability::Beta;
        descriptor
            .data_classes
            .extend([DataClass::CustomerProvided, DataClass::Confidential]);
        descriptor.provides.push(CapabilityProvision {
            name: "storage.object".into(),
            version: Version::new(1, 0, 0),
        });
        if self.access.is_some() {
            descriptor.provides.push(CapabilityProvision {
                name: "storage.object.presign".into(),
                version: Version::new(1, 0, 0),
            });
        }
        descriptor
    }

    fn install(&self, context: &mut PluginContext<'_>) -> Result<(), PluginError> {
        context.services().insert(Arc::new(self.store.clone()))?;
        if let Some(access) = &self.access {
            context.services().insert(Arc::new(access.clone()))?;
        }
        Ok(())
    }
}

#[derive(Debug, thiserror::Error)]
pub enum ObjectStoreError {
    #[error("invalid object key: {0}")]
    InvalidKey(String),
    #[error("content type must not be empty")]
    InvalidContentType,
    #[error("maximum object size must be greater than zero")]
    InvalidMaximumSize,
    #[error("presigned request expiry must be greater than zero and no more than 24 hours")]
    InvalidExpiry,
    #[error("object is too large for this platform")]
    ObjectTooLarge,
    #[error("object store failed: {0}")]
    Store(String),
}

#[cfg(test)]
mod tests {
    use super::*;
    use minco_core::{PluginManager, PluginSelection};

    #[tokio::test]
    async fn memory_store_round_trips_bytes_and_metadata() {
        let store = MemoryObjectStore::default();
        let key = ObjectKey::parse("feedback/one/screenshot.png").unwrap();
        let metadata = store
            .put(PutObject {
                key: key.clone(),
                bytes: b"png".to_vec(),
                content_type: "image/png".into(),
                attributes: BTreeMap::new(),
            })
            .await
            .unwrap();
        assert_eq!(metadata.size_bytes, 3);
        assert_eq!(store.get(&key).await.unwrap().unwrap().bytes, b"png");
        assert!(store.delete(&key).await.unwrap());
        assert!(store.get(&key).await.unwrap().is_none());
    }

    #[test]
    fn unsafe_or_ambiguous_keys_are_rejected() {
        for key in ["", "/absolute", "folder/", "a//b", "a/../b"] {
            assert!(ObjectKey::parse(key).is_err(), "{key}");
        }
    }

    #[test]
    fn presigned_request_debug_redacts_capability_values() {
        let request = PresignedObjectRequest {
            method: PresignedMethod::Post,
            url: "https://objects.example/key?X-Amz-Signature=secret-signature".into(),
            headers: BTreeMap::from([("authorization".into(), "secret-header".into())]),
            form_fields: BTreeMap::from([
                ("x-amz-security-token".into(), "secret-token".into()),
                ("x-amz-signature".into(), "secret-signature".into()),
            ]),
            expires_at: Utc::now() + TimeDelta::minutes(5),
        };
        let debug = format!("{request:?}");
        assert!(!debug.contains("secret-token"));
        assert!(!debug.contains("secret-signature"));
        assert!(!debug.contains("secret-header"));
        assert!(debug.contains("x-amz-security-token"));
    }

    #[derive(Debug)]
    struct TestSigner;

    #[async_trait]
    impl ObjectAccessSigner for TestSigner {
        async fn sign_put(
            &self,
            request: PresignPutObject,
        ) -> Result<PresignedObjectRequest, ObjectStoreError> {
            Ok(PresignedObjectRequest {
                method: PresignedMethod::Put,
                url: format!("https://objects.example/{}", request.key.as_str()),
                headers: BTreeMap::from([("content-type".into(), request.content_type)]),
                form_fields: BTreeMap::new(),
                expires_at: Utc::now() + request.expires_in,
            })
        }

        async fn sign_get(
            &self,
            request: PresignGetObject,
        ) -> Result<PresignedObjectRequest, ObjectStoreError> {
            Ok(PresignedObjectRequest {
                method: PresignedMethod::Get,
                url: format!("https://objects.example/{}", request.key.as_str()),
                headers: BTreeMap::new(),
                form_fields: BTreeMap::new(),
                expires_at: Utc::now() + request.expires_in,
            })
        }
    }

    #[tokio::test]
    async fn optional_presigning_is_typed_and_advertised_only_when_configured() {
        let mut manager = PluginManager::default();
        manager
            .register(ObjectStoragePlugin::memory().with_access_signer(Arc::new(TestSigner)))
            .unwrap();
        let id = PluginId::new("object-storage").unwrap();
        let mut selection = PluginSelection::default();
        selection.enabled.insert(id);
        let application = manager.compose(&selection).unwrap();
        assert!(
            application
                .graph
                .capabilities
                .contains_key("storage.object.presign")
        );

        let access = application.services.get::<ObjectAccessService>().unwrap();
        let signed = access
            .sign_get(PresignGetObject {
                key: ObjectKey::parse("documents/report.pdf").unwrap(),
                expires_in: TimeDelta::minutes(5),
                download_file_name: Some("report.pdf".into()),
            })
            .await
            .unwrap();
        assert_eq!(signed.method, PresignedMethod::Get);
    }
}