personal_technique/app/controllers/admin/techniques_controller.rb

150 lines
3.8 KiB
Ruby

class Admin::TechniquesController < OrbitMemberController
include Admin::TechniquesHelper
layout "member_plugin"
before_action :set_technique, 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?
@techniques = Technique.order_by(sort).page(params[:page]).per(10)
else
@techniques = Technique.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
@technique = Technique.new
end
def create
technique = Technique.create(technique_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="techniques.xlsx"'
}
end
end
def edit
end
def destroy
@technique.destroy
redirect_to admin_techniques_path(:page => params[:page])
end
def update
@technique.update_attributes(technique_params)
@technique.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 = TechniqueIntro.find_by(:member_profile_id=>@member.id) rescue nil
@intro = @intro.nil? ? TechniqueIntro.new({:member_profile_id=>@member.id}) : @intro
end
def update_frontend_setting
@member = MemberProfile.find(intro_params['member_profile_id']) rescue nil
@intro = TechniqueIntro.find_by(:member_profile_id=>@member.id) rescue nil
@intro = @intro.nil? ? TechniqueIntro.new({:member_profile_id=>@member.id}) : @intro
@intro.update_attributes(intro_params)
@intro.save
redirect_to URI.encode('/admin/members/'+@member.to_param+'/Technique')
end
def toggle_hide
if params[:ids]
@projects = Technique.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 technique_params
params.require(:technique).permit!
end
def intro_params
params.require(:technique_intro).permit! rescue nil
end
def get_settings
@technique_statuses = TechniqueStatus.all
end
def set_plugin
@plugin = OrbitApp::Plugin::Registration.all.select{|plugin| plugin.app_name.eql? 'Technique'}.first
end
def set_technique
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
@technique = Technique.find_by(:uid => uid) rescue Technique.find(params[:id])
end
end