push: Collect a bigger subset of JSON values in FlattenedJson

This commit is contained in:
Kévin Commaille 2023-04-07 11:31:11 +02:00 committed by Kévin Commaille
parent cdfcdecaf8
commit 33fa1b48ed
5 changed files with 292 additions and 28 deletions

View File

@ -9,6 +9,7 @@ Breaking changes:
- Make `in_reply_to` field of `Thread` optional - Make `in_reply_to` field of `Thread` optional
- It was wrong to be mandatory, spec was unclear (clarified [here](https://github.com/matrix-org/matrix-spec/pull/1439)) - It was wrong to be mandatory, spec was unclear (clarified [here](https://github.com/matrix-org/matrix-spec/pull/1439))
- `FlattenedJson::get` returns a `FlattenedJsonValue` instead of a string
Improvements: Improvements:

View File

@ -38,8 +38,8 @@ pub use self::condition::RoomVersionFeature;
pub use self::{ pub use self::{
action::{Action, Tweak}, action::{Action, Tweak},
condition::{ condition::{
ComparisonOperator, FlattenedJson, PushCondition, PushConditionRoomCtx, RoomMemberCountIs, ComparisonOperator, FlattenedJson, FlattenedJsonValue, PushCondition, PushConditionRoomCtx,
_CustomPushCondition, RoomMemberCountIs, _CustomPushCondition,
}, },
iter::{AnyPushRule, AnyPushRuleRef, RulesetIntoIter, RulesetIter}, iter::{AnyPushRule, AnyPushRuleRef, RulesetIntoIter, RulesetIter},
predefined::{ predefined::{
@ -291,7 +291,7 @@ impl Ruleset {
) -> Option<AnyPushRuleRef<'_>> { ) -> Option<AnyPushRuleRef<'_>> {
let event = FlattenedJson::from_raw(event); let event = FlattenedJson::from_raw(event);
if event.get("sender").map_or(false, |sender| sender == context.user_id) { if event.get_str("sender").map_or(false, |sender| sender == context.user_id) {
// no need to look at the rules if the event was by the user themselves // no need to look at the rules if the event was by the user themselves
None None
} else { } else {
@ -601,7 +601,7 @@ impl PatternedPushRule {
event: &FlattenedJson, event: &FlattenedJson,
context: &PushConditionRoomCtx, context: &PushConditionRoomCtx,
) -> bool { ) -> bool {
if event.get("sender").map_or(false, |sender| sender == context.user_id) { if event.get_str("sender").map_or(false, |sender| sender == context.user_id) {
return false; return false;
} }

View File

@ -17,7 +17,7 @@ mod push_condition_serde;
mod room_member_count_is; mod room_member_count_is;
pub use self::{ pub use self::{
flattened_json::FlattenedJson, flattened_json::{FlattenedJson, FlattenedJsonValue, ScalarJsonValue},
room_member_count_is::{ComparisonOperator, RoomMemberCountIs}, room_member_count_is::{ComparisonOperator, RoomMemberCountIs},
}; };
@ -118,7 +118,7 @@ pub(super) fn check_event_match(
) -> bool { ) -> bool {
let value = match key { let value = match key {
"room_id" => context.room_id.as_str(), "room_id" => context.room_id.as_str(),
_ => match event.get(key) { _ => match event.get_str(key) {
Some(v) => v, Some(v) => v,
None => return false, None => return false,
}, },
@ -135,14 +135,14 @@ impl PushCondition {
/// * `event` - The flattened JSON representation of a room message event. /// * `event` - The flattened JSON representation of a room message event.
/// * `context` - The context of the room at the time of the event. /// * `context` - The context of the room at the time of the event.
pub fn applies(&self, event: &FlattenedJson, context: &PushConditionRoomCtx) -> bool { pub fn applies(&self, event: &FlattenedJson, context: &PushConditionRoomCtx) -> bool {
if event.get("sender").map_or(false, |sender| sender == context.user_id) { if event.get_str("sender").map_or(false, |sender| sender == context.user_id) {
return false; return false;
} }
match self { match self {
Self::EventMatch { key, pattern } => check_event_match(event, key, pattern, context), Self::EventMatch { key, pattern } => check_event_match(event, key, pattern, context),
Self::ContainsDisplayName => { Self::ContainsDisplayName => {
let value = match event.get("content.body") { let value = match event.get_str("content.body") {
Some(v) => v, Some(v) => v,
None => return false, None => return false,
}; };
@ -151,7 +151,7 @@ impl PushCondition {
} }
Self::RoomMemberCount { is } => is.contains(&context.member_count), Self::RoomMemberCount { is } => is.contains(&context.member_count),
Self::SenderNotificationPermission { key } => { Self::SenderNotificationPermission { key } => {
let sender_id = match event.get("sender") { let sender_id = match event.get_str("sender") {
Some(v) => match <&UserId>::try_from(v) { Some(v) => match <&UserId>::try_from(v) {
Ok(u) => u, Ok(u) => u,
Err(_) => return false, Err(_) => return false,

View File

@ -1,5 +1,8 @@
use js_int::Int;
use serde::{Deserialize, Deserializer, Serialize, Serializer};
use serde_json::{to_value as to_json_value, value::Value as JsonValue}; use serde_json::{to_value as to_json_value, value::Value as JsonValue};
use std::collections::BTreeMap; use std::collections::BTreeMap;
use thiserror::Error;
use tracing::{instrument, warn}; use tracing::{instrument, warn};
use crate::serde::Raw; use crate::serde::Raw;
@ -8,7 +11,7 @@ use crate::serde::Raw;
#[derive(Clone, Debug)] #[derive(Clone, Debug)]
pub struct FlattenedJson { pub struct FlattenedJson {
/// The internal map containing the flattened JSON as a pair path, value. /// The internal map containing the flattened JSON as a pair path, value.
map: BTreeMap<String, String>, map: BTreeMap<String, FlattenedJsonValue>,
} }
impl FlattenedJson { impl FlattenedJson {
@ -30,18 +33,24 @@ impl FlattenedJson {
self.flatten_value(value, path); self.flatten_value(value, path);
} }
} }
JsonValue::String(s) => { value => {
if self.map.insert(path.clone(), s).is_some() { if let Some(v) = FlattenedJsonValue::from_json_value(value) {
if self.map.insert(path.clone(), v).is_some() {
warn!("Duplicate path in flattened JSON: {path}"); warn!("Duplicate path in flattened JSON: {path}");
} }
} }
JsonValue::Number(_) | JsonValue::Bool(_) | JsonValue::Array(_) | JsonValue::Null => {} }
} }
} }
/// Value associated with the given `path`. /// Get the value associated with the given `path`.
pub fn get(&self, path: &str) -> Option<&str> { pub fn get(&self, path: &str) -> Option<&FlattenedJsonValue> {
self.map.get(path).map(|s| s.as_str()) self.map.get(path)
}
/// Get the value associated with the given `path`, if it is a string.
pub fn get_str(&self, path: &str) -> Option<&str> {
self.map.get(path).and_then(|v| v.as_str())
} }
} }
@ -52,12 +61,257 @@ fn escape_key(key: &str) -> String {
key.replace('\\', r"\\").replace('.', r"\.") key.replace('\\', r"\\").replace('.', r"\.")
} }
/// The set of possible errors when converting to a JSON subset.
#[derive(Debug, Error)]
#[allow(clippy::exhaustive_enums)]
enum IntoJsonSubsetError {
/// The numeric value failed conversion to js_int::Int.
#[error("number found is not a valid `js_int::Int`")]
IntConvert,
/// The JSON type is not accepted in this subset.
#[error("JSON type is not accepted in this subset")]
NotInSubset,
}
/// Scalar (non-compound) JSON values.
#[derive(Debug, Clone, Default, Eq, PartialEq)]
#[allow(clippy::exhaustive_enums)]
pub enum ScalarJsonValue {
/// Represents a `null` value.
#[default]
Null,
/// Represents a boolean.
Bool(bool),
/// Represents an integer.
Integer(Int),
/// Represents a string.
String(String),
}
impl ScalarJsonValue {
fn try_from_json_value(val: JsonValue) -> Result<Self, IntoJsonSubsetError> {
Ok(match val {
JsonValue::Bool(b) => Self::Bool(b),
JsonValue::Number(num) => Self::Integer(
Int::try_from(num.as_i64().ok_or(IntoJsonSubsetError::IntConvert)?)
.map_err(|_| IntoJsonSubsetError::IntConvert)?,
),
JsonValue::String(string) => Self::String(string),
JsonValue::Null => Self::Null,
_ => Err(IntoJsonSubsetError::NotInSubset)?,
})
}
/// If the `ScalarJsonValue` is a `Bool`, return the inner value.
pub fn as_bool(&self) -> Option<bool> {
match self {
Self::Bool(b) => Some(*b),
_ => None,
}
}
/// If the `ScalarJsonValue` is an `Integer`, return the inner value.
pub fn as_integer(&self) -> Option<Int> {
match self {
Self::Integer(i) => Some(*i),
_ => None,
}
}
/// If the `ScalarJsonValue` is a `String`, return a reference to the inner value.
pub fn as_str(&self) -> Option<&str> {
match self {
Self::String(s) => Some(s),
_ => None,
}
}
}
impl Serialize for ScalarJsonValue {
#[inline]
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
match self {
Self::Null => serializer.serialize_unit(),
Self::Bool(b) => serializer.serialize_bool(*b),
Self::Integer(n) => n.serialize(serializer),
Self::String(s) => serializer.serialize_str(s),
}
}
}
impl<'de> Deserialize<'de> for ScalarJsonValue {
#[inline]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: Deserializer<'de>,
{
let val = JsonValue::deserialize(deserializer)?;
ScalarJsonValue::try_from_json_value(val).map_err(serde::de::Error::custom)
}
}
impl From<bool> for ScalarJsonValue {
fn from(value: bool) -> Self {
Self::Bool(value)
}
}
impl From<Int> for ScalarJsonValue {
fn from(value: Int) -> Self {
Self::Integer(value)
}
}
impl From<String> for ScalarJsonValue {
fn from(value: String) -> Self {
Self::String(value)
}
}
impl From<&str> for ScalarJsonValue {
fn from(value: &str) -> Self {
value.to_owned().into()
}
}
impl PartialEq<FlattenedJsonValue> for ScalarJsonValue {
fn eq(&self, other: &FlattenedJsonValue) -> bool {
match self {
Self::Null => *other == FlattenedJsonValue::Null,
Self::Bool(b) => other.as_bool() == Some(*b),
Self::Integer(i) => other.as_integer() == Some(*i),
Self::String(s) => other.as_str() == Some(s),
}
}
}
/// Possible JSON values after an object is flattened.
#[derive(Debug, Clone, Default, Eq, PartialEq)]
#[allow(clippy::exhaustive_enums)]
pub enum FlattenedJsonValue {
/// Represents a `null` value.
#[default]
Null,
/// Represents a boolean.
Bool(bool),
/// Represents an integer.
Integer(Int),
/// Represents a string.
String(String),
/// Represents an array.
Array(Vec<ScalarJsonValue>),
}
impl FlattenedJsonValue {
fn from_json_value(val: JsonValue) -> Option<Self> {
Some(match val {
JsonValue::Bool(b) => Self::Bool(b),
JsonValue::Number(num) => Self::Integer(Int::try_from(num.as_i64()?).ok()?),
JsonValue::String(string) => Self::String(string),
JsonValue::Null => Self::Null,
JsonValue::Array(vec) => Self::Array(
// Drop values we don't need instead of throwing an error.
vec.into_iter()
.filter_map(|v| ScalarJsonValue::try_from_json_value(v).ok())
.collect::<Vec<_>>(),
),
_ => None?,
})
}
/// If the `FlattenedJsonValue` is a `Bool`, return the inner value.
pub fn as_bool(&self) -> Option<bool> {
match self {
Self::Bool(b) => Some(*b),
_ => None,
}
}
/// If the `FlattenedJsonValue` is an `Integer`, return the inner value.
pub fn as_integer(&self) -> Option<Int> {
match self {
Self::Integer(i) => Some(*i),
_ => None,
}
}
/// If the `FlattenedJsonValue` is a `String`, return a reference to the inner value.
pub fn as_str(&self) -> Option<&str> {
match self {
Self::String(s) => Some(s),
_ => None,
}
}
/// If the `FlattenedJsonValue` is an `Array`, return a reference to the inner value.
pub fn as_array(&self) -> Option<&[ScalarJsonValue]> {
match self {
Self::Array(a) => Some(a),
_ => None,
}
}
}
impl From<bool> for FlattenedJsonValue {
fn from(value: bool) -> Self {
Self::Bool(value)
}
}
impl From<Int> for FlattenedJsonValue {
fn from(value: Int) -> Self {
Self::Integer(value)
}
}
impl From<String> for FlattenedJsonValue {
fn from(value: String) -> Self {
Self::String(value)
}
}
impl From<&str> for FlattenedJsonValue {
fn from(value: &str) -> Self {
value.to_owned().into()
}
}
impl From<Vec<ScalarJsonValue>> for FlattenedJsonValue {
fn from(value: Vec<ScalarJsonValue>) -> Self {
Self::Array(value)
}
}
impl PartialEq<ScalarJsonValue> for FlattenedJsonValue {
fn eq(&self, other: &ScalarJsonValue) -> bool {
match self {
Self::Null => *other == ScalarJsonValue::Null,
Self::Bool(b) => other.as_bool() == Some(*b),
Self::Integer(i) => other.as_integer() == Some(*i),
Self::String(s) => other.as_str() == Some(s),
Self::Array(_) => false,
}
}
}
#[cfg(test)] #[cfg(test)]
mod tests { mod tests {
use js_int::int;
use maplit::btreemap; use maplit::btreemap;
use serde_json::Value as JsonValue; use serde_json::Value as JsonValue;
use super::FlattenedJson; use super::{FlattenedJson, FlattenedJsonValue};
use crate::serde::Raw; use crate::serde::Raw;
#[test] #[test]
@ -74,7 +328,16 @@ mod tests {
.unwrap(); .unwrap();
let flattened = FlattenedJson::from_raw(&raw); let flattened = FlattenedJson::from_raw(&raw);
assert_eq!(flattened.map, btreemap! { "string".into() => "Hello World".into() }); assert_eq!(
flattened.map,
btreemap! {
"string".into() => "Hello World".into(),
"number".into() => int!(10).into(),
"array".into() => vec![int!(1).into(), int!(2).into()].into(),
"boolean".into() => true.into(),
"null".into() => FlattenedJsonValue::Null,
}
);
} }
#[test] #[test]
@ -84,11 +347,11 @@ mod tests {
"desc": "Level 0", "desc": "Level 0",
"desc.bis": "Level 0 bis", "desc.bis": "Level 0 bis",
"up": { "up": {
"desc": "Level 1", "desc": 1,
"desc.bis": "Level 1 bis", "desc.bis": null,
"up": { "up": {
"desc": "Level 2", "desc": ["Level 2a", "Level 2b"],
"desc\\bis": "Level 2 bis" "desc\\bis": true
} }
} }
}"#, }"#,
@ -101,10 +364,10 @@ mod tests {
btreemap! { btreemap! {
"desc".into() => "Level 0".into(), "desc".into() => "Level 0".into(),
r"desc\.bis".into() => "Level 0 bis".into(), r"desc\.bis".into() => "Level 0 bis".into(),
"up.desc".into() => "Level 1".into(), "up.desc".into() => int!(1).into(),
r"up.desc\.bis".into() => "Level 1 bis".into(), r"up.desc\.bis".into() => FlattenedJsonValue::Null,
"up.up.desc".into() => "Level 2".into(), "up.up.desc".into() => vec!["Level 2a".into(), "Level 2b".into()].into(),
r"up.up.desc\\bis".into() => "Level 2 bis".into(), r"up.up.desc\\bis".into() => true.into(),
}, },
); );
} }

View File

@ -191,7 +191,7 @@ impl<'a> AnyPushRuleRef<'a> {
/// * `event` - The flattened JSON representation of a room message event. /// * `event` - The flattened JSON representation of a room message event.
/// * `context` - The context of the room at the time of the event. /// * `context` - The context of the room at the time of the event.
pub fn applies(self, event: &FlattenedJson, context: &PushConditionRoomCtx) -> bool { pub fn applies(self, event: &FlattenedJson, context: &PushConditionRoomCtx) -> bool {
if event.get("sender").map_or(false, |sender| sender == context.user_id) { if event.get_str("sender").map_or(false, |sender| sender == context.user_id) {
return false; return false;
} }