2015-12-29 11:35:44 +00:00
|
|
|
class Admin::CoursesController < OrbitMemberController
|
|
|
|
include Admin::CoursesHelper
|
|
|
|
layout "member_plugin"
|
|
|
|
before_action :set_course, 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
|
|
|
|
@courses = Course.order_by(:created_at=>'desc').page(params[:page]).per(10)
|
|
|
|
end
|
|
|
|
|
|
|
|
def new
|
|
|
|
@member = MemberProfile.find_by(:uid=>params['uid']) rescue nil
|
|
|
|
@course = Course.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
|
|
|
course = Course.create(course_params)
|
2016-01-12 10:17:58 +00:00
|
|
|
redirect_to params[:referer_url]
|
2015-12-29 11:35:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
|
|
|
end
|
|
|
|
|
|
|
|
def edit
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
|
|
|
@course.destroy
|
|
|
|
redirect_to admin_courses_path(:page => params[:page])
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
|
|
|
@course.update_attributes(course_params)
|
|
|
|
@course.save
|
|
|
|
redirect_to params[:referer_url]
|
|
|
|
end
|
|
|
|
|
|
|
|
def setting
|
|
|
|
end
|
|
|
|
|
|
|
|
def frontend_setting
|
|
|
|
@member = MemberProfile.find_by(:uid=>params['uid']) rescue nil
|
|
|
|
@intro = CourseIntro.find_by(:member_profile_id=>@member.id) rescue nil
|
|
|
|
@intro = @intro.nil? ? CourseIntro.new({:member_profile_id=>@member.id}) : @intro
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_frontend_setting
|
|
|
|
@member = MemberProfile.find(intro_params['member_profile_id']) rescue nil
|
|
|
|
@intro = CourseIntro.find_by(:member_profile_id=>@member.id) rescue nil
|
|
|
|
@intro = @intro.nil? ? CourseIntro.new({:member_profile_id=>@member.id}) : @intro
|
|
|
|
@intro.update_attributes(intro_params)
|
|
|
|
@intro.save
|
|
|
|
redirect_to URI.encode('/admin/members/'+@member.to_param+'/Course')
|
|
|
|
end
|
|
|
|
|
|
|
|
def toggle_hide
|
|
|
|
if params[:ids]
|
|
|
|
@projects = Course.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 course_params
|
|
|
|
params.require(:course).permit!
|
|
|
|
end
|
|
|
|
|
|
|
|
def intro_params
|
|
|
|
params.require(:course_intro).permit! rescue nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_settings
|
|
|
|
@course_semesters = CourseSemester.all
|
|
|
|
@course_categories = CourseCategory.all.order_by(:sort_position => "asc")
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_plugin
|
|
|
|
@plugin = OrbitApp::Plugin::Registration.all.select{|plugin| plugin.app_name.eql? 'Course'}.first
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_course
|
|
|
|
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
|
|
|
|
@course = Course.find_by(:uid => uid) rescue Course.find(params[:id])
|
|
|
|
end
|
|
|
|
end
|