Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
simple_controller
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open-source
simple_controller
Commits
ac27dcaa
Commit
ac27dcaa
authored
Jan 15, 2024
by
dongxiaowei
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'authorize' into 'master'
Authorize See merge request
!1
parents
38e610ba
d9f916c4
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
2 deletions
+29
-2
base_controller.rb
lib/simple_controller/base_controller.rb
+29
-2
No files found.
lib/simple_controller/base_controller.rb
View file @
ac27dcaa
...
...
@@ -141,6 +141,7 @@ class SimpleController::BaseController < ::InheritedResources::Base
@paginate_off
=
options
.
delete
(
:paginate_off
)
@distinct_off
=
options
.
delete
(
:distinct_off
)
@policy_class
=
options
.
delete
(
:policy_class
)
||
name
.
sub
(
/Controller$/
,
'Policy'
).
safe_constantize
@database_policy
=
name
.
sub
(
/Controller$/
,
'DatabasePolicy'
)
_importable_class
=
options
.
delete
(
:importable_class
)
_exportable_class
=
options
.
delete
(
:exportable_class
)
...
...
@@ -207,6 +208,7 @@ class SimpleController::BaseController < ::InheritedResources::Base
context:
params
,
parents:
parent_objects
,
}
authorize_if_database_policy
policy_info
,
"
#{
action_name
}
?"
authorize_if_policy_class
policy_info
,
"
#{
action_name
}
?"
instance_variable_set
(
"@
#{
resource_instance_name
}
"
,
resource
)
@ta_record
=
resource
...
...
@@ -222,6 +224,7 @@ class SimpleController::BaseController < ::InheritedResources::Base
context:
params
,
parents:
parent_objects
,
}
authorize_if_database_policy
policy_info
,
"
#{
action_name
}
?"
authorize_if_policy_class
policy_info
,
"
#{
action_name
}
?"
instance_variable_set
(
"@
#{
resource_collection_name
}
"
,
collection
)
@ta_records
=
collection
...
...
@@ -279,6 +282,21 @@ class SimpleController::BaseController < ::InheritedResources::Base
alias
origin_end_of_association_chain
end_of_association_chain
def
database_policy_association_chain
policy_class
||=
self
.
class
.
instance_variable_get
(
:@database_policy
)
if
policy_class
.
present?
&&
(
scope_policy_class
=
"
#{
policy_class
}
::Scope"
.
safe_constantize
)
&&
origin_end_of_association_chain
.
is_a?
(
ActiveRecord
::
Relation
)
parent_objects
=
symbols_for_association_chain
.
each_with_object
({})
do
|
sym
,
h
|
h
[
sym
.
to_sym
]
=
instance_variable_get
(
"@
#{
sym
}
"
)
end
scope_policy_class
.
new
(
current_user
,
policy_association_chain
,
**
parent_objects
).
resolve
else
origin_end_of_association_chain
.
respond_to?
(
:all
)
?
origin_end_of_association_chain
.
all
:
origin_end_of_association_chain
end
end
def
policy_association_chain
policy_class
||=
self
.
class
.
instance_variable_get
(
:@policy_class
)
if
policy_class
.
present?
&&
...
...
@@ -297,9 +315,10 @@ class SimpleController::BaseController < ::InheritedResources::Base
# ransack q, 这里主要是为了统计
def
query_association_chain
if
self
.
class
.
instance_variable_get
(
:@ransack_off
)
||
params
[
:q
].
blank?
policy_association_chain
database_policy_association_chain
# policy_association_chain
else
ransack_association
(
policy_association_chain
,
params
[
:q
])
ransack_association
(
database_
policy_association_chain
,
params
[
:q
])
end
end
...
...
@@ -372,6 +391,14 @@ class SimpleController::BaseController < ::InheritedResources::Base
private
def
authorize_if_database_policy
(
record
,
query
)
policy_name
=
self
.
class
.
instance_variable_get
(
:@database_policy
)
database_policy
=
policy_name
&
.
safe_constantize
database_policy
&
.
method_defined?
(
query
)
?
authorize
(
record
,
query
,
policy_class:
database_policy
)
:
record
end
def
authorize_if_policy_class
(
record
,
query
,
policy_class:
nil
)
policy_class
||=
self
.
class
.
instance_variable_get
(
:@policy_class
)
policy_class
&
.
method_defined?
(
query
)
?
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment