2014-07-04 06:14:37 +00:00
|
|
|
class Admin::ProjectsController < OrbitMemberController
|
|
|
|
layout "member_plugin"
|
|
|
|
|
2014-10-02 11:48:50 +00:00
|
|
|
before_action :set_project, only: [:show, :edit , :update, :destroy]
|
2014-07-04 06:14:37 +00:00
|
|
|
before_action :set_plugin
|
|
|
|
before_action :get_settings,:only => [:new, :edit, :setting]
|
|
|
|
|
2014-08-01 04:24:57 +00:00
|
|
|
before_action :need_access_right
|
|
|
|
before_action :allow_admin_only, :only => [:index, :setting]
|
|
|
|
|
2014-07-04 06:14:37 +00:00
|
|
|
def index
|
2014-07-18 07:06:04 +00:00
|
|
|
@projects = Project.order_by(:period_start_date=>'desc',:year=>'desc').page(params[:page]).per(10)
|
2014-07-04 06:14:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def new
|
|
|
|
@member = MemberProfile.find_by(:uid=>params['uid']) rescue nil
|
|
|
|
@project = Project.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
|
|
|
@member = MemberProfile.find(project_params['member_profile_id']) rescue nil
|
|
|
|
@project = Project.new(project_params)
|
|
|
|
@project.save
|
2014-08-01 04:24:57 +00:00
|
|
|
redirect_to params['referer_url']
|
2014-07-04 06:14:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def edit
|
2014-10-02 11:48:50 +00:00
|
|
|
@member = @project.member_profile rescue nil
|
2014-07-04 06:14:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2014-10-02 11:48:50 +00:00
|
|
|
@member = @project.member_profile rescue nil
|
2014-07-04 06:14:37 +00:00
|
|
|
@project.update_attributes(project_params)
|
|
|
|
@project.save
|
2014-08-01 04:24:57 +00:00
|
|
|
redirect_to params['referer_url']
|
2014-07-04 06:14:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
@project.destroy
|
|
|
|
end
|
|
|
|
|
|
|
|
def toggle_hide
|
|
|
|
if params[:ids]
|
|
|
|
@projects = Project.any_in(_id: params[:ids])
|
|
|
|
|
|
|
|
@projects.each do |project|
|
|
|
|
project.is_hidden = params[:disable]
|
|
|
|
project.save
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
render json: {"success"=>true}
|
|
|
|
end
|
|
|
|
|
|
|
|
def setting
|
|
|
|
end
|
|
|
|
|
|
|
|
def frontend_setting
|
|
|
|
@member = MemberProfile.find_by(:uid=>params['uid']) rescue nil
|
|
|
|
@intro = ProjectIntro.find_by(:member_profile_id=>@member.id) rescue nil
|
|
|
|
@intro = @intro.nil? ? ProjectIntro.new({:member_profile_id=>@member.id}) : @intro
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_frontend_setting
|
|
|
|
@member = MemberProfile.find(intro_params['member_profile_id']) rescue nil
|
|
|
|
@intro = ProjectIntro.find_by(:member_profile_id=>@member.id) rescue nil
|
|
|
|
@intro = @intro.nil? ? ProjectIntro.new({:member_profile_id=>@member.id}) : @intro
|
|
|
|
@intro.update_attributes(intro_params)
|
|
|
|
@intro.save
|
2014-08-01 04:24:57 +00:00
|
|
|
redirect_to URI.encode('/admin/members/'+@member.to_param+'/Project')
|
2014-07-04 06:14:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def get_settings
|
|
|
|
@project_types = ProjectType.all
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_plugin
|
|
|
|
@plugin = OrbitApp::Plugin::Registration.all.select{|plugin| plugin.app_name.eql? 'Project'}.first
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2014-10-02 11:48:50 +00:00
|
|
|
def set_project
|
|
|
|
path = request.path.split('/')
|
|
|
|
if path.last.include? '-'
|
|
|
|
uid = path[-1].split("-").last
|
|
|
|
uid = uid.split("?").first
|
|
|
|
else
|
|
|
|
uid = path[-2].split("-").last
|
|
|
|
uid = uid.split("?").first
|
|
|
|
end
|
|
|
|
@project = Project.find_by(:uid => uid) rescue Project.find(params[:id])
|
|
|
|
end
|
|
|
|
|
2014-07-04 06:14:37 +00:00
|
|
|
def project_params
|
|
|
|
params.require(:project).permit! rescue nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def intro_params
|
|
|
|
params.require(:project_intro).permit! rescue nil
|
|
|
|
end
|
|
|
|
end
|