180 lines
4.2 KiB
Ruby
180 lines
4.2 KiB
Ruby
class Admin::BooksController < OrbitMemberController
|
|
include Admin::BooksHelper
|
|
layout "member_plugin"
|
|
|
|
before_action :set_book, only: [:show, :edit , :update]
|
|
before_action :find_book, only: [:destroy]
|
|
before_action :get_plugins, only: [:index, :book_setting, :new, :create, :edit, :update]
|
|
before_action :set_types, only: [:index,:book_setting, :new, :edit, :create, :update]
|
|
before_action :set_plugin
|
|
|
|
before_action :need_access_right
|
|
before_action :allow_admin_only, :only => [:index, :book_setting]
|
|
|
|
def index
|
|
@writing_books = Book.order_by(:year=>'desc').page(params[:page]).per(10)
|
|
respond_to do |format|
|
|
format.html # index.html.erb
|
|
format.js { }
|
|
format.xml { render :xml => @books }
|
|
end
|
|
end
|
|
|
|
def show
|
|
respond_to do |format|
|
|
format.html # show.html.erb
|
|
format.xml { render :xml => @book }
|
|
end
|
|
end
|
|
|
|
def edit
|
|
@member = @book.member_profile
|
|
if params[:desktop]
|
|
render :layout => false
|
|
end
|
|
end
|
|
|
|
def update
|
|
@member = @book.member_profile
|
|
@book.update_attributes(book_attributes)
|
|
@book.save
|
|
if params[:desktop] == "true"
|
|
render json: {"data" => get_paper_list}.to_json
|
|
else
|
|
redirect_to params['referer_url']
|
|
end
|
|
end
|
|
|
|
def new
|
|
@book = Book.new
|
|
@member = MemberProfile.find_by(:id=>params['member_profile_id']) rescue nil
|
|
if params[:desktop]
|
|
render :layout => false
|
|
end
|
|
end
|
|
|
|
def create
|
|
@member = MemberProfile.find(book_attributes['member_profile_id']) rescue nil
|
|
@book = Book.new(book_attributes)
|
|
@book.save
|
|
if params[:desktop] == "true"
|
|
render json: {"data" => get_paper_list}.to_json
|
|
else
|
|
redirect_to params['referer_url']
|
|
end
|
|
end
|
|
|
|
def book_setting
|
|
if current_user.is_admin?
|
|
@set_author_type = BookAuthorType.new(display: 'List')
|
|
@author_type_url = admin_books_path
|
|
|
|
@set_book_type = BookType.new(display: 'List')
|
|
@book_type_url = admin_books_path
|
|
else
|
|
render_401
|
|
end
|
|
end
|
|
|
|
def destroy
|
|
@book.destroy
|
|
respond_to do |format|
|
|
format.html { redirect_to(admin_books_url) }
|
|
# format.xml { head :ok }
|
|
format.js
|
|
format.json {render json: {"success" => true}}
|
|
end
|
|
end
|
|
|
|
def add_author_type
|
|
@set_author_type = BookAuthorType.new(display: 'List')
|
|
@author_type_url = admin_book_author_types_path
|
|
@set_author_type.id = params[:id]
|
|
|
|
respond_to do |format|
|
|
format.js
|
|
end
|
|
end
|
|
|
|
def edit_author_type
|
|
@set_author_type = BookAuthorType.find(params[:book_id])
|
|
@author_type_url = admin_book_author_type_path(@set_author_type)
|
|
|
|
respond_to do |format|
|
|
format.js
|
|
end
|
|
end
|
|
|
|
def add_book_type
|
|
@set_book_type = BookType.new(display: 'List')
|
|
@book_type_url = admin_book_types_path
|
|
@set_book_type.id = params[:id]
|
|
|
|
respond_to do |format|
|
|
format.js
|
|
end
|
|
end
|
|
|
|
def edit_book_type
|
|
@set_book_type = BookType.find(params[:book_id])
|
|
@book_type_url = admin_book_type_path(@set_book_type)
|
|
|
|
respond_to do |format|
|
|
format.js
|
|
end
|
|
end
|
|
|
|
def data_share
|
|
if params[:ids]
|
|
@books = Book.any_in(_id: params[:ids])
|
|
|
|
@books.each do |book|
|
|
book.is_hidden = params[:disable]
|
|
book.save
|
|
end
|
|
end
|
|
|
|
respond_to do |format|
|
|
format.html { redirect_to(admin_member_path(id: params[:member_profile_id],show_plugin_profile: "Book")) }
|
|
format.json { render json: {"success"=>true}.to_json}
|
|
end
|
|
end
|
|
|
|
def delete
|
|
end
|
|
|
|
private
|
|
|
|
def set_book
|
|
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
|
|
@book = Book.find_by(uid: uid)
|
|
end
|
|
|
|
def find_book
|
|
@book = Book.find_by(id: params[:id])
|
|
end
|
|
|
|
def book_attributes
|
|
params.require(:book).permit! rescue nil
|
|
end
|
|
|
|
def get_plugins
|
|
@plugins = OrbitApp::Plugin::Registration.all rescue nil
|
|
end
|
|
|
|
def set_plugin
|
|
@plugin = OrbitApp::Plugin::Registration.all.select{|plugin| plugin.app_name.eql? 'Book'}.first
|
|
end
|
|
|
|
def set_types
|
|
@author_types = BookAuthorType.all
|
|
@book_types = BookType.all
|
|
end
|
|
end |