101 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			101 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Ruby
		
	
	
	
class Admin::ResearchsController < OrbitMemberController
 | 
						|
  layout "member_plugin"
 | 
						|
 | 
						|
  before_action :set_research, only: [:show, :edit , :update, :destroy]
 | 
						|
  before_action :set_plugin
 | 
						|
  before_action :get_settings,:only => [:new, :edit, :setting]
 | 
						|
 | 
						|
  before_action :need_access_right
 | 
						|
  before_action :allow_admin_only, :only => [:index, :setting]
 | 
						|
 | 
						|
  def index
 | 
						|
    @researchs = Research.order_by(:year=>'desc').page(params[:page]).per(10)
 | 
						|
  end
 | 
						|
 | 
						|
  def new
 | 
						|
    @member = MemberProfile.find_by(:uid=>params['uid']) rescue nil
 | 
						|
    @research = Research.new
 | 
						|
  end
 | 
						|
 | 
						|
  def create
 | 
						|
    @member = MemberProfile.find(research_params['member_profile_id']) rescue nil
 | 
						|
    @research = Research.new(research_params)
 | 
						|
    @research.save
 | 
						|
    redirect_to params['referer_url']
 | 
						|
  end
 | 
						|
 | 
						|
  def edit
 | 
						|
    @member = @research.member_profile rescue nil
 | 
						|
  end
 | 
						|
 | 
						|
  def update
 | 
						|
    @member = @research.member_profile rescue nil
 | 
						|
    @research.update_attributes(research_params)
 | 
						|
    @research.save
 | 
						|
    redirect_to params['referer_url']
 | 
						|
  end
 | 
						|
 | 
						|
  def destroy
 | 
						|
    @research.destroy
 | 
						|
  end
 | 
						|
 | 
						|
  def toggle_hide
 | 
						|
    if params[:ids]
 | 
						|
      @researchs = Research.any_in(_id: params[:ids])
 | 
						|
 | 
						|
      @researchs.each do |research|
 | 
						|
        research.is_hidden = params[:disable]
 | 
						|
        research.save
 | 
						|
      end
 | 
						|
    end
 | 
						|
 | 
						|
    render json: {"success"=>true}
 | 
						|
  end
 | 
						|
 | 
						|
  def setting
 | 
						|
  end
 | 
						|
 | 
						|
  def frontend_setting
 | 
						|
    @member = MemberProfile.find_by(:uid=>params['uid']) rescue nil
 | 
						|
    @intro = ResearchIntro.find_by(:member_profile_id=>@member.id) rescue nil
 | 
						|
    @intro = @intro.nil? ? ResearchIntro.new({:member_profile_id=>@member.id}) : @intro
 | 
						|
  end
 | 
						|
 | 
						|
  def update_frontend_setting
 | 
						|
    @member = MemberProfile.find(intro_params['member_profile_id']) rescue nil
 | 
						|
    @intro = ResearchIntro.find_by(:member_profile_id=>@member.id) rescue nil
 | 
						|
    @intro = @intro.nil? ? ResearchIntro.new({:member_profile_id=>@member.id}) : @intro
 | 
						|
    @intro.update_attributes(intro_params)
 | 
						|
    @intro.save
 | 
						|
    redirect_to URI.encode('/admin/members/'+@member.to_param+'/Research')
 | 
						|
  end
 | 
						|
 | 
						|
  def get_settings
 | 
						|
  end
 | 
						|
 | 
						|
  def set_plugin
 | 
						|
    @plugin = OrbitApp::Plugin::Registration.all.select{|plugin| plugin.app_name.eql? 'Research'}.first
 | 
						|
  end
 | 
						|
 | 
						|
  private
 | 
						|
 | 
						|
  def set_research
 | 
						|
    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
 | 
						|
    @research = Research.find_by(:uid => uid) rescue Research.find(params[:id])
 | 
						|
  end
 | 
						|
 | 
						|
  def research_params
 | 
						|
    params.require(:research).permit! rescue nil
 | 
						|
  end
 | 
						|
 | 
						|
  def intro_params
 | 
						|
    params.require(:research_intro).permit! rescue nil
 | 
						|
  end
 | 
						|
end |