GithubHelp home page GithubHelp logo

bhgames / json-logic-ruby Goto Github PK

View Code? Open in Web Editor NEW
68.0 68.0 31.0 57 KB

Build complex rules, serialize them as JSON, and execute them in ruby

License: MIT License

Ruby 99.04% Shell 0.96%
json ruby

json-logic-ruby's People

Contributors

aschuster3 avatar barthez avatar bhgames avatar chrisliu-pw avatar elliottayoung avatar eropple avatar iamjwc avatar jcotton1123 avatar lewisf avatar mgleon08 avatar mjuszczak avatar ronin avatar sw030453 avatar tooooooooomy avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

json-logic-ruby's Issues

Symbol handling seems spotty

Seems like symbolized keys in both data and filters give JSONLogic some grief.

[1] pry(main)> require 'json_logic'
=> true
[2] pry(main)> require 'active_support/core_ext/hash'
=> true

[3] pry(main)> filter = { "in": [ { "var": "foo.bar" }, [5] ] }
=> {:in=>[{:var=>"foo.bar"}, [5]]}
[4] pry(main)> good = { foo: { bar: 5 } }
=> {:foo=>{:bar=>5}}
[5] pry(main)> bad = { foo: { bar: 10 } }
=> {:foo=>{:bar=>10}}

[6] pry(main)> JSONLogic.apply(filter, good)
NoMethodError: undefined method `var' for JSONLogic::Operation:Class
from /opt/rh/rh-ruby24/root/usr/local/share/gems/gems/json_logic-0.3/lib/json_logic/operation.rb:117:in `perform'

[9] pry(main)> JSONLogic.apply(filter.deep_stringify_keys, good.deep_stringify_keys)
=> true

Given the common use of symbols and the way a number of database libraries return JSON/JSONB data, it may be worth making it symbol/string agnostic.

Logic doesn't work like the JS Library

JSONLogic.apply({ "+" => [{"var": "age"}, 1] }, {"age": 75})

returns NoMethodError: undefined method `var' for JSONLogic::Operation:Class

On JSONLogic.com, is 76.

IN operator fails when nil is passed as the array to search in

I've noticed that the in operator is failing when receiving nil values as the array.

Context:

We have been using JSONLogic for a couple of years now to evaluate rules on serialized objects at runtime. Most of the time, we don't know the actual values of the variables used in the rules since they are built by serializing objects retrieved from our database.

Current behavior:

When the variable (array to search in) doesn't exist in the object, a nil value is passed as the array, so in that case the gem is failing due to a NoMethodError: undefined method include?' for nil:NilClass`.

Here you can see an example:

rule = {"in" => ["value_to_search", {"var" => "array"}]}
variable = {"array" => nil} (Consider that nil is the value after some processing at runtime)

JSONLogic.apply(rule, variable)

The output:

Screen Shot 2022-06-28 at 19 11 21

Functional differences between this and original JS port

I've noticed that the operations in this port work entirely different then they do in the original JS port.
Specifically here:

return LAMBDAS[operator.to_s].call(interpolated, data) if is_standard?(operator)

JSONLogic is defined to accept the elements in an array as the argument to an operation.
However, your operations accept an array and the original data object.

With all the testing I've done so far, it seems like everything officially supported in the JS port works the same in this Ruby port.
Ex)

rule = {+: [1, 2]}
data = {}
JSONLogic.apply(rule, data) # 3

The result of this will be 3 in both ports โœ…

However, if you were to define something like this in ruby:

rule = {+: [{var: 'data'}]}
data = {data: [1,2]}
JSONLogic.apply(rule, data) # 3

and in JS

rule = {"+": [{"var": "data"}]}
data = {"data": [1,2]}
jsonLogic.apply(rule, data) # 1

You end up with 3 in Ruby and 1 in JS. โŒ

Ultimately this leads to inconsistencies when trying to develop cross-platform.

`in` operator doesn't work correctly with `var`

I believe this is a bug, but please tell me if it's just my expectation that needs to be corrected:

irb(main):028:0> data = {"code": "45736123"}
=> {:code=>"45736123"}
irb(main):029:0> rule = {"in": ["123",{"var": "code"}]}
=> {:in=>["123", {:var=>"code"}]}
irb(main):030:0> JSONLogic.apply(rule,data)
=> false

Works fine when hardcoded:

irb(main):031:0> rule = {"in": ["123","45736123"]}
=> {:in=>["123", "45736123"]}
irb(main):032:0> JSONLogic.apply(rule,data)
=> true
irb(main):033:0> JSONLogic.apply(rule,nil)
=> true

Add size or length operator?

Hi, would you accept a PR to add a size or length operator? I would implement it as described here: jwadhams/json-logic#4. Though that issue provides a workaround it's a lot of code to do a very simple thing. Feel free to close this after replying.

"IN" Operator Fails When Accessed via "VAR" Operator

Problem Statement:

While trying to access a subset array from within a superset array using the "All" operator, I found that the "IN" operator does not function correctly when an array is accessed via the "VAR" operator.

Observed Behavior:
In the rule example below, the "IN" operator fails to correctly validate if all elements of the subset array are contained within the superset array:

Rule:

{ "all": [ {"var": "subset"}, {"in": [{"var": ""}, {"var": "superset"}]} ] }
Data

{ "subset": ["apple", "banana", "orange"], "superset": ["apple", "banana", "orange", "grape", "pear"] }

Expected Outcome:
The evaluation of this rule should yield True, as the subset array is fully included in the superset array.

Actual Outcome:
The rule incorrectly returns False.

Hint / Workaround:
When I specify the array directly within the rule instead of referencing it with the "VAR" operator, the "IN" operator behaves as expected:

Working Rule:
{ "all": [ {"var": "subset"}, {"in": [{"var": ""}, ["apple", "banana", "orange", "grape", "pear"]]} ] }

I suspect there might be a bug in the way the "IN" operator processes references to arrays. Your assistance in identifying and resolving the root cause of this behavior would be greatly appreciated.

Javascript only

This so-called 'gem' only works as advertised with Javascript.

Don't waste your time...

-- cc

Are you looking for maintainers?

I noticed that the repo is not being actively maintained for quite a long time. I would be pleased to dedicate same time to help in the maintenance of this gem if you agreed. Please let me know what do you think @bhgames.

Thank you!

Not an actual issue, just wanted to say thank you so much for creating this gem!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.