Sha256: bc3f48379964afbbc4e59f19a0f97f529728501e34d6efe2b4a82b486708edca
Contents?: true
Size: 1.96 KB
Versions: 1
Compression:
Stored size: 1.96 KB
Contents
module IAmICan module Role module Assignment def becomes_a *roles, which_can: [ ], obj: nil, _d: i_am_i_can.auto_definition, auto_definition: _d || which_can.present?, expires_in: nil, expires_at: (expires_in.after if expires_in), save: true self.class.have_roles *roles, which_can: which_can, obj: obj if auto_definition run_callbacks(:role_assign) do _roles_assignment(roles, save, exp: expires_at) end end def is_a_temporary *roles, **options becomes_a *roles, save: false, **options end def falls_from *roles, saved: true run_callbacks(:cancel_role_assign) do _roles_assignment(:cancel, roles, saved) end end def is_not_a_temporary *roles falls_from *roles, saved: false end def is_only_a *roles run_callbacks(:role_update) do _roles_assignment(:replace, roles, true) end end %i[ is is_a is_a_role is_roles has_role has_roles role_is role_are ].each { |aname| alias_method aname, :becomes_a } %i[ is_not_a will_not_be removes_role leaves has_not_role has_not_roles ].each { |aname| alias_method aname, :falls_from } %i[ currently_is_a ].each { |aname| alias_method aname, :is_only_a } def _roles_assignment(action = :assign, roles, save, exp: nil) instances, names = Role.extract(roles.flatten, i_am_i_can) if save assignment = _stored_roles_exec(action, instances, name: names) _set_roles_expire(exp, assignment.map(&:id)) if exp else assignment = _temporary_roles_exec(action, instances, name: names) end ResultOf.role assignment, i_am_i_can, given: [instances, names] end def _set_roles_expire(exp, ids) send("assoc_with_#{__roles}") .where("#{i_am_i_can.role_class.underscore}_id" => ids) .update_all(expire_at: exp) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
i_am_i_can-4.3.3 | lib/i_am_i_can/role/assignment.rb |