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
#[cfg(feature = "std")]
use serde::{Deserialize, Serialize};
#[cfg(feature = "std")]
use jsonrpc_core::{Error as RpcError, ErrorCode};
use codec::{Decode, Encode};
use sp_runtime::SaturatedConversion;
use sp_std::prelude::*;
use crate::{Content, bool_to_option, Trait, WhoAndWhen};
#[derive(Eq, PartialEq, Encode, Decode, Default)]
#[cfg_attr(feature = "std", derive(Debug, Serialize, Deserialize))]
#[cfg_attr(feature = "std", serde(rename_all = "camelCase"))]
pub struct FlatWhoAndWhen<AccountId, BlockNumber> {
pub created_by: AccountId,
pub created_at_block: BlockNumber,
pub created_at_time: u64,
#[cfg_attr(feature = "std", serde(skip_serializing_if = "ShouldSkip::should_skip"))]
pub updated_by: Option<AccountId>,
#[cfg_attr(feature = "std", serde(skip_serializing_if = "ShouldSkip::should_skip"))]
pub updated_at_block: Option<BlockNumber>,
#[cfg_attr(feature = "std", serde(skip_serializing_if = "ShouldSkip::should_skip"))]
pub updated_at_time: Option<u64>,
#[cfg_attr(feature = "std", serde(skip_serializing_if = "ShouldSkip::should_skip"))]
pub is_updated: Option<bool>,
}
impl<T: Trait> From<(WhoAndWhen<T>, Option<WhoAndWhen<T>>)> for FlatWhoAndWhen<T::AccountId, T::BlockNumber> {
fn from(created_and_updated: (WhoAndWhen<T>, Option<WhoAndWhen<T>>)) -> Self {
let (created, updated) = created_and_updated;
Self {
created_by: created.account,
created_at_block: created.block,
created_at_time: created.time.saturated_into::<u64>(),
updated_by: updated.clone().map(|value| value.account),
updated_at_block: updated.clone().map(|value| value.block),
updated_at_time: updated.clone().map(|value| value.time.saturated_into::<u64>()),
is_updated: bool_to_option(updated.is_some()),
}
}
}
impl<T: Trait> From<WhoAndWhen<T>> for FlatWhoAndWhen<T::AccountId, T::BlockNumber> {
fn from(created: WhoAndWhen<T>) -> Self {
Self {
created_by: created.account,
created_at_block: created.block,
created_at_time: created.time.saturated_into::<u64>(),
updated_by: None,
updated_at_block: None,
updated_at_time: None,
is_updated: None,
}
}
}
#[derive(Eq, PartialEq, Encode, Decode, Default)]
#[cfg_attr(feature = "std", derive(Debug, Serialize, Deserialize))]
#[cfg_attr(feature = "std", serde(rename_all = "camelCase"))]
pub struct FlatContent {
pub content_id: Content,
#[cfg_attr(feature = "std", serde(skip_serializing_if = "ShouldSkip::should_skip"))]
pub is_ipfs_content: Option<bool>,
}
#[cfg(feature = "std")]
impl Serialize for Content {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
let content_vec: Vec<u8> = self.clone().into();
serializer.serialize_str(
std::str::from_utf8(&content_vec).unwrap_or_default()
)
}
}
impl From<Content> for FlatContent {
fn from(content: Content) -> Self {
Self {
content_id: content.clone(),
is_ipfs_content: bool_to_option(content.is_ipfs()),
}
}
}
pub trait ShouldSkip {
fn should_skip(&self) -> bool;
}
impl<T> ShouldSkip for Option<T> {
fn should_skip(&self) -> bool {
self.is_none()
}
}
#[cfg(feature = "std")]
pub fn map_rpc_error(err: impl std::fmt::Debug) -> RpcError {
RpcError {
code: ErrorCode::ServerError(1),
message: "An RPC error occurred".into(),
data: Some(format!("{:?}", err).into()),
}
}