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
//! # An extension API for activitystreams
//! _This crate provides Ext1, Ext2, Ext3, and Ext4 for adding extensions to ActivityStreams types_
//!
//! - Find the code on [git.asonix.dog](https://git.asonix.dog/Aardwolf/activitystreams)
//! - Read the docs on [docs.rs](https://docs.rs/activitystreams-ext)
//! - Join the matrix channel at [#activitypub:asonix.dog](https://matrix.to/#/!fAEcHyTUdAaKCzIKCt:asonix.dog?via=asonix.dog&via=matrix.org&via=t2bot.io)
//! - Hit me up on [mastodon](https://asonix.dog/@asonix)
//!
//! ## Usage
//!
//! First, add ActivityStreams to your dependencies
//! ```toml
//! [dependencies]
//! activitystreams = "0.7.0-alpha.3"
//! activitystreams-ext = "0.1.0-alpha.2"
//! ```
//!
//! For an example, we'll implement a PublicKey extension and demonstrate usage with Ext1
//! ```rust
//! use activitystreams::{
//!     actor::{ApActor, Person},
//!     context,
//!     prelude::*,
//!     security,
//!     unparsed::UnparsedMutExt,
//!     url::Url,
//! };
//! use activitystreams_ext::{Ext1, UnparsedExtension};
//!
//! #[derive(Clone, Debug, serde::Deserialize, serde::Serialize)]
//! #[serde(rename_all = "camelCase")]
//! pub struct PublicKey {
//!     public_key: PublicKeyInner,
//! }
//!
//! #[derive(Clone, Debug, serde::Deserialize, serde::Serialize)]
//! #[serde(rename_all = "camelCase")]
//! pub struct PublicKeyInner {
//!     id: Url,
//!     owner: Url,
//!     public_key_pem: String,
//! }
//!
//! impl<U> UnparsedExtension<U> for PublicKey
//! where
//!     U: UnparsedMutExt,
//! {
//!     type Error = serde_json::Error;
//!
//!     fn try_from_unparsed(unparsed_mut: &mut U) -> Result<Self, Self::Error> {
//!         Ok(PublicKey {
//!             public_key: unparsed_mut.remove("publicKey")?,
//!         })
//!     }
//!
//!     fn try_into_unparsed(self, unparsed_mut: &mut U) -> Result<(), Self::Error> {
//!         unparsed_mut.insert("publicKey", self.public_key)?;
//!         Ok(())
//!     }
//! }
//!
//! pub type ExtendedPerson = Ext1<ApActor<Person>, PublicKey>;
//!
//! fn main() -> Result<(), anyhow::Error> {
//!     let actor = ApActor::new("http://in.box".parse()?, Person::new());
//!
//!     let mut person = Ext1::new(
//!         actor,
//!         PublicKey {
//!             public_key: PublicKeyInner {
//!                 id: "http://key.id".parse()?,
//!                 owner: "http://owner.id".parse()?,
//!                 public_key_pem: "asdfasdfasdf".to_owned(),
//!             },
//!         },
//!     );
//!
//!     person.set_context(context()).add_context(security());
//!
//!     let any_base = person.into_any_base()?;
//!     println!("any_base: {:#?}", any_base);
//!     let person = ExtendedPerson::from_any_base(any_base)?;
//!
//!     println!("person: {:#?}", person);
//!     Ok(())
//! }
//! ```

#![doc(html_root_url = "https://docs.rs/activitystreams-ext/0.1.0-alpha.0/activitystreams_ext")]

use activitystreams::{
    base::{Base, Extends},
    unparsed::{UnparsedMut, UnparsedMutExt},
};

mod ext1;
mod ext2;
mod ext3;
mod ext4;

/// Transform types from and into the Unparsed structure
pub trait UnparsedExtension<U>
where
    U: UnparsedMutExt,
{
    type Error: std::error::Error;

    /// Generate Self from Unparsed
    fn try_from_unparsed(unparsed_mut: &mut U) -> Result<Self, Self::Error>
    where
        Self: Sized;

    /// Insert Self into Unparsed
    fn try_into_unparsed(self, unparsed_mut: &mut U) -> Result<(), Self::Error>;
}

/// Extend a type with a single value
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize)]
pub struct Ext1<Inner, A> {
    #[serde(flatten)]
    pub ext_one: A,

    /// The type being extended
    #[serde(flatten)]
    pub inner: Inner,
}

/// Extend a type with two values
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize)]
pub struct Ext2<Inner, A, B> {
    #[serde(flatten)]
    pub ext_one: A,

    #[serde(flatten)]
    pub ext_two: B,

    /// The type being extended
    #[serde(flatten)]
    pub inner: Inner,
}

/// Extend a type with three values
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize)]
pub struct Ext3<Inner, A, B, C> {
    #[serde(flatten)]
    pub ext_one: A,

    #[serde(flatten)]
    pub ext_two: B,

    #[serde(flatten)]
    pub ext_three: C,

    /// The type being extended
    #[serde(flatten)]
    pub inner: Inner,
}

/// Extend a type with four values
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize)]
pub struct Ext4<Inner, A, B, C, D> {
    #[serde(flatten)]
    pub ext_one: A,

    #[serde(flatten)]
    pub ext_two: B,

    #[serde(flatten)]
    pub ext_three: C,

    #[serde(flatten)]
    pub ext_four: D,

    /// The type being extended
    #[serde(flatten)]
    pub inner: Inner,
}

impl<Inner, A> Ext1<Inner, A> {
    pub fn new(inner: Inner, ext_one: A) -> Self {
        Ext1 { inner, ext_one }
    }

    pub fn into_parts(self) -> (Inner, A) {
        (self.inner, self.ext_one)
    }

    pub fn extend<B>(self, ext_two: B) -> Ext2<Inner, A, B> {
        Ext2 {
            inner: self.inner,
            ext_one: self.ext_one,
            ext_two,
        }
    }
}

impl<Inner, A, B> Ext2<Inner, A, B> {
    pub fn new(inner: Inner, ext_one: A, ext_two: B) -> Self {
        Ext2 {
            inner,
            ext_one,
            ext_two,
        }
    }

    pub fn into_parts(self) -> (Inner, A, B) {
        (self.inner, self.ext_one, self.ext_two)
    }

    pub fn extend<C>(self, ext_three: C) -> Ext3<Inner, A, B, C> {
        Ext3 {
            inner: self.inner,
            ext_one: self.ext_one,
            ext_two: self.ext_two,
            ext_three,
        }
    }
}

impl<Inner, A, B, C> Ext3<Inner, A, B, C> {
    pub fn new(inner: Inner, ext_one: A, ext_two: B, ext_three: C) -> Self {
        Ext3 {
            inner,
            ext_one,
            ext_two,
            ext_three,
        }
    }

    pub fn into_parts(self) -> (Inner, A, B, C) {
        (self.inner, self.ext_one, self.ext_two, self.ext_three)
    }

    pub fn extend<D>(self, ext_four: D) -> Ext4<Inner, A, B, C, D> {
        Ext4 {
            inner: self.inner,
            ext_one: self.ext_one,
            ext_two: self.ext_two,
            ext_three: self.ext_three,
            ext_four,
        }
    }
}

impl<Inner, A, B, C, D> Ext4<Inner, A, B, C, D> {
    pub fn new(inner: Inner, ext_one: A, ext_two: B, ext_three: C, ext_four: D) -> Self {
        Ext4 {
            inner,
            ext_one,
            ext_two,
            ext_three,
            ext_four,
        }
    }

    pub fn into_parts(self) -> (Inner, A, B, C, D) {
        (
            self.inner,
            self.ext_one,
            self.ext_two,
            self.ext_three,
            self.ext_four,
        )
    }
}

impl<Inner, A, Kind, Error> Extends<Kind> for Ext1<Inner, A>
where
    Inner: Extends<Kind, Error = Error> + UnparsedMut,
    A: UnparsedExtension<Inner, Error = Error>,
    Error: From<serde_json::Error> + std::error::Error,
{
    type Error = Error;

    fn extends(base: Base<Kind>) -> Result<Self, Self::Error> {
        let mut inner = Inner::extends(base)?;
        let ext_one = A::try_from_unparsed(&mut inner)?;

        Ok(Ext1 { inner, ext_one })
    }

    fn retracts(self) -> Result<Base<Kind>, Self::Error> {
        let Ext1 { mut inner, ext_one } = self;

        ext_one.try_into_unparsed(&mut inner)?;
        inner.retracts()
    }
}

