-
-
Notifications
You must be signed in to change notification settings - Fork 276
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: resource search #2656
fix: resource search #2656
Conversation
Code Climate has analyzed commit 494aa59 and detected 0 issues on this pull request. View more on Code Climate. |
@@ -136,7 +136,8 @@ def show_search_input | |||
def authorized_to_search? | |||
# Hide the search if the authorization prevents it | |||
return true unless resource.authorization.respond_to?(:has_action_method?) | |||
return false unless resource.authorization.has_action_method?("search") | |||
return true unless resource.authorization.has_action_method?("search") | |||
return false unless resource.authorization.has_action_method?("avo_search?") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
has_action_method?(argument)
will pick the argument
and use it as key to access the Avo.configuration.authorization_methods
hash that looks like:
@authorization_methods = {
index: "index?",
show: "show?",
edit: "edit?",
new: "new?",
update: "update?",
create: "create?",
destroy: "destroy?"
}
avo_search?
is something specific that the user can set like:
Avo.configure do |config|
# ...
## == Authorization ==
config.authorization_methods = {
# ...
search: "avo_search?" # override this method
}
# ...
end
It can be even can_search_or_not?
if the user configure it with:
Avo.configure do |config|
# ...
## == Authorization ==
config.authorization_methods = {
# ...
search: "can_search_or_not?" # override this method
}
# ...
end
We should always access the search
key to verify if the method exists.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hello @gabrielgiroe1 I let a comment about readability, otherwise the logic seems correct.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@gabrielgiroe1 just noticed that we can simplify the method.
Lets try this approach, I think this will have the desired output:
def authorized_to_search?
resource.authorization.authorize_action("search", raise_exception: false)
end
Can you please check this scenarios?
- On
avo
, without avo-pro installed resource search should be working. - On
avo-pro
withconfig.authorization_client = nil
should be working. - On
avo-pro
withpundit
as client but without policy configured for the resource should be working. - On
avo-pro
withpundit
as client and without the search method defined should search should not work. - On
avo-pro
withpundit
as client and with thesearch
method defined returning false should search should not work. - On
avo-pro
withpundit
as client and with thesearch
method defined returning true search should work.
Yes, you are right. I tested it with these changes and it work as expected. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @gabrielgiroe1 it's looking great!
This PR has been merged into Please check the release guide for more information. |
Description
Implement resource search functionality in cases where there are no existing policies defined for the resource.
Fixes https://discord.com/channels/740892036978442260/1223913103998193664
Checklist: