2012-11-20 17:56:30 +00:00
|
|
|
class Desktop::CoAuthorsController < ApplicationController
|
|
|
|
def index
|
2012-12-05 10:34:29 +00:00
|
|
|
nils, not_nils = CoAuthor.where(name_id: current_user.id)\
|
|
|
|
.asc(:co_author).partition{|p| p.email.nil?}
|
2012-12-05 10:15:58 +00:00
|
|
|
@co_authors = not_nils + nils
|
2012-12-03 09:16:28 +00:00
|
|
|
@co_author_relations = CoAuthorRelation.all
|
2012-11-20 17:56:30 +00:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html { render :layout => false}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def new
|
|
|
|
@co_author = CoAuthor.new
|
2012-12-03 06:55:57 +00:00
|
|
|
@co_author_relations = CoAuthorRelation.all
|
2012-11-20 17:56:30 +00:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html { render :layout => false}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def edit
|
|
|
|
@co_author = CoAuthor.find(params[:id])
|
2012-12-03 09:16:28 +00:00
|
|
|
@co_author_relations = CoAuthorRelation.all
|
2012-11-20 17:56:30 +00:00
|
|
|
respond_to do |format|
|
|
|
|
format.html { render :layout => false}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
|
|
|
@co_author = CoAuthor.new(params[:co_author])
|
|
|
|
@co_author.name_id= current_user.id
|
|
|
|
|
2012-11-22 02:49:54 +00:00
|
|
|
if @co_author.save
|
2012-11-27 03:15:15 +00:00
|
|
|
render json: {success:true, msg: t('create.sucess.co_author')}.to_json
|
2012-11-21 06:52:26 +00:00
|
|
|
else
|
2012-11-26 07:45:51 +00:00
|
|
|
error_msg = @co_author.errors.full_messages.join("<br />")
|
|
|
|
render json: {success: false, msg: error_msg}.to_json
|
2012-11-20 17:56:30 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
|
|
|
@co_author = CoAuthor.find(params[:id])
|
|
|
|
|
2012-11-22 02:49:54 +00:00
|
|
|
if @co_author.update_attributes(params[:co_author])
|
2012-11-27 03:15:15 +00:00
|
|
|
render json: {success:true, msg: t('update.sucess.co_author')}.to_json
|
2012-11-22 02:49:54 +00:00
|
|
|
else
|
2012-11-26 07:45:51 +00:00
|
|
|
error_msg = @co_author.errors.full_messages.join("<br />")
|
|
|
|
render json: {success: false, msg: error_msg}.to_json
|
2012-11-20 17:56:30 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-11-30 16:21:49 +00:00
|
|
|
def destroy
|
2012-11-20 17:56:30 +00:00
|
|
|
@co_author = CoAuthor.find(params[:id])
|
|
|
|
@co_author.destroy
|
|
|
|
|
2012-12-03 06:04:23 +00:00
|
|
|
render :json => {success: true, msg: "Co-author deleted successfully!"}
|
2012-11-23 02:44:48 +00:00
|
|
|
end
|
2012-11-20 17:56:30 +00:00
|
|
|
end
|