Module: PaidUp::Ability

Includes:
CanCan::Ability
Included in:
Ability
Defined in:
app/models/paid_up/ability.rb

Instance Method Summary collapse

Instance Method Details

#initialize_paid_up(user) ⇒ Object



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'app/models/paid_up/ability.rb', line 5

def initialize_paid_up(user)
  features = PaidUp::Feature.all
  for feature in features
    case feature.setting_type
      when 'table_rows'
        can [:index, :read], feature.feature_model
        if user.table_rows_allowed(feature.slug) > 0 || user.table_rows_unlimited?(feature.slug)
          can :manage, feature.feature_model, :user => user
          can :own, feature.feature_model
          unless user.table_rows_remaining(feature.slug) > 0
            cannot :create, feature.feature_model
          end
        else
          cannot :delete, feature.feature_model
          cannot :update, feature.feature_model
          cannot :own, feature.feature_model
          cannot :create, feature.feature_model
        end
      when 'rolify_rows'
        can [:index, :read], feature.feature_model
        if user.rolify_rows_allowed(feature.slug) > 0 || user.rolify_rows_unlimited?(feature.slug)
          can :manage, feature.feature_model, id: Group.with_role(:owner, user).pluck(:id)
          can :own, feature.feature_model
          unless user.rolify_rows_remaining(feature.slug) > 0
            cannot :create, feature.feature_model
          end
        else
          cannot :delete, feature.feature_model
          cannot :update, feature.feature_model
          cannot :own, feature.feature_model
          cannot :create, feature.feature_model
        end
      when 'boolean'
        if user.plan.feature_setting feature.slug
          can :use, feature.slug.to_sym
        end
      else
        raise(:unknown_feature_type.l)
    end
  end
end