2012-05-02 10:18:07 +01:00
|
|
|
class Groups::ProfileController < Groups::BaseController
|
2012-10-03 17:38:42 +01:00
|
|
|
include AvatarHelper
|
2014-01-21 04:51:49 +00:00
|
|
|
load_and_authorize_resource class: Group, instance_name: 'group'
|
|
|
|
skip_before_filter :authenticate_user!, only: :show if APP_CONFIG['anonymous_access']
|
2012-05-02 10:18:07 +01:00
|
|
|
|
|
|
|
def index
|
2014-01-21 04:51:49 +00:00
|
|
|
@groups = current_user.groups.paginate(page: params[:group_page]) # accessible_by(current_ability)
|
2012-05-02 10:18:07 +01:00
|
|
|
@groups = @groups.search(params[:query]) if params[:query].present?
|
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
2014-03-19 23:00:16 +00:00
|
|
|
@path, page = group_path(@group), params[:page].to_i
|
2014-03-26 10:21:54 +00:00
|
|
|
@projects = @group.own_projects.search(params[:search]).recent
|
2013-09-11 16:43:53 +01:00
|
|
|
if request.xhr?
|
2013-09-10 18:03:00 +01:00
|
|
|
if params[:visibility] != 'hidden'
|
|
|
|
@projects = @projects.opened
|
|
|
|
@hidden = true
|
|
|
|
else
|
|
|
|
@projects = @projects.by_visibilities('hidden').accessible_by(current_ability, :read)
|
|
|
|
end
|
2014-01-21 04:51:49 +00:00
|
|
|
render partial: 'shared/profile_projects', layout: nil, locals: {projects: paginate_projects(page)}
|
2013-09-10 18:03:00 +01:00
|
|
|
else
|
2014-03-26 10:21:54 +00:00
|
|
|
@projects = @projects.opened
|
2013-09-10 18:03:00 +01:00
|
|
|
@projects = paginate_projects(page)
|
|
|
|
end
|
2012-05-02 10:18:07 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def new
|
|
|
|
end
|
|
|
|
|
|
|
|
def edit
|
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2012-10-16 17:38:49 +01:00
|
|
|
@group = current_user.own_groups.new params[:group]
|
2012-05-02 10:18:07 +01:00
|
|
|
if @group.save
|
|
|
|
flash[:notice] = t('flash.group.saved')
|
|
|
|
redirect_to group_path(@group)
|
|
|
|
else
|
|
|
|
flash[:error] = t('flash.group.save_error')
|
|
|
|
flash[:warning] = @group.errors.full_messages.join('. ')
|
2014-01-21 04:51:49 +00:00
|
|
|
render action: :new
|
2012-05-02 10:18:07 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
|
|
|
if @group.update_attributes(params[:group])
|
2012-10-03 17:38:42 +01:00
|
|
|
update_avatar(@group, params)
|
2012-05-02 10:18:07 +01:00
|
|
|
flash[:notice] = t('flash.group.saved')
|
|
|
|
redirect_to group_path(@group)
|
|
|
|
else
|
|
|
|
flash[:error] = t('flash.group.save_error')
|
2014-01-21 04:51:49 +00:00
|
|
|
render action: :edit
|
2012-05-02 10:18:07 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
@group.destroy
|
|
|
|
flash[:notice] = t("flash.group.destroyed")
|
|
|
|
redirect_to groups_path
|
|
|
|
end
|
|
|
|
|
|
|
|
def remove_user
|
2012-07-27 05:12:09 +01:00
|
|
|
Relation.by_actor(current_user).by_target(@group).destroy_all
|
2012-05-02 10:18:07 +01:00
|
|
|
redirect_to groups_path
|
|
|
|
end
|
2013-09-10 18:03:00 +01:00
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def paginate_projects(page)
|
2014-01-21 04:51:49 +00:00
|
|
|
@projects.paginate(page: (page>0 ? page : nil), per_page: 24)
|
2013-09-10 18:03:00 +01:00
|
|
|
end
|
2012-05-02 10:18:07 +01:00
|
|
|
end
|