anytype-rpc 0.5.0

Anytype gRPC client
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
//! Errors returned by anytype-rpc gRPC operations.

use std::fmt;

use snafu::prelude::*;

/// Local stream boundary that interrupted a control mutation.
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum GrpcControlBoundaryKind {
    /// The decoded event queue reached its configured capacity.
    QueueSaturated,
    /// The session event stream closed before a terminal mutation result.
    StreamClosed,
    /// The session event transport failed before a terminal mutation result.
    TransportLost,
}

impl fmt::Display for GrpcControlBoundaryKind {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        formatter.write_str(match self {
            Self::QueueSaturated => "queue_saturated",
            Self::StreamClosed => "stream_closed",
            Self::TransportLost => "transport_lost",
        })
    }
}

/// Unified error type for anytype-rpc gRPC operations.
#[derive(Snafu)]
#[snafu(visibility(pub))]
pub enum AnytypeGrpcError {
    /// Authentication error.
    #[snafu(display("gRPC authentication failed (details redacted)"))]
    Auth { source: AuthError },

    /// Configuration error.
    #[snafu(display("gRPC configuration failed (details redacted)"))]
    Config { source: ConfigError },

    /// View operation error.
    #[snafu(display("gRPC view operation failed (details redacted)"))]
    View { source: ViewError },

    /// Space backup operation error.
    #[snafu(display("gRPC backup operation failed (details redacted)"))]
    Backup { source: BackupError },

    /// gRPC transport connection error.
    #[snafu(display("gRPC transport failed (details redacted)"))]
    Transport {
        #[snafu(source(false))]
        source: tonic::transport::Error,
    },

    /// Logical gRPC deadline configuration error.
    #[snafu(
        context(suffix(GrpcTimeoutConfigSnafu)),
        display("gRPC deadline configuration error: {source}")
    )]
    TimeoutConfig {
        source: crate::deadline::GrpcTimeoutConfigError,
    },

    /// Stable, payload-free logical gRPC deadline expiration.
    #[snafu(context(suffix(GrpcDeadlineSnafu)), display("{source}"))]
    Deadline {
        source: crate::deadline::GrpcDeadlineError,
    },

    /// A local session-stream boundary interrupted a control mutation.
    #[snafu(display("gRPC control boundary kind={kind} outcome={outcome}"))]
    ControlBoundary {
        /// Closed boundary classification without peer-provided text.
        kind: GrpcControlBoundaryKind,
        /// Whether the control future could have dispatched before interruption.
        outcome: crate::deadline::GrpcTimeoutOutcome,
    },
}

/// Errors from authentication operations.
#[derive(Snafu)]
#[snafu(visibility(pub))]
pub enum AuthError {
    /// gRPC status error from a request.
    #[snafu(display("gRPC auth request failed with code {}", source.code()))]
    Status {
        #[snafu(source(false))]
        source: tonic::Status,
    },

    /// Anytype API returned an error response.
    #[snafu(display("Anytype auth API error ({code}; description redacted)"))]
    Api { code: i32, description: String },

    /// Create session returned an empty token.
    #[snafu(display("Create session returned empty token"))]
    EmptyToken,

    /// Invalid metadata value for auth token.
    #[snafu(display("invalid authentication metadata (details redacted)"))]
    InvalidMetadata {
        #[snafu(source(false))]
        source: tonic::metadata::errors::InvalidMetadataValue,
    },

    /// Logical deadline policy could not be resolved.
    #[snafu(
        context(suffix(AuthTimeoutConfigSnafu)),
        display("gRPC deadline configuration error: {source}")
    )]
    TimeoutConfig {
        source: crate::deadline::GrpcTimeoutConfigError,
    },

    /// Credential setup reached its logical deadline.
    #[snafu(context(suffix(AuthDeadlineSnafu)), display("{source}"))]
    Deadline {
        source: crate::deadline::GrpcDeadlineError,
    },
}

/// Errors from configuration operations.
#[derive(Snafu)]
#[snafu(visibility(pub))]
pub enum ConfigError {
    /// Config file I/O error.
    #[snafu(display("configuration I/O failed (details redacted)"))]
    Io {
        #[snafu(source(false))]
        source: std::io::Error,
    },

    /// Config file parse error.
    #[snafu(display("configuration parsing failed (details redacted)"))]
    Parse {
        #[snafu(source(false))]
        source: serde_json::Error,
    },

    /// Home-directory environment variables are unavailable.
    #[snafu(display("home directory environment variable not set"))]
    MissingHome,
}

/// Errors from view operations.
#[derive(Snafu)]
#[snafu(visibility(pub))]
pub enum ViewError {
    /// Authentication token attachment failed before request dispatch.
    #[snafu(
        context(suffix(ViewSnafu)),
        display("view authentication failed (details redacted)")
    )]
    Auth { source: AuthError },

    /// gRPC status error from a request.
    #[snafu(display("view gRPC request failed with code {}", source.code()))]
    Rpc {
        #[snafu(source(false))]
        source: tonic::Status,
    },

    /// Anytype API returned an error response.
    #[snafu(display("Anytype view API error ({code}; description redacted)"))]
    ApiResponse { code: i32, description: String },

    /// Object view missing in response.
    #[snafu(display("Object view missing in response"))]
    MissingObjectView,

    /// Dataview block not found for view id.
    #[snafu(display("dataview block not found (view id redacted)"))]
    MissingDataviewBlock { view_id: String },

    /// View id not found.
    #[snafu(display("view not found (id redacted)"))]
    MissingView { view_id: String },

    /// View type not supported.
    #[snafu(display("view is not supported (id redacted; type {actual})"))]
    NotSupportedView { view_id: String, actual: i32 },
}

/// Errors from space backup operations.
#[derive(Snafu)]
#[snafu(visibility(pub))]
pub enum BackupError {
    /// gRPC status error from a request.
    #[snafu(display("backup gRPC request failed with code {}", source.code()))]
    BackupRpc {
        #[snafu(source(false))]
        source: tonic::Status,
    },

    /// Anytype API returned an error response.
    #[snafu(display("Anytype backup API error ({code}; description redacted)"))]
    BackupApiResponse { code: i32, description: String },

    /// Authentication token metadata was invalid.
    #[snafu(display("backup authentication failed (details redacted)"))]
    BackupAuth { source: AuthError },

    /// Backup options were invalid.
    #[snafu(display("invalid backup options (details redacted)"))]
    InvalidOptions { message: String },

    /// Failed to resolve the friendly name for a space.
    #[snafu(display("failed to resolve backup space name (details redacted)"))]
    SpaceNameLookup { space_id: String, message: String },

    /// Server response did not include an export path.
    #[snafu(display("Backup response missing export path"))]
    MissingExportPath,

    /// Failed to create or access a local path.
    #[snafu(display("backup I/O failed (details redacted)"))]
    BackupIo {
        path: std::path::PathBuf,
        #[snafu(source(false))]
        source: std::io::Error,
    },

    /// Failed to move generated backup to its final target path.
    #[snafu(display("moving backup output failed (details redacted)"))]
    BackupMove {
        from: std::path::PathBuf,
        to: std::path::PathBuf,
        #[snafu(source(false))]
        source: std::io::Error,
    },

    /// A backup gRPC operation reached its logical deadline.
    #[snafu(context(suffix(BackupDeadlineSnafu)), display("{source}"))]
    Deadline {
        source: crate::deadline::GrpcDeadlineError,
    },
}

macro_rules! impl_redacted_debug {
    ($($error:ty),+ $(,)?) => {
        $(
            impl fmt::Debug for $error {
                fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
                    fmt::Display::fmt(self, formatter)
                }
            }
        )+
    };
}

impl_redacted_debug!(
    AnytypeGrpcError,
    AuthError,
    ConfigError,
    ViewError,
    BackupError,
);

// From impls for AuthError
impl From<tonic::Status> for AuthError {
    fn from(source: tonic::Status) -> Self {
        AuthError::Status { source }
    }
}

impl From<tonic::metadata::errors::InvalidMetadataValue> for AuthError {
    fn from(source: tonic::metadata::errors::InvalidMetadataValue) -> Self {
        AuthError::InvalidMetadata { source }
    }
}

impl From<crate::deadline::GrpcTimeoutConfigError> for AuthError {
    fn from(source: crate::deadline::GrpcTimeoutConfigError) -> Self {
        AuthError::TimeoutConfig { source }
    }
}

// From impls for ConfigError
impl From<std::io::Error> for ConfigError {
    fn from(source: std::io::Error) -> Self {
        ConfigError::Io { source }
    }
}

impl From<serde_json::Error> for ConfigError {
    fn from(source: serde_json::Error) -> Self {
        ConfigError::Parse { source }
    }
}

// From impls for ViewError
impl From<AuthError> for ViewError {
    fn from(source: AuthError) -> Self {
        ViewError::Auth { source }
    }
}

