-
- Downloads
Merge branch 'refactor/add-policies' into 'master'
Refactor ability.rb into Policies ## What does this MR do? Factors out `ability.rb` into a new abstraction - the "policy" (stored in `app/policies`). A policy is a class named `#{class_name}Policy` (looked up automatically as needed) that implements `rules` as follows: ``` ruby class ThingPolicy < BasePolicy def rules @user # this is a user to determine abilities for, optionally nil in the anonymous case @subject # this is the subject of the ability, guaranteed to be an instance of `Thing` can! :some_ability # grant the :some_ability permission cannot! :some_ability # ensure that :some_ability is not allowed. this overrides any `can!` that is called before or after delegate! @subject.other_thing # merge the abilities (can!) and prohibitions (cannot!) from `@subject.other_thing` can? :some_ability # test whether, so far, :some_ability is allowed end def anonymous_rules # optional. if not implemented `rules` is called where `@user` is nil. otherwise this method is called when `@user` is nil. end end ``` See merge request !5796
No related branches found
No related tags found
Showing
- Gemfile 0 additions, 3 deletionsGemfile
- Gemfile.lock 0 additions, 2 deletionsGemfile.lock
- app/controllers/application_controller.rb 2 additions, 6 deletionsapp/controllers/application_controller.rb
- app/controllers/namespaces_controller.rb 1 addition, 1 deletionapp/controllers/namespaces_controller.rb
- app/finders/issuable_finder.rb 1 addition, 1 deletionapp/finders/issuable_finder.rb
- app/finders/todos_finder.rb 1 addition, 1 deletionapp/finders/todos_finder.rb
- app/mailers/base_mailer.rb 1 addition, 1 deletionapp/mailers/base_mailer.rb
- app/models/ability.rb 11 additions, 576 deletionsapp/models/ability.rb
- app/models/event.rb 1 addition, 1 deletionapp/models/event.rb
- app/models/merge_request.rb 1 addition, 1 deletionapp/models/merge_request.rb
- app/models/user.rb 1 addition, 5 deletionsapp/models/user.rb
- app/policies/base_policy.rb 116 additions, 0 deletionsapp/policies/base_policy.rb
- app/policies/ci/build_policy.rb 13 additions, 0 deletionsapp/policies/ci/build_policy.rb
- app/policies/ci/runner_policy.rb 13 additions, 0 deletionsapp/policies/ci/runner_policy.rb
- app/policies/commit_status_policy.rb 5 additions, 0 deletionsapp/policies/commit_status_policy.rb
- app/policies/deployment_policy.rb 5 additions, 0 deletionsapp/policies/deployment_policy.rb
- app/policies/environment_policy.rb 5 additions, 0 deletionsapp/policies/environment_policy.rb
- app/policies/external_issue_policy.rb 5 additions, 0 deletionsapp/policies/external_issue_policy.rb
- app/policies/global_policy.rb 8 additions, 0 deletionsapp/policies/global_policy.rb
- app/policies/group_member_policy.rb 19 additions, 0 deletionsapp/policies/group_member_policy.rb
Loading
Please register or sign in to comment