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
//! Defines custom types and structs primarily that composite the JSON:API
//! document
use serde_json;
use std::collections::HashMap;
use crate::errors::*;
use std::str::FromStr;
use std;
use serde::{Deserialize, Serialize};
/// Permitted JSON-API values (all JSON Values)
pub type JsonApiValue = serde_json::Value;
/// Vector of `Resource`
pub type Resources = Vec<Resource>;
/// Vector of `ResourceIdentifiers`
pub type ResourceIdentifiers = Vec<ResourceIdentifier>;
pub type Links = HashMap<String, JsonApiValue>;
/// Meta-data object, can contain any data
pub type Meta = HashMap<String, JsonApiValue>;
/// Resource Attributes, can be any JSON value
pub type ResourceAttributes = HashMap<String, JsonApiValue>;
/// Map of relationships with other objects
pub type Relationships = HashMap<String, Relationship>;
/// Side-loaded Resources
pub type Included = Vec<Resource>;
/// Data-related errors
pub type JsonApiErrors = Vec<JsonApiError>;
pub type JsonApiId = String;
pub type JsonApiIds<'a> = Vec<&'a JsonApiId>;
/// Resource Identifier
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct ResourceIdentifier {
#[serde(rename = "type")]
pub _type: String,
pub id: JsonApiId,
}
/// Representation of a JSON:API resource. This is a struct that contains
/// attributes that map to the JSON:API specification of `id`, `type`,
/// `attributes`, `relationships`, `links`, and `meta`
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Default)]
pub struct Resource {
#[serde(rename = "type")]
pub _type: String,
pub id: JsonApiId,
#[serde(default)]
pub attributes: ResourceAttributes,
#[serde(skip_serializing_if = "Option::is_none")]
pub relationships: Option<Relationships>,
#[serde(skip_serializing_if = "Option::is_none")]
pub links: Option<Links>,
#[serde(skip_serializing_if = "Option::is_none")]
pub meta: Option<Meta>,
}
/// Relationship with another object
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct Relationship {
#[serde(skip_serializing_if = "Option::is_none")]
pub data: Option<IdentifierData>,
#[serde(skip_serializing_if = "Option::is_none")]
pub links: Option<Links>,
}
/// Valid data Resource (can be None)
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
#[serde(untagged)]
pub enum PrimaryData {
None,
Single(Box<Resource>),
Multiple(Resources),
}
/// Valid Resource Identifier (can be None)
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
#[serde(untagged)]
pub enum IdentifierData {
None,
Single(ResourceIdentifier),
Multiple(ResourceIdentifiers),
}
/// A struct that defines an error state for a JSON:API document
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Default)]
pub struct DocumentError {
pub errors: JsonApiErrors,
#[serde(skip_serializing_if = "Option::is_none")]
pub links: Option<Links>,
#[serde(skip_serializing_if = "Option::is_none")]
pub meta: Option<Meta>,
#[serde(skip_serializing_if = "Option::is_none")]
pub jsonapi: Option<JsonApiInfo>,
}
/// A struct that defines properties for a JSON:API document that contains no errors
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Default)]
pub struct DocumentData {
#[serde(skip_serializing_if = "Option::is_none")]
pub data: Option<PrimaryData>,
#[serde(skip_serializing_if = "Option::is_none")]
pub included: Option<Resources>,
#[serde(skip_serializing_if = "Option::is_none")]
pub links: Option<Links>,
#[serde(skip_serializing_if = "Option::is_none")]
pub meta: Option<Meta>,
#[serde(skip_serializing_if = "Option::is_none")]
pub jsonapi: Option<JsonApiInfo>,
}
/// An enum that defines the possible composition of a JSON:API document - one which contains `error` or
/// `data` - but not both. Rely on Rust's type system to handle this basic validation instead of
/// running validators on parsed documents
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
#[serde(untagged)]
pub enum JsonApiDocument {
Error(DocumentError),
Data(DocumentData),
}
/// Error location
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Default)]
pub struct ErrorSource {
pub pointer: Option<String>,
pub parameter: Option<String>,
}
/// Retpresentation of a JSON:API error (all fields are optional)
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Default)]
pub struct JsonApiError {
#[serde(skip_serializing_if = "Option::is_none")]
pub id: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub links: Option<Links>,
#[serde(skip_serializing_if = "Option::is_none")]
pub status: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub code: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub title: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub detail: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub source: Option<ErrorSource>,
#[serde(skip_serializing_if = "Option::is_none")]
pub meta: Option<Meta>,
}
/// Optional `JsonApiDocument` payload identifying the JSON-API version the
/// server implements
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub struct JsonApiInfo {
pub version: Option<String>,
pub meta: Option<Meta>,
}
/// Pagination links
#[derive(Serialize, Deserialize, Debug)]
pub struct Pagination {
pub first: Option<String>,
pub prev: Option<String>,
pub next: Option<String>,
pub last: Option<String>,
}
#[derive(Debug)]
pub struct Patch {
pub patch_type: PatchType,
pub subject: String,
pub previous: JsonApiValue,
pub next: JsonApiValue,
}
#[derive(Debug)]
pub struct PatchSet {
pub resource_type: String,
pub resource_id: String,
pub patches: Vec<Patch>,
}
impl PatchSet {
pub fn new_for(resource: &Resource) -> Self {
PatchSet {
resource_type: resource._type.clone(),
resource_id: resource.id.clone(),
patches: Vec::<Patch>::new(),
}
}
pub fn push(&mut self, patch: Patch) {
self.patches.push(patch);
}
}
impl DocumentData {
fn has_meta(&self) -> bool {
self.meta.is_some()
}
fn has_included(&self) -> bool {
self.included.is_some()
}
fn has_data(&self) -> bool {
self.data.is_some()
}
}
/// Top-level JSON-API Document
/// An "error" document can be valid, just as a "data" document can be valid
impl JsonApiDocument {
/// This function returns `false` if the `JsonApiDocument` contains any violations of the
/// specification. See [`DocumentValidationError`](enum.DocumentValidationError.html)
///
/// The spec dictates that the document must have least one of `data`, `errors` or `meta`.
/// Of these, `data` and `errors` must not co-exist.
/// The optional field `included` may only be present if the `data` field is present too.
pub fn is_valid(&self) -> bool {
self.validate().is_none()
}
/// This function returns a `Vec` with identified specification violations enumerated in
/// `DocumentValidationError`
///
/// ```
/// // Simulate an error where `included` has data but `data` does not
/// use jsonapi::api::*;
/// use std::str::FromStr;
///
/// let serialized = r#"{
/// "id":"1",
/// "type":"post",
/// "attributes":{
/// "title": "Rails is Omakase",
/// "likes": 250
/// },
/// "relationships":{},
/// "links" :{}
/// }"#;
///
/// let resource = Resource::from_str(&serialized);
///
/// let data = DocumentData {
/// data: None,
/// included: Some(vec![resource.unwrap()]),
/// ..Default::default()
/// };
///
/// let doc = JsonApiDocument::Data(data);
///
/// match doc.validate() {
/// Some(errors) => {
/// assert!(
/// errors.contains(
/// &DocumentValidationError::IncludedWithoutData
/// )
/// )
/// }
/// None => assert!(false)
/// }
/// ```
pub fn validate(&self) -> Option<Vec<DocumentValidationError>> {
let mut errors = Vec::<DocumentValidationError>::new();
match self {
JsonApiDocument::Error(_x) => None,
JsonApiDocument::Data(doc) => {
if doc.has_included() && !doc.has_data() {
errors.push(DocumentValidationError::IncludedWithoutData);
}
if !(doc.has_data() || doc.has_meta()) {
errors.push(DocumentValidationError::MissingContent);
}
match errors.len() {
0 => None,
_ => Some(errors),
}
}
}
}
}
impl FromStr for JsonApiDocument {
type Err = Error;
/// Instantiate from string
///
/// ```
/// use jsonapi::api::JsonApiDocument;
/// use std::str::FromStr;
///
/// let serialized = r#"{
/// "data" : [
/// { "id":"1", "type":"post", "attributes":{}, "relationships":{}, "links" :{} },
/// { "id":"2", "type":"post", "attributes":{}, "relationships":{}, "links" :{} },
/// { "id":"3", "type":"post", "attributes":{}, "relationships":{}, "links" :{} }
/// ]
/// }"#;
/// let doc = JsonApiDocument::from_str(&serialized);
/// assert_eq!(doc.is_ok(), true);
/// ```
fn from_str(s: &str) -> Result<Self> {
serde_json::from_str(s).chain_err(|| "Error parsing Document")
}
}
impl Resource {
pub fn get_relationship(&self, name: &str) -> Option<&Relationship> {
match self.relationships {
None => None,
Some(ref relationships) => {
match relationships.get(name) {
None => None,
Some(rel) => Some(rel),
}
}
}
}
/// Get an attribute `JsonApiValue`
///
/// ```
/// use jsonapi::api::Resource;
/// use std::str::FromStr;
///
/// let serialized = r#"{
/// "id":"1",
/// "type":"post",
/// "attributes":{
/// "title": "Rails is Omakase",
/// "likes": 250
/// },
/// "relationships":{},
/// "links" :{}
/// }"#;
///
/// match Resource::from_str(&serialized) {
/// Err(_)=> assert!(false),
/// Ok(resource)=> {
/// match resource.get_attribute("title") {
/// None => assert!(false),
/// Some(attr) => {
/// match attr.as_str() {
/// None => assert!(false),
/// Some(s) => {
/// assert_eq!(s, "Rails is Omakase");
/// }
/// }
/// }
/// }
/// }
/// }
pub fn get_attribute(&self, name: &str) -> Option<&JsonApiValue> {
match self.attributes.get(name) {
None => None,
Some(val) => Some(val),
}
}
pub fn diff(&self, other: Resource) -> std::result::Result<PatchSet, DiffPatchError> {
if self._type != other._type {
Err(DiffPatchError::IncompatibleTypes(
self._type.clone(),
other._type.clone(),
))
} else {
let mut self_keys: Vec<String> =
self.attributes.iter().map(|(key, _)| key.clone()).collect();
self_keys.sort();
let mut other_keys: Vec<String> = other
.attributes
.iter()
.map(|(key, _)| key.clone())
.collect();
other_keys.sort();
let matching = self_keys
.iter()
.zip(other_keys.iter())
.filter(|&(a, b)| a == b)
.count();
if matching != self_keys.len() {
Err(DiffPatchError::DifferentAttributeKeys)
} else {
let mut patchset = PatchSet::new_for(self);
for (attr, self_value) in &self.attributes {
match other.attributes.get(attr) {
None => {
error!(
"Resource::diff unable to find attribute {:?} in {:?}",
attr,
other
);
}
Some(other_value) => {
if self_value != other_value {
patchset.push(Patch {
patch_type: PatchType::Attribute,
subject: attr.clone(),
previous: self_value.clone(),
next: other_value.clone(),
});
}
}
}
}
Ok(patchset)
}
}
}
pub fn patch(&mut self, patchset: PatchSet) -> Result<Resource> {
let mut res = self.clone();
for patch in &patchset.patches {
res.attributes.insert(
patch.subject.clone(),
patch.next.clone(),
);
}
Ok(res)
}
}
impl FromStr for Resource {
type Err = Error;
/// Instantiate from string
///
/// ```
/// use jsonapi::api::Resource;
/// use std::str::FromStr;
///
/// let serialized = r#"{
/// "id":"1",
/// "type":"post",
/// "attributes":{
/// "title": "Rails is Omakase",
/// "likes": 250
/// },
/// "relationships":{},
/// "links" :{}
/// }"#;
///
/// let data = Resource::from_str(&serialized);
/// assert_eq!(data.is_ok(), true);
/// ```
fn from_str(s: &str) -> Result<Self> {
serde_json::from_str(s).chain_err(|| "Error parsing resource")
}
}
impl Relationship {
pub fn as_id(&self) -> std::result::Result<Option<&JsonApiId>, RelationshipAssumptionError> {
match self.data {
Some(IdentifierData::None) => Ok(None),
Some(IdentifierData::Multiple(_)) => Err(RelationshipAssumptionError::RelationshipIsAList),
Some(IdentifierData::Single(ref data)) => Ok(Some(&data.id)),
None => Ok(None),
}
}
pub fn as_ids(&self) -> std::result::Result<Option<JsonApiIds>, RelationshipAssumptionError> {
match self.data {
Some(IdentifierData::None) => Ok(None),
Some(IdentifierData::Single(_)) => Err(RelationshipAssumptionError::RelationshipIsNotAList),
Some(IdentifierData::Multiple(ref data)) => Ok(Some(data.iter().map(|x| &x.id).collect())),
None => Ok(None),
}
}
}
/// Enum to describe top-level JSON:API specification violations
#[derive(Debug, Clone, PartialEq, Copy)]
pub enum DocumentValidationError {
IncludedWithoutData,
MissingContent,
}
#[derive(Debug, Clone, PartialEq, Copy)]
pub enum JsonApiDataError {
AttributeNotFound,
IncompatibleAttributeType,
}
#[derive(Debug, Clone, PartialEq, Copy)]
pub enum RelationshipAssumptionError {
RelationshipIsAList,
RelationshipIsNotAList,
}
#[derive(Debug, Clone, PartialEq)]
pub enum DiffPatchError {
IncompatibleTypes(String, String),
DifferentAttributeKeys,
NonExistentProperty(String),
IncorrectPropertyValue(String),
}
#[derive(Debug, Clone, PartialEq, Copy)]
pub enum PatchType {
Relationship,
Attribute,
}