2011-11-15 20:05:08 +00:00
|
|
|
class Ability
|
|
|
|
include CanCan::Ability
|
|
|
|
|
|
|
|
def initialize(user)
|
|
|
|
user ||= User.new # guest user (not logged in)
|
2011-11-16 18:45:01 +00:00
|
|
|
|
2011-11-15 20:05:08 +00:00
|
|
|
if user.admin?
|
|
|
|
can :manage, :all
|
|
|
|
else
|
2011-11-17 19:34:02 +00:00
|
|
|
#WARNING:
|
|
|
|
# - put cannot rules _after_ can rules and not before!
|
|
|
|
# - beware inner joins. Use sub queries against them!
|
2011-11-15 20:05:08 +00:00
|
|
|
# Shared rights between guests and registered users
|
2011-11-16 18:45:01 +00:00
|
|
|
can :forbidden, Platform
|
2011-11-17 19:34:02 +00:00
|
|
|
|
2011-11-22 19:21:09 +00:00
|
|
|
can :read, [Repository, Platform], :visibility => 'open'
|
2011-11-30 00:56:57 +00:00
|
|
|
# TODO remove because auth callbacks skipped
|
|
|
|
can :auto_build, Project
|
2011-11-19 11:41:11 +00:00
|
|
|
can [:status_build, :pre_build, :post_build, :circle_build, :new_bbdt], BuildList
|
2011-11-17 19:34:02 +00:00
|
|
|
|
2011-11-15 20:05:08 +00:00
|
|
|
# Guest rights
|
|
|
|
if user.guest?
|
2011-11-17 19:34:02 +00:00
|
|
|
can :create, User
|
2011-11-15 20:05:08 +00:00
|
|
|
# Registered user rights
|
|
|
|
else
|
2011-11-24 21:46:19 +00:00
|
|
|
can [:read, :platforms], Category
|
|
|
|
|
|
|
|
can :create, AutoBuildList
|
|
|
|
can [:index, :destroy], AutoBuildList, :project_id => user.own_project_ids
|
2011-11-15 20:05:08 +00:00
|
|
|
# If rules goes one by one CanCan joins them by 'OR' sql operator
|
|
|
|
can :read, Project, :visibility => 'open'
|
2011-11-21 19:06:34 +00:00
|
|
|
can :read, User
|
2011-11-18 18:26:22 +00:00
|
|
|
can :manage_collaborators, Project do |project|
|
|
|
|
project.relations.exists? :object_id => user.id, :object_type => 'User', :role => 'admin'
|
|
|
|
end
|
2011-11-19 11:41:11 +00:00
|
|
|
# Put here model names which objects can user create
|
|
|
|
can :create, Project
|
|
|
|
can :publish, BuildList do |build_list|
|
|
|
|
build_list.can_published? && build_list.project.relations.exists?(:object_type => 'User', :object_id => user.id)
|
|
|
|
end
|
|
|
|
can [:read, :create], PrivateUser, :platform => {:owner_type => 'User', :owner_id => user.id}
|
2011-11-17 19:34:02 +00:00
|
|
|
|
|
|
|
# If rule has multiple conditions CanCan joins them by 'AND' sql operator
|
2011-11-18 18:26:22 +00:00
|
|
|
can [:read, :update, :process_build, :build, :destroy], Project, :owner_type => 'User', :owner_id => user.id
|
2011-11-24 19:22:37 +00:00
|
|
|
#can :read, Project, :relations => {:role => 'reader'}
|
|
|
|
can :read, Project, projects_in_relations_with(:role => 'reader', :object_type => 'User', :object_id => user.id) do |project|
|
2011-11-18 18:26:22 +00:00
|
|
|
#The can? and cannot? call cannot be used with a raw sql 'can' definition.
|
2011-11-24 19:22:37 +00:00
|
|
|
project.relations.exists?(:role => 'reader', :object_type => 'User', :object_id => user.id)
|
2011-11-18 18:26:22 +00:00
|
|
|
end
|
2011-11-24 19:22:37 +00:00
|
|
|
#can [:update, :process_build, :build], Project, :relations => {:role => 'writer'}
|
|
|
|
can [:read, :update, :process_build, :build], Project, projects_in_relations_with(:role => ['writer', 'admin'], :object_type => 'User', :object_id => user.id) do |project|
|
|
|
|
project.relations.exists?(:role => ['writer', 'admin'], :object_type => 'User', :object_id => user.id)
|
2011-11-18 18:26:22 +00:00
|
|
|
end
|
2011-11-16 18:45:01 +00:00
|
|
|
|
2011-11-19 11:41:11 +00:00
|
|
|
can :manage, Platform, :owner_type => 'User', :owner_id => user.id
|
2011-11-17 19:34:02 +00:00
|
|
|
#can :read, Platform, :members => {:id => user.id}
|
2011-11-24 19:22:37 +00:00
|
|
|
can :read, Platform, platforms_in_relations_with(:role => 'reader', :object_type => 'User', :object_id => user.id) do |platform|
|
|
|
|
platform.relations.exists?(:role => 'reader', :object_type => 'User', :object_id => user.id)
|
2011-11-18 18:26:22 +00:00
|
|
|
end
|
2011-11-19 11:41:11 +00:00
|
|
|
|
|
|
|
can [:manage, :add_project, :remove_project, :change_visibility, :settings], Repository, :owner_type => 'User', :owner_id => user.id
|
2011-11-28 13:28:29 +00:00
|
|
|
#can :read, Repository, :members => {:id => user.id}
|
2011-11-24 19:22:37 +00:00
|
|
|
can :read, Repository, repositories_in_relations_with(:role => 'reader', :object_type => 'User', :object_id => user.id) do |repository|
|
|
|
|
repository.relations.exists?(:role => 'reader', :object_type => 'User', :object_id => user.id)
|
2011-11-19 11:41:11 +00:00
|
|
|
end
|
2011-11-16 18:45:01 +00:00
|
|
|
|
|
|
|
#can :read, Repository
|
|
|
|
# TODO: Add personal repos rules
|
|
|
|
|
|
|
|
# Same rights for groups:
|
2011-11-19 11:41:11 +00:00
|
|
|
can [:read, :create], PrivateUser, :platform => {:owner_type => 'Group', :owner_id => user.group_ids}
|
|
|
|
can :publish, BuildList do |build_list|
|
|
|
|
build_list.can_published? && build_list.project.relations.exists?(:object_type => 'Group', :object_id => user.group_ids)
|
|
|
|
end
|
|
|
|
|
2011-11-18 18:26:22 +00:00
|
|
|
can [:read, :update, :process_build, :build, :destroy], Project, :owner_type => 'Group', :owner_id => user.group_ids
|
2011-11-24 19:22:37 +00:00
|
|
|
#can :read, Project, :relations => {:role => 'reader', :object_type => 'Group', :object_id => user.group_ids}
|
|
|
|
can :read, Project, projects_in_relations_with(:role => 'reader', :object_type => 'Group', :object_id => user.group_ids) do |project|
|
|
|
|
project.relations.exists?(:role => 'reader', :object_type => 'Group', :object_id => user.group_ids)
|
2011-11-18 18:26:22 +00:00
|
|
|
end
|
2011-11-24 19:22:37 +00:00
|
|
|
#can [:update, :process_build, :build], Project, :relations => {:role => 'writer', :object_type => 'Group', :object_id => user.group_ids}
|
|
|
|
can [:read, :update, :process_build, :build], Project, projects_in_relations_with(:role => ['writer', 'admin'], :object_type => 'Group', :object_id => user.group_ids) do |project|
|
|
|
|
project.relations.exists?(:role => ['writer', 'admin'], :object_type => 'Group', :object_id => user.group_ids)
|
2011-11-18 18:26:22 +00:00
|
|
|
end
|
2011-11-16 18:45:01 +00:00
|
|
|
|
|
|
|
can :manage, Platform, :owner_type => 'Group', :owner_id => user.group_ids
|
2011-11-17 19:34:02 +00:00
|
|
|
#can :read, Platform, :groups => {:id => user.group_ids}
|
2011-11-24 19:22:37 +00:00
|
|
|
can :read, Platform, platforms_in_relations_with(:role => 'reader', :object_type => 'Group', :object_id => user.group_ids) do |platform|
|
|
|
|
platform.relations.exists?(:role => 'reader', :object_type => 'Group', :object_id => user.group_ids)
|
2011-11-18 18:26:22 +00:00
|
|
|
end
|
2011-11-19 11:41:11 +00:00
|
|
|
|
|
|
|
can [:manage, :add_project, :remove_project], Repository, :owner_type => 'Group', :owner_id => user.group_ids
|
|
|
|
#can :read, Platform, :groups => {:id => user.group_ids}
|
2011-11-24 19:22:37 +00:00
|
|
|
can :read, Repository, repositories_in_relations_with(:role => 'reader', :object_type => 'Group', :object_id => user.group_ids) do |repository|
|
|
|
|
repository.relations.exists?(:role => 'reader', :object_type => 'Group', :object_id => user.group_ids)
|
2011-11-19 11:41:11 +00:00
|
|
|
end
|
2011-11-22 13:20:35 +00:00
|
|
|
|
2011-11-23 15:52:33 +00:00
|
|
|
can(:fork, Project) {|p| can? :read, p}
|
|
|
|
|
2011-11-22 13:20:35 +00:00
|
|
|
# Things that can not do simple user
|
|
|
|
cannot :create, [Platform, User, Repository]
|
2011-11-15 20:05:08 +00:00
|
|
|
end
|
|
|
|
end
|
2011-11-16 18:45:01 +00:00
|
|
|
|
2011-11-19 11:41:11 +00:00
|
|
|
# Shared cannot rights for all users (guests, registered, admin)
|
2011-11-16 18:45:01 +00:00
|
|
|
cannot :destroy, Platform, :platform_type => 'personal'
|
2011-11-19 11:41:11 +00:00
|
|
|
cannot :destroy, Repository, :platform => {:platform_type => 'personal'}
|
2011-11-23 15:52:33 +00:00
|
|
|
cannot :fork, Project, :owner_id => user.id, :owner_type => user.class.to_s
|
2011-11-15 20:05:08 +00:00
|
|
|
end
|
2011-11-17 19:34:02 +00:00
|
|
|
|
|
|
|
# Sub query for platforms, projects relations
|
2011-11-19 11:41:11 +00:00
|
|
|
# TODO: Replace table names list by method_missing way
|
2011-11-17 19:34:02 +00:00
|
|
|
%w[platforms projects repositories].each do |table_name|
|
|
|
|
define_method table_name + "_in_relations_with" do |opts|
|
|
|
|
query = "#{ table_name }.id IN (SELECT target_id FROM relations WHERE relations.target_type = '#{ table_name.singularize.camelize }'"
|
|
|
|
opts.each do |key, value|
|
|
|
|
query = query + " AND relations.#{ key } #{ value.class == Array ? 'IN (?)' : '= ?' } "
|
|
|
|
end
|
|
|
|
query = query + ")"
|
|
|
|
|
|
|
|
return opts.values.unshift query
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
## Sub query for project relations
|
|
|
|
#def projects_in_relations_with(opts={})
|
|
|
|
# ["projects.id IN (SELECT target_id FROM relations WHERE relations.object_id #{ opts[:object_id].class == Array ? 'IN (?)' : '= ?' } AND relations.object_type = '#{ opts[:object_type] }' AND relations.target_type = 'Platform') AND relations.role", opts[:object_id]]
|
|
|
|
#end
|
2011-11-15 20:05:08 +00:00
|
|
|
end
|