Git Product home page Git Product logo

Comments (6)

zamith avatar zamith commented on August 21, 2024

I'm also having this problem when integrating Merit with Forem and other engines. Namespacing awareness would be great.

from merit.

tute avatar tute commented on August 21, 2024

Thanks for your feedback. Certainly this is a bug, as rules are in these cases ambiguous.

You are right @emq: the only problem in adding the namespace with controller_path I can see is in https://github.com/tute/merit/blob/master/app/models/merit/action.rb#L41-L42, which may end up calling something like 'admin/users'.singularize.camelize.constantize.find_by_id(target_id) which would raise a NameError.

The two options that I can now think of are:

  • Strip out the namespacing, to call just 'users'.singularize.camelize.constantize.find_by_id(target_id)
  • If we require the :model_name option in rules with namespaced controllers, it won't break. That functionality gets called only from https://github.com/tute/merit/blob/master/lib/merit/judge.rb#L36, and the option would override the namespaced controller.

A mix of the two seems like the best options: try the namespaced model, catch a possible NameError to try the Rule#model_name option, and display a helpful error message if inexistent or also raises NameError.

Thanks again for your feedback!

from merit.

zamith avatar zamith commented on August 21, 2024

Thanks for being on top of things.

The case you mention only raises the NameError if the class does not exist, if there was an Admin::User constant, it would work just fine.

I've manage to get it working by changing controller_name to controller_path in the target_model of the action and on the rules_defined? method.

Then I define the rule as grant_on 'forem/posts#create', :badge => 'commenter', :level => 10, model_name: 'Forem::Post' do |post|, it may work even without the model_name, not sure.

This has worked for me at least with the badges, but I believe it should work with points and rank as well.

from merit.

tute avatar tute commented on August 21, 2024

When the class exists yes, it would work even without the model_name option @zamith. When I make the time to write the tests I will merge your tweak and my fallback with nice error message, and release a new version.

from merit.

zamith avatar zamith commented on August 21, 2024

Great! I'll use my patched version until then, but will be on the lookout for the new version.

from merit.

tute avatar tute commented on August 21, 2024

Version 1.2.1 just released with a small API change (see https://github.com/tute/merit/blob/master/UPGRADING.md).
Thanks for the feedback!

from merit.

Related Issues (20)

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.