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
use super::error::{Result, ResultExt}; use super::{Call, Fault, Response, Value}; use base64; use regex::Regex; use serde_xml_rs::deserialize; use std; use std::collections::HashMap; fn wrap_in_string(content: String) -> String { lazy_static! { static ref RE1: Regex = Regex::new(r"<value\s*/>").unwrap(); static ref RE2: Regex = Regex::new(r"<value\s*>\s*<string\s*/>\s*</value\s*>").unwrap(); static ref RE3: Regex = Regex::new(r"<value\s*>(?P<rest>[^<>]*)</value\s*>").unwrap(); } RE3.replace_all( &RE2.replace_all( &RE1.replace_all(&content, "<value><string></string></value>"), "<value><string></string></value>", ), "<value><string>$rest</string></value>", ) .into() } #[allow(dead_code)] pub fn xml<T: std::io::Read>(mut r: T) -> Result<Value> { let mut content = String::new(); r.read_to_string(&mut content) .chain_err(|| "Failed to read data source.")?; let data: XmlValue = deserialize(std::io::Cursor::new(wrap_in_string(content))) .chain_err(|| "Failed to parse XML-RPC data.")?; data.into() } pub fn call<T: std::io::Read>(mut r: T) -> Result<Call> { let mut content = String::new(); r.read_to_string(&mut content) .chain_err(|| "Failed to read data source.")?; let data: XmlCall = deserialize(std::io::Cursor::new(wrap_in_string(content))) .chain_err(|| "Failed to parse XML-RPC call.")?; data.into() } pub fn response<T: std::io::Read>(mut r: T) -> Result<Response> { let mut content = String::new(); r.read_to_string(&mut content) .chain_err(|| "Failed to read data source.")?; let data: XmlResponse = deserialize(std::io::Cursor::new(wrap_in_string(content))) .chain_err(|| "Failed to parse XML-RPC response.")?; data.into() } #[derive(Debug, PartialEq, Deserialize)] enum XmlValue { #[serde(rename = "i4")] I4(i32), #[serde(rename = "int")] Int(i32), #[serde(rename = "boolean")] Bool(i32), #[serde(rename = "string")] Str(String), #[serde(rename = "double")] Double(String), #[serde(rename = "dateTime.iso8601")] DateTime(String), #[serde(rename = "base64")] Base64(String), #[serde(rename = "array")] Array(XmlArray), #[serde(rename = "struct")] Struct(XmlStruct), } impl Into<Result<Value>> for XmlValue { fn into(self) -> Result<Value> { Ok(match self { XmlValue::I4(v) | XmlValue::Int(v) => Value::Int(v), XmlValue::Bool(v) => Value::Bool(v != 0), XmlValue::Str(v) => Value::String(v), XmlValue::Double(v) => Value::Double(v.parse().chain_err(|| "Failed to parse double")?), XmlValue::DateTime(v) => Value::DateTime(v), XmlValue::Base64(v) => { Value::Base64(base64::decode(v.as_bytes()).chain_err(|| "Failed to parse base64")?) } XmlValue::Array(v) => { let items: Result<Vec<Value>> = v.into(); Value::Array(items?) } XmlValue::Struct(v) => { let items: Result<HashMap<String, Value>> = v.into(); Value::Struct(items?) } }) } } #[derive(Debug, PartialEq, Deserialize)] #[serde(rename = "methodCall")] struct XmlCall { #[serde(rename = "methodName")] pub name: String, pub params: XmlParams, } impl Into<Result<Call>> for XmlCall { fn into(self) -> Result<Call> { let params: Result<Vec<Value>> = self.params.into(); Ok(Call { name: self.name, params: params?, }) } } #[derive(Debug, PartialEq, Deserialize)] enum XmlResponseResult { #[serde(rename = "params")] Success(XmlParams), #[serde(rename = "fault")] Failure { value: XmlValue }, } impl Into<Result<Response>> for XmlResponseResult { fn into(self) -> Result<Response> { match self { XmlResponseResult::Success(params) => { let params: Result<Vec<Value>> = params.into(); Ok(Ok(params?)) } XmlResponseResult::Failure { value: v } => { use serde::Deserialize; let val: Result<Value> = v.into(); Ok(Err( Fault::deserialize(val?).chain_err(|| "Failed to decode fault structure")? )) } } } } #[derive(Debug, PartialEq, Deserialize)] enum XmlResponse { #[serde(rename = "methodResponse")] Response(XmlResponseResult), } impl Into<Result<Response>> for XmlResponse { fn into(self) -> Result<Response> { match self { XmlResponse::Response(v) => v.into(), } } } #[derive(Debug, PartialEq, Deserialize)] struct XmlParams { #[serde(rename = "param", default)] pub params: Vec<XmlParamData>, } impl Into<Result<Vec<Value>>> for XmlParams { fn into(self) -> Result<Vec<Value>> { self.params .into_iter() .map(Into::<Result<Value>>::into) .collect() } } #[derive(Debug, PartialEq, Deserialize)] struct XmlParamData { pub value: XmlValue, } impl Into<Result<Value>> for XmlParamData { fn into(self) -> Result<Value> { self.value.into() } } #[derive(Debug, PartialEq, Deserialize)] struct XmlArray { #[serde(rename = "data")] pub data: XmlArrayData, } impl Into<Result<Vec<Value>>> for XmlArray { fn into(self) -> Result<Vec<Value>> { self.data.into() } } #[derive(Debug, PartialEq, Deserialize)] struct XmlArrayData { #[serde(default)] pub value: Vec<XmlValue>, } impl Into<Result<Vec<Value>>> for XmlArrayData { fn into(self) -> Result<Vec<Value>> { self.value .into_iter() .map(Into::<Result<Value>>::into) .collect() } } #[derive(Debug, PartialEq, Deserialize)] struct XmlStruct { #[serde(rename = "member", default)] pub members: Vec<XmlStructItem>, } impl Into<Result<HashMap<String, Value>>> for XmlStruct { fn into(self) -> Result<HashMap<String, Value>> { self.members .into_iter() .map(Into::<Result<(String, Value)>>::into) .collect() } } #[derive(Debug, PartialEq, Deserialize)] struct XmlStructItem { pub name: String, pub value: XmlValue, } impl Into<Result<(String, Value)>> for XmlStructItem { fn into(self) -> Result<(String, Value)> { let value: Result<Value> = self.value.into(); Ok((self.name, value?)) } }