Class: CitationsController

Inherits:
ApplicationController show all
Includes:
DataControllerConfiguration::ProjectDataControllerConfiguration
Defined in:
app/controllers/citations_controller.rb

Overview

require_dependency Rails.root.to_s + ‘/lib/queries/citation/filter’

Constant Summary

Constants included from ProjectsHelper

ProjectsHelper::CLASSIFIER, ProjectsHelper::CLASSIFIER_ANNOTATION

Instance Method Summary collapse

Methods included from DataControllerConfiguration::ProjectDataControllerConfiguration

#annotator_params

Methods included from RedirectHelper

#destroy_redirect

Methods included from RequestType

#json_request?

Methods included from LogRecent

#log_user_recent_route

Methods included from Cookies

#digest_cookie, #digested_cookie_exists?

Methods included from Whitelist

#whitelist_constantize

Methods included from ProjectsHelper

#cumulative_gb_per_year, #document_cumulative_gb_per_year, #document_gb_per_year, #gb_per_year, #image_cumulative_gb_per_year, #image_gb_per_year, #invalid_object, #project_classification, #project_link, #project_matches, #project_tag, #projects_list, #projects_search_form, #taxonworks_classification

Methods included from Api::Intercept

#intercept_api

Methods included from TokenAuthentication

#intercept_project, #intercept_user, #intercept_user_or_project, #project_token_authenticate, #token_authenticate

Instance Method Details

#api_indexObject



132
133
134
135
136
137
138
139
140
141
# File 'app/controllers/citations_controller.rb', line 132

def api_index
  @citations = Queries::Citation::Filter.new(params).all
    .where(project_id: sessions_current_project_id)
    .includes(:source)
    .order('sources.cached_nomenclature_date')
    .page(params[:page]).per(params[:per] || 50)

  @verbose_object = params[:verbose_object]
  render '/citations/api/v1/index'
end

#api_showObject



143
144
145
146
# File 'app/controllers/citations_controller.rb', line 143

def api_show
  @citation = Citation.where(project_id: sessions_current_project_id).find(params[:id])
  render '/citations/api/v1/show'
end

#autocompleteObject



111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# File 'app/controllers/citations_controller.rb', line 111

def autocomplete
  @citations = Citation.find_for_autocomplete(params.merge(project_id: sessions_current_project_id))
  data = @citations.collect do |t|
    lbl = render_to_string(partial: 'tag', locals: {citation: t})
    {id: t.id,
     label: lbl,
     response_values: {
       params[:method] => t.id
     },
     label_html: lbl
    }
  end

  render json: data
end

#base_paramsObject (private)



154
155
156
157
158
159
160
161
162
163
# File 'app/controllers/citations_controller.rb', line 154

def base_params
  [ :citation_object_type, :citation_object_id, :source_id, :pages, :is_original,
    :annotated_global_entity, :user_id,
    citation_topics_attributes: [
      :id, :_destroy, :pages, :topic_id,
      topic_attributes: [:id, :_destroy, :name, :definition]
    ],
    topics_attributes: [:name, :definition]
  ]
end

#batch_citation_paramsObject (private)



165
166
167
168
169
# File 'app/controllers/citations_controller.rb', line 165

def batch_citation_params
  p = base_params
  p.last.merge!(citation_object_id: [])
  params.require(:citation).permit(p)
end

#batch_createObject

/citations/batch_create.json?citation_object_type=Otu&citation_object_id[]=123&source_id=456



61
62
63
64
65
66
67
68
# File 'app/controllers/citations_controller.rb', line 61

def batch_create
  @citations = Citation.batch_create(batch_citation_params)
  if @citations.present?
    render '/citations/index'
  else
    render json: { failed: true, status: :unprocessable_entity}
  end
end

#citation_paramsObject (private)



171
172
173
# File 'app/controllers/citations_controller.rb', line 171

def citation_params
  params.require(:citation).permit(base_params)
end

#createObject

POST /citations POST /citations.json



47
48
49
50
51
52
53
54
55
56
57
58
# File 'app/controllers/citations_controller.rb', line 47

def create
  @citation = Citation.new(citation_params)
  respond_to do |format|
    if @citation.save
      format.html {redirect_to url_for(@citation.citation_object.metamorphosize), notice: 'Citation was successfully created.'}
      format.json {render :show, status: :created, location: @citation}
    else
      format.html {redirect_back(fallback_location: (request.referer || root_path), notice: 'Citation was NOT successfully created.')}
      format.json {render json: @citation.errors, status: :unprocessable_entity}
    end
  end
end

#destroyObject

DELETE /citations/1 DELETE /citations/1.json



86
87
88
89
90
91
92
93
94
95
96
97
# File 'app/controllers/citations_controller.rb', line 86

def destroy
  @citation.destroy
  respond_to do |format|
    if @citation.destroyed?
      format.html { destroy_redirect @citation, notice: 'Citation was successfully destroyed.' }
      format.json { head :no_content }
    else
      format.html { destroy_redirect @citation, notice: 'Citation was not destroyed, ' + @citation.errors.full_messages.join('; ') }
      format.json { render json: @citation.errors, status: :unprocessable_entity }
    end
  end
end

#downloadObject

GET /citations/download



128
129
130
# File 'app/controllers/citations_controller.rb', line 128

def download
  send_data Export::Csv.generate_csv(Citation.where(project_id: sessions_current_project_id)), type: 'text', filename: "citations_#{DateTime.now}.tsv"
end

#editObject



31
32
33
# File 'app/controllers/citations_controller.rb', line 31

def edit
  @citation = Citation.find_by_id(params[:id]).metamorphosize
end

#indexObject

GET /citations GET /citations.json



11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'app/controllers/citations_controller.rb', line 11

def index
  respond_to do |format|
    format.html {
      @recent_objects = Citation.recent_from_project_id(sessions_current_project_id).order(updated_at: :desc).limit(10)
      render '/shared/data/all/index'
    }
    format.json {
      @citations = ::Queries::Citation::Filter.new(params).all
        .where(project_id: sessions_current_project_id)
        .eager_load(:source)
        .order(:source_id, :pages)
        .page(params[:page]).per(params[:per])
    }
  end
end

#listObject



99
100
101
# File 'app/controllers/citations_controller.rb', line 99

def list
  @citations = Citation.with_project_id(sessions_current_project_id).order(:citation_object_type).page(params[:page]) #.per(10) #.per(3)
end

#newObject



27
28
29
# File 'app/controllers/citations_controller.rb', line 27

def new
  @citation = Citation.new(citation_params)
end

#searchObject



103
104
105
106
107
108
109
# File 'app/controllers/citations_controller.rb', line 103

def search
  if params[:id].blank?
    redirect_to citations_path, alert: 'You must select an item from the list with a click or tab press before clicking show.'
  else
    redirect_to citation_path(params[:id])
  end
end

#set_citationObject (private)



150
151
152
# File 'app/controllers/citations_controller.rb', line 150

def set_citation
  @citation = Citation.with_project_id(sessions_current_project_id).find(params[:id])
end

#showObject

Presently only used in autocomplete



36
37
38
39
40
41
42
43
# File 'app/controllers/citations_controller.rb', line 36

def show
  respond_to do |format|
    format.html {
      redirect_to url_for(@citation.annotated_object.metamorphosize)
    }
    format.json {}
  end
end

#updateObject

PATCH/PUT /citations/1 PATCH/PUT /citations/1.json



72
73
74
75
76
77
78
79
80
81
82
# File 'app/controllers/citations_controller.rb', line 72

def update
  respond_to do |format|
    if @citation.update(citation_params)
      format.html {redirect_to url_for(@citation.citation_object.metamorphosize), notice: 'Citation was successfully updated.'}
      format.json {render :show, location: @citation}
    else
      format.html {redirect_back(fallback_location: (request.referer || root_path), notice: 'Citation was NOT successfully updated.')}
      format.json {render json: @citation.errors, status: :unprocessable_entity}
    end
  end
end