rosa-build/app/controllers/projects/collaborators_controller.rb

70 lines
1.7 KiB
Ruby
Raw Normal View History

class Projects::CollaboratorsController < Projects::BaseController
respond_to :html, :json
2015-03-04 23:19:19 +00:00
before_action :authenticate_user!
load_resource :project
2015-03-04 23:19:19 +00:00
before_action :authorize_collaborators
2011-10-30 22:59:03 +00:00
2015-03-04 23:19:19 +00:00
before_action :find_users
before_action :find_groups
2011-10-30 22:59:03 +00:00
def index
@collaborators = Collaborator.find_by_project(@project)
respond_with @collaborators
2011-10-30 22:59:03 +00:00
end
def find
users = User.not_member_of(@project)
groups = Group.not_member_of(@project)
if params[:term].present?
users = users.search(params[:term]).first(5)
groups = groups.search(params[:term]).first(5)
end
2014-01-21 04:51:49 +00:00
@collaborators = (users | groups).map{|act| Collaborator.new(actor: act, project: @project)}
respond_with @collaborators
2011-10-30 22:59:03 +00:00
end
def create
@collaborator = Collaborator.new(params[:collaborator])
@collaborator.project = @project
respond_to do |format|
if @collaborator.save
2014-01-21 04:51:49 +00:00
format.json { render partial: 'collaborator', locals: {collaborator: @collaborator} }
else
format.json { render text: 'error', status: 422 }
end
2011-10-30 22:59:03 +00:00
end
end
def update
@c = Collaborator.find(params[:id])
if @c.update_attributes(params[:collaborator])
respond_with @c
2011-10-30 22:59:03 +00:00
else
raise
end
2011-10-30 22:59:03 +00:00
end
def destroy
@cb = Collaborator.find(params[:id])
@cb.destroy if @cb
respond_with @cb
end
2011-10-30 22:59:03 +00:00
protected
def find_users
@users = @project.collaborators.order('uname')#User.all
@users = @users.without(@project.owner_id) if @project.owner_type == 'User'
end
2011-10-30 22:59:03 +00:00
def find_groups
@groups = @project.groups.order('uname')#Group.all
@groups = @groups.without(@project.owner_id) if @project.owner_type == 'Group'
end
def authorize_collaborators
authorize! :update, @project
end
2011-10-30 22:59:03 +00:00
end