impl From<tonic::Status> for ViewError {
    fn from(source: tonic::Status) -> Self {
        ViewError::Rpc { source }
    }
}

// From impls for BackupError
impl From<tonic::Status> for BackupError {
    fn from(source: tonic::Status) -> Self {
        BackupError::BackupRpc { source }
    }
}

impl From<AuthError> for BackupError {
    fn from(source: AuthError) -> Self {
        BackupError::BackupAuth { source }
    }
}

// From impls for AnytypeGrpcError
impl From<AuthError> for AnytypeGrpcError {
    fn from(source: AuthError) -> Self {
        match source {
            AuthError::TimeoutConfig { source } => AnytypeGrpcError::TimeoutConfig { source },
            AuthError::Deadline { source } => AnytypeGrpcError::Deadline { source },
            source => AnytypeGrpcError::Auth { source },
        }
    }
}

impl From<ConfigError> for AnytypeGrpcError {
    fn from(source: ConfigError) -> Self {
        AnytypeGrpcError::Config { source }
    }
}

impl From<ViewError> for AnytypeGrpcError {
    fn from(source: ViewError) -> Self {
        AnytypeGrpcError::View { source }
    }
}

impl From<BackupError> for AnytypeGrpcError {
    fn from(source: BackupError) -> Self {
        match source {
            BackupError::Deadline { source } => AnytypeGrpcError::Deadline { source },
            source => AnytypeGrpcError::Backup { source },
        }
    }
}

impl From<tonic::transport::Error> for AnytypeGrpcError {
    fn from(source: tonic::transport::Error) -> Self {
        AnytypeGrpcError::Transport { source }
    }
}

impl From<crate::deadline::GrpcTimeoutConfigError> for AnytypeGrpcError {
    fn from(source: crate::deadline::GrpcTimeoutConfigError) -> Self {
        AnytypeGrpcError::TimeoutConfig { source }
    }
}

impl From<crate::deadline::GrpcDeadlineError> for AnytypeGrpcError {
    fn from(source: crate::deadline::GrpcDeadlineError) -> Self {
        AnytypeGrpcError::Deadline { source }
    }
}

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

    const SECRET: &str = "HOSTILE_RPC_PEER_SECRET";

    fn assert_redacted<E>(error: &E)
    where
        E: std::error::Error,
    {
        assert!(!error.to_string().contains(SECRET));
        assert!(!format!("{error:?}").contains(SECRET));
        let mut source = error.source();
        while let Some(current) = source {
            assert!(!current.to_string().contains(SECRET));
            assert!(!format!("{current:?}").contains(SECRET));
            source = current.source();
        }
    }

    #[test]
    fn public_rpc_error_families_redact_peer_controlled_details_and_sources() {
        let auth_status = AuthError::Status {
            source: tonic::Status::internal(SECRET),
        };
        assert_redacted(&auth_status);
        assert_redacted(&AuthError::Api {
            code: 500,
            description: SECRET.to_owned(),
        });

        let config = ConfigError::Io {
            source: std::io::Error::other(SECRET),
        };
        assert_redacted(&config);

        let view_status = ViewError::Rpc {
            source: tonic::Status::invalid_argument(SECRET),
        };
        assert_redacted(&view_status);
        assert_redacted(&ViewError::ApiResponse {
            code: 400,
            description: SECRET.to_owned(),
        });
        assert_redacted(&ViewError::MissingView {
            view_id: SECRET.to_owned(),
        });

        let backup_status = BackupError::BackupRpc {
            source: tonic::Status::unavailable(SECRET),
        };
        assert_redacted(&backup_status);
        assert_redacted(&BackupError::BackupApiResponse {
            code: 503,
            description: SECRET.to_owned(),
        });
        assert_redacted(&BackupError::SpaceNameLookup {
            space_id: SECRET.to_owned(),
            message: SECRET.to_owned(),
        });

        assert_redacted(&AnytypeGrpcError::Auth {
            source: AuthError::Api {
                code: 500,
                description: SECRET.to_owned(),
            },
        });
        let transport = tonic::transport::Endpoint::from_shared(format!("not {SECRET}"))
            .expect_err("hostile endpoint is invalid");
        assert_redacted(&AnytypeGrpcError::Transport { source: transport });
        assert_redacted(&AnytypeGrpcError::ControlBoundary {
            kind: GrpcControlBoundaryKind::QueueSaturated,
            outcome: crate::deadline::GrpcTimeoutOutcome::MutationIndeterminate,
        });
    }
}