2012-01-30 20:39:34 +00:00
|
|
|
# -*- encoding : utf-8 -*-
|
2012-05-02 10:18:07 +01:00
|
|
|
class Projects::ProjectsController < Projects::BaseController
|
2012-03-07 21:34:49 +00:00
|
|
|
before_filter :authenticate_user!
|
2011-11-23 15:52:33 +00:00
|
|
|
load_and_authorize_resource
|
2012-05-15 12:18:43 +01:00
|
|
|
# TODO WTF ? fork, update, sections not authorize
|
|
|
|
before_filter do |controller|
|
|
|
|
authorize! params[:action].to_sym, @project if params[:action] != 'index'
|
|
|
|
end
|
2011-03-10 13:38:50 +00:00
|
|
|
|
2011-10-26 21:57:51 +01:00
|
|
|
def index
|
2012-03-27 22:28:50 +01:00
|
|
|
@projects = Project.accessible_by(current_ability, :membered)
|
2012-03-28 00:58:03 +01:00
|
|
|
# @projects = @projects.search(params[:query]).search_order if params[:query].present?
|
2012-03-27 16:50:00 +01:00
|
|
|
|
|
|
|
#puts prepare_list(@projects).inspect
|
|
|
|
respond_to do |format|
|
|
|
|
format.html { @projects = @projects.recent.paginate(:page => params[:page], :per_page => 25) }
|
|
|
|
format.json { @projects = prepare_list(@projects) }
|
|
|
|
end
|
2011-03-10 14:20:09 +00:00
|
|
|
end
|
|
|
|
|
2011-10-26 21:57:51 +01:00
|
|
|
def new
|
|
|
|
@project = Project.new
|
2012-02-29 14:45:04 +00:00
|
|
|
@who_owns = :me
|
2011-10-26 21:57:51 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def edit
|
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
|
|
|
@project = Project.new params[:project]
|
2012-02-27 09:03:28 +00:00
|
|
|
@project.owner = choose_owner
|
2012-02-29 14:45:04 +00:00
|
|
|
@who_owns = (@project.owner_type == 'User' ? :me : :group)
|
2012-04-10 10:40:38 +01:00
|
|
|
authorize! :update, @project.owner if @project.owner.class == Group
|
2011-10-26 21:57:51 +01:00
|
|
|
|
2011-11-30 12:58:14 +00:00
|
|
|
if @project.save
|
2012-04-10 10:40:38 +01:00
|
|
|
flash[:notice] = t('flash.project.saved')
|
2011-10-27 23:43:44 +01:00
|
|
|
redirect_to @project
|
2011-10-26 21:57:51 +01:00
|
|
|
else
|
|
|
|
flash[:error] = t('flash.project.save_error')
|
2012-03-03 01:05:19 +00:00
|
|
|
flash[:warning] = @project.errors.full_messages.join('. ')
|
2011-10-26 21:57:51 +01:00
|
|
|
render :action => :new
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
|
|
|
if @project.update_attributes(params[:project])
|
|
|
|
flash[:notice] = t('flash.project.saved')
|
2011-10-27 23:43:44 +01:00
|
|
|
redirect_to @project
|
2011-10-26 21:57:51 +01:00
|
|
|
else
|
2011-11-30 12:58:14 +00:00
|
|
|
@project.save
|
2011-10-26 21:57:51 +01:00
|
|
|
flash[:error] = t('flash.project.save_error')
|
2012-04-01 16:19:54 +01:00
|
|
|
flash[:warning] = @project.errors.full_messages.join('. ')
|
2011-10-26 21:57:51 +01:00
|
|
|
render :action => :edit
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
@project.destroy
|
|
|
|
flash[:notice] = t("flash.project.destroyed")
|
2011-10-27 13:49:21 +01:00
|
|
|
redirect_to @project.owner
|
2011-10-26 21:57:51 +01:00
|
|
|
end
|
|
|
|
|
2011-11-23 15:52:33 +00:00
|
|
|
def fork
|
2012-04-09 18:56:03 +01:00
|
|
|
owner = (Group.find params[:group] if params[:group].present?) || current_user
|
|
|
|
authorize! :update, owner if owner.class == Group
|
|
|
|
if forked = @project.fork(owner) and forked.valid?
|
2011-11-29 21:42:58 +00:00
|
|
|
redirect_to forked, :notice => t("flash.project.forked")
|
|
|
|
else
|
|
|
|
flash[:warning] = t("flash.project.fork_error")
|
|
|
|
flash[:error] = forked.errors.full_messages
|
|
|
|
redirect_to @project
|
|
|
|
end
|
2011-11-23 15:52:33 +00:00
|
|
|
end
|
|
|
|
|
2012-02-28 07:59:38 +00:00
|
|
|
def sections
|
|
|
|
if request.post?
|
|
|
|
if @project.update_attributes(params[:project])
|
|
|
|
flash[:notice] = t('flash.project.saved')
|
2012-04-19 20:45:50 +01:00
|
|
|
redirect_to sections_project_path(@project)
|
2012-02-28 07:59:38 +00:00
|
|
|
else
|
|
|
|
@project.save
|
|
|
|
flash[:error] = t('flash.project.save_error')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-03-07 21:34:49 +00:00
|
|
|
def remove_user
|
|
|
|
@project.relations.by_object(current_user).destroy_all
|
|
|
|
flash[:notice] = t("flash.project.user_removed")
|
|
|
|
redirect_to projects_path
|
|
|
|
end
|
2011-10-17 15:21:29 +01:00
|
|
|
|
2012-03-07 21:34:49 +00:00
|
|
|
protected
|
2012-02-27 09:03:28 +00:00
|
|
|
|
2012-03-27 16:50:00 +01:00
|
|
|
def prepare_list(projects)
|
|
|
|
res = {}
|
|
|
|
|
|
|
|
colName = ['name']
|
|
|
|
sort_col = params[:iSortCol_0] || 0
|
|
|
|
sort_dir = params[:sSortDir_0] == "desc" ? 'desc' : 'asc'
|
|
|
|
order = "#{colName[sort_col.to_i]} #{sort_dir}"
|
|
|
|
|
|
|
|
res[:total_count] = projects.count
|
2012-03-28 00:58:03 +01:00
|
|
|
projects = projects.search(params[:sSearch]).search_order if params[:sSearch].present?
|
2012-03-27 16:50:00 +01:00
|
|
|
res[:filtered_count] = projects.count
|
|
|
|
|
|
|
|
projects = projects.order(order)
|
|
|
|
res[:projects] = if params[:iDisplayLength].present?
|
|
|
|
start = params[:iDisplayStart].present? ? params[:iDisplayStart].to_i : 0
|
|
|
|
length = params[:iDisplayLength].to_i
|
|
|
|
page = start/length + 1
|
|
|
|
|
|
|
|
projects.paginate(:page => page, :per_page => length)
|
|
|
|
else
|
|
|
|
projects
|
|
|
|
end
|
|
|
|
|
|
|
|
res
|
|
|
|
end
|
|
|
|
|
2012-03-07 21:34:49 +00:00
|
|
|
def choose_owner
|
|
|
|
if params[:who_owns] == 'group'
|
|
|
|
Group.find(params[:owner_id])
|
|
|
|
else
|
|
|
|
current_user
|
2012-02-27 09:03:28 +00:00
|
|
|
end
|
2012-03-07 21:34:49 +00:00
|
|
|
end
|
2011-03-10 11:35:46 +00:00
|
|
|
end
|