CanCanCan で能力を定義しようとしています。
開始するための構文がわかりません。
私は役割に Role Model を使用しており、役割は Profile.rb で定義されています。Profile.rb は User.rb に属します。
ユーザーが学生の役割を持っているかどうかを確認しようとしています。
私がしようとすると:
if {user_signed_in?, user.profile.has_role? :student}
次のような構文エラーが表示されます。
syntax error, unexpected ',', expecting =>
if {user_signed_in?, user.profile.has_role? :student}
私がしようとすると:
if {user_signed_in? && user.profile.has_role? :student}
次のような構文エラーが表示されます。
syntax error, unexpected tSYMBEG, expecting =>
if {user_signed_in? && user.profile.has_role? :student}
また、中括弧を通常の括弧に置き換えて、それらを完全に削除しようとしました。
デバイス部分 (user_signed_in) を削除して、以下のコメントの提案を使用しようとすると、次のようにします。
if user.profile.has_role?(:student)
そして、私はこのエラーを受け取ります:
undefined method `has_role?' for nil:NilClass
私がしようとすると:
if user.profile.has_role? :student
次のエラーが表示されます。
undefined method `has_role?' for nil:NilClass
私がしようとすると:
if user.profile.has_role?(student)
次のエラーが表示されます。
undefined local variable or method `student' for #<Ability:0x007fd034a78968>
profile.rb で次の役割が定義されています。
roles :admin, :manager, #
:student, :educator, :researcher, :ktp, :faculty_manager, :ip_asset_manager, # for universities
:sponsor, # for industry
:project_manager, :representative, # for both uni and industry
:grantor, :investor, :adviser, :innovation_consultant, :panel_member, # external
:participant, :guest # public
私がしようとすると:
can :crud, Profile, :user_id => user.id if user.profile.has_role? :student
エラーは発生しませんが、このアプローチの問題は、学生が多くのことを実行できることです (10 行のアクセス許可があるため、10 個の「can」ステートメントのそれぞれに個別に if ステートメントを追加する必要があります。次の 'elsif' ステートメントの前に、if ステートメントをすべての行に適用できる方法がない限り。
私のアビリティ.rbの最初の部分を以下に貼り付けます(ロールもアビリティも多いので、全部は貼り付けていません)。
class Ability
include CanCan::Ability
def initialize(user)
alias_action :create, :read, :update, :destroy, :to => :crud
# Define abilities for the passed in user here. For example:
#
user ||= User.new # guest user (not logged in)
#users who are not signed in can create registration or login
# can read publicly available projects, programs and proposals
can :read, Project, {:active => true, :closed => false, :sweep => { :disclosure => { :allusers => true } } }
# {:active => true, :closed => false && :Project.sweep.disclosure.allusers => true}
# if user role is student
can :crud, Profile, :user_id => user.id if user.profile.has_role? :student #[for themselves]
can :read, ProjectInvitation, {:student_id => @current_user && :expiry_date_for_students_to_claim_project > Time.now}
# can read project invitations addressed to them
# can read projects to which they are invited whilst the invite is available to accept;
can :read, Project, {} #if invited to the project?
# and they can create responses to invitations to those projects
can :update, ProjectInvitation.student_accepted
# they can create questions on those projects before the invite expiry date;
can :read, ProjectQuestion, {} #if intvited
can [:create, :update, :destroy], ProjectQuestion #if they created the question
can :read, ProjectAnswer #if its on a project they can see
# they can update term sheets and template agreements for those projects
can [:read, :update], TermSheet #{where created for project in which they are participating}
can [:read, :update], ProjectAgreement #{where created for a project in which they are participating}
can [:read, :update], FinanceAgreement #{where created for a project in which they are participating}
can [:read, :update], Nda #{where created for a project in which they are participating}
can [:create, :update], Feedback #{where created for a project in which they are participating and the feedback is on other project team members and the project is completed}
elsif user.profile.has_role? :educator
私が試したとき(以下の提案):
if user.try(:profile).present? && user.profile.has_role? :student
次のエラーが表示されます。
syntax error, unexpected tSYMBEG, expecting keyword_then or ';' or '\n'
...nt? && user.profile.has_role? :student
誰かが私が間違っていることを見ることができますか?