class Admin::BooksController < OrbitMemberController include Admin::JournalPapersHelper layout "member_plugin" before_action :set_book, only: [:show, :edit , :update, :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 end def update respond_to do |format| if @book.update_attributes(book_attributes) format.html { redirect_to params['referer_url'] } format.xml { head :ok } else format.html { render action: "edit" } format.xml { render :xml => @book.errors, :status => :unprocessable_entity } end end end def new @book = Book.new @member = MemberProfile.find_by(:uid=>params['uid']) rescue nil end def create @book = Book.new(book_attributes) respond_to do |format| if @book.save format.html { redirect_to params['referer_url'] } format.xml { render :xml => @book, :status => :created, :location => @book } else format.html { render action: "new" } format.xml { render :xml => @book.errors, :status => :unprocessable_entity } end 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.js 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 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