Visit my website: coderelax.com for more details including a list of projects I've worked on.
Email me and let's talk!
Email: filipe@coderelax.com
[ my public key: https://keybase.io/filipeamoreira; my proof: https://keybase.io/filipeamoreira/sigs/pk4jriV2yxV_VD8V0WSYCyhopTO2rmn4IoHZ81ou9-U ]
While doing my research I've discovered the new (to me) field of rules based systems and have spent some time reading about it and it seems exactly the kind of functionality I need.
The app will be integrated with different web services and would allow rules like these one:
When Highrise contact is added and Zendesk ticket is created do add email to database
I had two ideas to build this. The first is to build some kind os DSL to be able to specify the rule conditions and build them on the fly with the user input.
The second one is to build some rule classes each one having a pattern/matcher and action methods. The pattern would evaluate the expression and return true or false and the action would be executed if the match is positive.
The rules will then need to be persisted and then evaluated periodically.
Can anyone shed some light on this design or point somewhere where I can get more information on this?
Thanks