impl<Inner, A, B, Kind, Error> Extends<Kind> for Ext2<Inner, A, B>
where
    Inner: Extends<Kind, Error = Error> + UnparsedMut,
    A: UnparsedExtension<Inner, Error = Error>,
    B: UnparsedExtension<Inner, Error = Error>,
    Error: From<serde_json::Error> + std::error::Error,
{
    type Error = Error;

    fn extends(base: Base<Kind>) -> Result<Self, Self::Error> {
        let mut inner = Inner::extends(base)?;
        let ext_one = A::try_from_unparsed(&mut inner)?;
        let ext_two = B::try_from_unparsed(&mut inner)?;

        Ok(Ext2 {
            inner,
            ext_one,
            ext_two,
        })
    }

    fn retracts(self) -> Result<Base<Kind>, Self::Error> {
        let Ext2 {
            mut inner,
            ext_one,
            ext_two,
        } = self;

        ext_one.try_into_unparsed(&mut inner)?;
        ext_two.try_into_unparsed(&mut inner)?;
        inner.retracts()
    }
}

impl<Inner, A, B, C, Kind, Error> Extends<Kind> for Ext3<Inner, A, B, C>
where
    Inner: Extends<Kind, Error = Error> + UnparsedMut,
    A: UnparsedExtension<Inner, Error = Error>,
    B: UnparsedExtension<Inner, Error = Error>,
    C: UnparsedExtension<Inner, Error = Error>,
    Error: From<serde_json::Error> + std::error::Error,
{
    type Error = Error;

    fn extends(base: Base<Kind>) -> Result<Self, Self::Error> {
        let mut inner = Inner::extends(base)?;
        let ext_one = A::try_from_unparsed(&mut inner)?;
        let ext_two = B::try_from_unparsed(&mut inner)?;
        let ext_three = C::try_from_unparsed(&mut inner)?;

        Ok(Ext3 {
            inner,
            ext_one,
            ext_two,
            ext_three,
        })
    }

    fn retracts(self) -> Result<Base<Kind>, Self::Error> {
        let Ext3 {
            mut inner,
            ext_one,
            ext_two,
            ext_three,
        } = self;

        ext_one.try_into_unparsed(&mut inner)?;
        ext_two.try_into_unparsed(&mut inner)?;
        ext_three.try_into_unparsed(&mut inner)?;
        inner.retracts()
    }
}

impl<Inner, A, B, C, D, Kind, Error> Extends<Kind> for Ext4<Inner, A, B, C, D>
where
    Inner: Extends<Kind, Error = Error> + UnparsedMut,
    A: UnparsedExtension<Inner, Error = Error>,
    B: UnparsedExtension<Inner, Error = Error>,
    C: UnparsedExtension<Inner, Error = Error>,
    D: UnparsedExtension<Inner, Error = Error>,
    Error: From<serde_json::Error> + std::error::Error,
{
    type Error = Error;

    fn extends(base: Base<Kind>) -> Result<Self, Self::Error> {
        let mut inner = Inner::extends(base)?;
        let ext_one = A::try_from_unparsed(&mut inner)?;
        let ext_two = B::try_from_unparsed(&mut inner)?;
        let ext_three = C::try_from_unparsed(&mut inner)?;
        let ext_four = D::try_from_unparsed(&mut inner)?;

        Ok(Ext4 {
            inner,
            ext_one,
            ext_two,
            ext_three,
            ext_four,
        })
    }

    fn retracts(self) -> Result<Base<Kind>, Self::Error> {
        let Ext4 {
            mut inner,
            ext_one,
            ext_two,
            ext_three,
            ext_four,
        } = self;

        ext_one.try_into_unparsed(&mut inner)?;
        ext_two.try_into_unparsed(&mut inner)?;
        ext_three.try_into_unparsed(&mut inner)?;
        ext_four.try_into_unparsed(&mut inner)?;
        inner.retracts()
    }
}