personal_other_paper/app/controllers/admin/other_papers_controller.rb

150 lines
3.8 KiB
Ruby

class Admin::OtherPapersController < OrbitMemberController
include Admin::OtherPapersHelper
layout "member_plugin"
before_action :set_other_paper, 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
if params[:sort].present?
@other_papers = OtherPaper.order_by(sort).page(params[:page]).per(10)
else
@other_papers = OtherPaper.sort_hash.page(params[:page]).per(10)
end
end
def sort
case params[:sort]
when "status"
@sort = [[:is_top, params[:order]],
[:is_hot, params[:order]],
[:is_hidden,params[:order]],
[:id,params[:order]]]
when "category"
@sort = {:category_id=>params[:order]}.merge({:id=>params[:order]})
else
if params[:sort].present?
s = params[:sort].to_s
@sort = {s=>params[:order]}.merge({:id=>params[:order]})
else
@sort = {}
end
end
@sort
end
def new
@member = MemberProfile.find_by(:uid=>params['uid'].to_s) rescue nil
@other_paper = OtherPaper.new
end
def create
other_paper = OtherPaper.create(other_paper_params)
redirect_to params[:referer_url]
end
def show
end
def analysis
end
def analysis_report
role = params[:role_id]
issue_date_start = params[:issue_date_start]
issue_date_end = params[:issue_date_end]
graph_by = params[:graph_by]
@data = get_chart_data(issue_date_start,issue_date_end,role,params[:graph_by],params[:time_zone])
render :layout => false
end
def download_excel
issue_date_start = params[:issue_date_start]
issue_date_end = params[:issue_date_end]
@data = get_data_for_excel(issue_date_start,issue_date_end,params[:time_zone])
@protocol = (request.referer.blank? ? "http" : URI(request.referer).scheme)
@host_url = "#{@protocol}://#{request.host_with_port}"
respond_to do |format|
format.xlsx {
response.headers['Content-Disposition'] = 'attachment; filename="other_papers.xlsx"'
}
end
end
def edit
end
def destroy
@other_paper.destroy
redirect_to admin_other_papers_path(:page => params[:page])
end
def update
@other_paper.update_attributes(other_paper_params)
@other_paper.save
redirect_to params[:referer_url]
end
def setting
end
def frontend_setting
@member = MemberProfile.find_by(:uid=>params['uid'].to_s) rescue nil
@intro = OtherPaperIntro.find_by(:member_profile_id=>@member.id) rescue nil
@intro = @intro.nil? ? OtherPaperIntro.new({:member_profile_id=>@member.id}) : @intro
end
def update_frontend_setting
@member = MemberProfile.find(intro_params['member_profile_id']) rescue nil
@intro = OtherPaperIntro.find_by(:member_profile_id=>@member.id) rescue nil
@intro = @intro.nil? ? OtherPaperIntro.new({:member_profile_id=>@member.id}) : @intro
@intro.update_attributes(intro_params)
@intro.save
redirect_to URI.encode('/admin/members/'+@member.to_param+'/OtherPaper')
end
def toggle_hide
if params[:ids]
@projects = OtherPaper.any_in(_id: params[:ids])
@projects.each do |project|
project.is_hidden = params[:disable]
project.save
end
end
render json: {"success"=>true}
end
private
def other_paper_params
params.require(:other_paper).permit!
end
def intro_params
params.require(:other_paper_intro).permit! rescue nil
end
def get_settings
@other_paper_statuses = OtherPaperStatus.all
end
def set_plugin
@plugin = OrbitApp::Plugin::Registration.all.select{|plugin| plugin.app_name.eql? 'OtherPaper'}.first
end
def set_other_paper
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
@other_paper = OtherPaper.find_by(:uid => uid) rescue OtherPaper.find(params[:id])
end
end