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
use super::*;
use crate::util::{InclusionRule, MaybeDoubleSet};
use alloc::collections::{BTreeMap, BTreeSet};
use core::{convert::identity, iter::repeat};
use types::*;

/// Specifies arguments to retrieve trust registries informations by.
#[derive(Encode, Decode, Clone, Debug, PartialEq, Eq, Ord, PartialOrd)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(feature = "serde", serde(rename_all = "camelCase"))]
#[derive(scale_info_derive::TypeInfo)]
#[scale_info(omit_prefix)]
pub struct QueryTrustRegistriesBy {
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    issuers: Option<InclusionRule<Issuer>>,
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    verifiers: Option<InclusionRule<Verifier>>,
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    issuers_or_verifiers: Option<InclusionRule<IssuerOrVerifier>>,
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    schema_ids: Option<InclusionRule<TrustRegistrySchemaId>>,
}

/// Specifies arguments to retrieve trust registry informations by.
#[derive(Encode, Decode, Clone, Debug, PartialEq, Eq, Ord, PartialOrd)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(feature = "serde", serde(rename_all = "camelCase"))]
#[derive(scale_info_derive::TypeInfo)]
#[scale_info(omit_prefix)]
pub struct QueryTrustRegistryBy {
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    issuers: Option<InclusionRule<Issuer>>,
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    verifiers: Option<InclusionRule<Verifier>>,
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    issuers_or_verifiers: Option<InclusionRule<IssuerOrVerifier>>,
    #[cfg_attr(feature = "serde", serde(skip_serializing_if = "Option::is_none"))]
    schema_ids: Option<BTreeSet<TrustRegistrySchemaId>>,
}

impl QueryTrustRegistryBy {
    /// Resolves to a map containing `TrustRegistrySchemaId` -> `AggregatedTrustRegistrySchemaMetadata<T>` pairs.
    pub fn resolve_to_schemas_metadata_in_registry<T: Config>(
        self,
        reg_id: TrustRegistryId,
    ) -> BTreeMap<TrustRegistrySchemaId, AggregatedTrustRegistrySchemaMetadata<T>> {
        let schema_ids = self.resolve_to_schema_ids_in_registry::<T>(reg_id);

        repeat(reg_id)
            .zip(schema_ids)
            .with_schema_metadata()
            .collect()
    }

    pub fn resolve_to_schema_ids_in_registry<T: Config>(
        self,
        reg_id: TrustRegistryId,
    ) -> BTreeSet<TrustRegistrySchemaId> {
        let Self {
            issuers,
            verifiers,
            issuers_or_verifiers,
            schema_ids,
        } = self;

        let issuer_schema_ids = issuers.map(|issuers| {
            issuers.apply_rule(|issuer| {
                Pallet::<T>::registry_issuer_or_delegated_issuer_schemas(reg_id, issuer)
            })
        });
        let verifier_schema_ids = verifiers.map(|verifiers| {
            verifiers
                .apply_rule(|verifier| Pallet::<T>::registry_verifier_schemas(reg_id, verifier))
        });

        let issuers_and_verifiers_schema_ids =
            MaybeDoubleSet(issuer_schema_ids, verifier_schema_ids).intersection();
        let issuers_or_verifiers_schema_ids = issuers_or_verifiers.map(|issuer_or_verifier| {
            issuer_or_verifier.apply_rule(|issuer_or_verifier| {
                Pallet::<T>::registry_issuer_or_verifier_schemas(reg_id, issuer_or_verifier)
            })
        });

        let combined_issuers_verifiers_schema_ids = MaybeDoubleSet(
            issuers_and_verifiers_schema_ids,
            issuers_or_verifiers_schema_ids,
        )
        .union();

        MaybeDoubleSet(combined_issuers_verifiers_schema_ids, schema_ids)
            .intersection()
            .unwrap_or_default()
    }
}

impl QueryTrustRegistriesBy {
    /// Resolves to a map containing `TrustRegistryId` -> `TrustRegistryInfo<T>` pairs.
    pub fn resolve_to_registries_info<T: Config>(
        self,
    ) -> BTreeMap<TrustRegistryId, TrustRegistryInfo<T>> {
        self.resolve_to_registry_ids::<T>()
            .into_iter()
            .with_registry_info()
            .collect()
    }

    pub fn resolve_to_registry_ids<T: Config>(self) -> BTreeSet<TrustRegistryId> {
        let Self {
            issuers,
            verifiers,
            issuers_or_verifiers,
            schema_ids,
        } = self;

        let issuer_regs = issuers.map(|issuers| issuers.apply_rule(Pallet::<T>::issuer_registries));
        let verifier_regs =
            verifiers.map(|verifiers| verifiers.apply_rule(Pallet::<T>::verifier_registries));

        let issuers_and_verifiers_regs = MaybeDoubleSet(issuer_regs, verifier_regs).intersection();
        let issuers_or_verifiers_regs = issuers_or_verifiers.map(|issuers_or_verifiers| {
            issuers_or_verifiers.apply_rule(Pallet::<T>::issuer_or_verifier_registries)
        });

        let combined_issuers_verifiers_regs =
            MaybeDoubleSet(issuers_or_verifiers_regs, issuers_and_verifiers_regs).intersection();
        let schema_id_regs = schema_ids.map(|schema_ids| {
            schema_ids.apply_rule(TrustRegistrySchemasMetadata::<T>::iter_key_prefix)
        });

        MaybeDoubleSet(combined_issuers_verifiers_regs, schema_id_regs)
            .intersection()
            .unwrap_or_default()
    }
}

/// Extension that can be used by types implementing `IntoIterator`.
trait IterExt: Iterator + Sized {
    /// Transforms value to an iterator emitting `TrustRegistryId`, then transforms result to an iterator producing
    /// `(TrustRegistryId, TrustRegistryInfo<T>)` pairs.
    fn with_registry_info<T>(self) -> MapToPairs<Self, TrustRegistryId, TrustRegistryInfo<T>>
    where
        Self: Iterator<Item = TrustRegistryId>,
        T: Config;

    /// Transforms value to an iterator emitting `(TrustRegistryId, TrustRegistrySchemaId)`, then transforms result to an iterator producing
    /// `(TrustRegistrySchemaId, AggregatedTrustRegistrySchemaMetadata<T>)` pairs.
    fn with_schema_metadata<T>(
        self,
    ) -> MapToPairs<Self, TrustRegistrySchemaId, AggregatedTrustRegistrySchemaMetadata<T>>
    where
        Self: Iterator<Item = (TrustRegistryId, TrustRegistrySchemaId)>,
        T: Config;
}

impl<I> IterExt for I
where
    I: Iterator,
{
    fn with_registry_info<T>(self) -> MapToPairs<Self, TrustRegistryId, TrustRegistryInfo<T>>
    where
        Self: Iterator<Item = TrustRegistryId>,
        T: Config,
    {
        MapToPairs::new(
            self.into_iter(),
            identity,
            TrustRegistriesInfo::<T>::get as _,
        )
    }

    fn with_schema_metadata<T>(
        self,
    ) -> MapToPairs<Self, TrustRegistrySchemaId, AggregatedTrustRegistrySchemaMetadata<T>>
    where
        Self: Iterator<Item = (TrustRegistryId, TrustRegistrySchemaId)>,
        T: Config,
    {
        MapToPairs::new(
            self.into_iter(),
            take_second::<TrustRegistryId, TrustRegistrySchemaId>,
            Pallet::<T>::aggregate_schema_metadata as _,
        )
    }
}

fn take_second<A, B>((_first, second): (A, B)) -> B {
    second
}

/// A wrapper for the iterator that converts an iterator of values
/// to an iterator of pairs obtained using supplied functions.
pub struct MapToPairs<I: Iterator, K, V>(I, fn(I::Item) -> K, fn(I::Item) -> Option<V>);

impl<I, K, V> MapToPairs<I, K, V>
where
    I: Iterator,
{
    fn new(iter: I, map_key: fn(I::Item) -> K, map_value: fn(I::Item) -> Option<V>) -> Self {
        Self(iter, map_key, map_value)
    }
}

impl<I, K, V> Iterator for MapToPairs<I, K, V>
where
    I: Iterator,
    I::Item: Clone,
{
    type Item = (K, V);

    fn next(&mut self) -> Option<Self::Item> {
        loop {
            let id = self.0.next()?;

            if let Some(data) = self.2(id.clone()) {
                break Some((self.1(id), data));
            }
        }
    }
}