class Admin::PatentsController < OrbitMemberController layout "member_plugin" before_action :set_patent, 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 @patents = Patent.order_by(:year=>'desc').page(params[:page]).per(10) end def new @member = MemberProfile.find_by(:uid=>params['uid']) rescue nil @patent = Patent.new end def create @member = MemberProfile.find(patent_params['member_profile_id']) rescue nil @patent = Patent.new(patent_params) @patent.save redirect_to params['referer_url'] end def edit @member = @patent.member_profile rescue nil end def update @member = @patent.member_profile rescue nil @patent.update_attributes(patent_params) @patent.save redirect_to params['referer_url'] end def destroy @patent.destroy end def toggle_hide if params[:ids] @patents = Patent.any_in(_id: params[:ids]) @patents.each do |patent| patent.is_hidden = params[:disable] patent.save end end render json: {"success"=>true} end def setting end def frontend_setting @member = MemberProfile.find_by(:uid=>params['uid']) rescue nil @intro = PatentIntro.find_by(:member_profile_id=>@member.id) rescue nil @intro = @intro.nil? ? PatentIntro.new({:member_profile_id=>@member.id}) : @intro end def update_frontend_setting @member = MemberProfile.find(intro_params['member_profile_id']) rescue nil @intro = PatentIntro.find_by(:member_profile_id=>@member.id) rescue nil @intro = @intro.nil? ? PatentIntro.new({:member_profile_id=>@member.id}) : @intro @intro.update_attributes(intro_params) @intro.save redirect_to URI.encode('/admin/members/'+@member.to_param+'/Patent') end def get_settings @patent_types = PatentType.all end def set_plugin @plugin = OrbitApp::Plugin::Registration.all.select{|plugin| plugin.app_name.eql? 'Patent'}.first end private def set_patent 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 @patent = Patent.find_by(:uid => uid) rescue Patent.find(params[:id]) end def patent_params params.require(:patent).permit! rescue nil end def intro_params params.require(:patent_intro).permit! rescue nil end end