Class: ImagesController

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

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, #cumulative_projects_created_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_login_link, #project_matches, #project_tag, #projects_list, #projects_search_form, #sound_cumulative_gb_per_year, #sound_gb_per_year, #taxonworks_classification, #week_in_review_graphs

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_image_file_shaObject



63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# File 'app/controllers/images_controller.rb', line 63

def api_image_file_sha
  @image = Image
    .where(project_id: sessions_current_project_id)
    .find_by(image_file_fingerprint: params[:sha])

  if @image.present?
    file_path = @image.image_file.path
    send_file(
      file_path,
      type: @image.image_file_content_type,
      disposition: 'inline',
      filename: @image.image_file_file_name
    )
  else
    render plain: 'Image not found.', status: :not_found
  end
end

#api_image_inventoryObject

GET /api/v1/otus/:id/inventory/images

- routed here to take advantage of Pagination
Fairly limited functionality now.


26
27
28
29
30
31
32
33
34
35
# File 'app/controllers/images_controller.rb', line 26

def api_image_inventory
  @images = ::Queries::Image::Filter.new(
    params.permit(
      :otu_id,
      :otu_scope,
      otu_id: [],
      otu_scope: [])
  ).all.page(params[:page]).per(params[:per])
  render '/images/api/v1/index'
end

#api_image_show_shaObject



81
82
83
84
85
86
87
88
89
90
91
92
93
# File 'app/controllers/images_controller.rb', line 81

def api_image_show_sha
  @image = Image
    .where(project_id: sessions_current_project_id)
    .find_by(image_file_fingerprint: params[:sha])

  if @image.present?
    s = Shared::Api.host
    token = Project.find(sessions_current_project_id).api_access_token
    render "#{s}/api/v1/images/#{@image.id}?project_token=#{token}"
  else
    render plain: 'Image not found.', status: :not_found
  end
end

#api_indexObject

GET /api/v1/images



43
44
45
46
47
48
# File 'app/controllers/images_controller.rb', line 43

def api_index
  @images = Queries::Image::Filter.new(params.merge!(api: true)).all
    .where(project_id: sessions_current_project_id)
    .page(params[:page]).per(params[:per])
  render '/images/api/v1/index'
end

#api_scale_to_boxObject

GET ‘images/:id/scale_to_box/:x/:y/:width/:height/:box_width/:box_height’



195
196
197
# File 'app/controllers/images_controller.rb', line 195

def api_scale_to_box
  send_data Image.scaled_to_box_blob(params), type: 'image/jpg', disposition: 'inline'
end

#api_showObject

GET /api/v1/images/:id



51
52
53
54
55
56
57
58
59
60
61
# File 'app/controllers/images_controller.rb', line 51

def api_show
  id = params[:id]
  if id =~ (/\A\d+\z/)
    @image = Image.where(project_id: sessions_current_project_id).find_by(id:)
  else
    @image = Image.where(project_id: sessions_current_project_id).find_by(image_file_fingerprint: id)
  end

  render plain: 'Not found. You may need to add a &project_token= param to the URL currently in your address bar to access these data. See https://api.taxonworks.org/ for more.', status: :not_found and return if @image.nil?
  render '/images/api/v1/show'
end

#autocompleteObject



167
168
169
# File 'app/controllers/images_controller.rb', line 167

def autocomplete
  @images = Queries::Image::Autocomplete.new(params[:term], project_id: sessions_current_project_id).autocomplete
end

#createObject

POST /images POST /images.json



106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# File 'app/controllers/images_controller.rb', line 106

def create
  @image = Image.deduplicate_create(image_params)
  respond_to do |format|
    if @image.persisted?
      format.html { redirect_to @image, notice: 'Identical image exists.' }
      format.json { render :show, status: :ok, location: @image }
    else
      if @image.save
        format.html { redirect_to @image, notice: 'Image was successfully created.' }
        format.json { render :show, status: :created, location: @image }
      else
        format.html { render :new }
        format.json { render json: @image.errors, status: :unprocessable_entity }
      end
    end
  end
end

#destroyObject

DELETE /images/1 DELETE /images/1.json



140
141
142
143
144
145
146
147
148
149
150
151
152
# File 'app/controllers/images_controller.rb', line 140

def destroy
  if @image.destroy
    respond_to do |format|
      format.html { redirect_to images_url, notice: 'Image was successfully destroyed.' }
      format.json { head :no_content }
    end
  else
    respond_to do |format|
      format.html { redirect_to images_url, notice: @image.errors.full_messages.join('. ') }
      format.json { head :no_content, status: :im_used }
    end
  end
end

#downloadObject

GET /images/download



172
173
174
175
176
177
# File 'app/controllers/images_controller.rb', line 172

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

#editObject

GET /images/1/edit



101
102
# File 'app/controllers/images_controller.rb', line 101

def edit
end

#extractObject

GET /images/:id/extract/:x/:y/:height/:width



180
181
182
# File 'app/controllers/images_controller.rb', line 180

def extract
  send_data Image.cropped_blob(params), type: 'image/jpg', disposition: 'inline'
end

#image_paramsObject (private)



243
244
245
246
247
248
249
250
251
# File 'app/controllers/images_controller.rb', line 243

def image_params
  params.require(:image).permit(
    :image_file, :rotate,
    :pixels_to_centimeter,
    :filename_depicts_object,
    citations_attributes: [:id, :is_original, :_destroy, :source_id, :pages, :citation_object_id, :citation_object_type],
    sled_image_attributes: [:id, :_destroy, :metadata, :object_layout]
  )
end

#indexObject

GET /images GET /images.json



9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'app/controllers/images_controller.rb', line 9

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

#listObject



154
155
156
# File 'app/controllers/images_controller.rb', line 154

def list
  @images = Image.with_project_id(sessions_current_project_id).order(:id).page(params[:page]) #.per(10) #.per(3)
end

#newObject

GET /images/new



96
97
98
# File 'app/controllers/images_controller.rb', line 96

def new
  @image = Image.new
end

#ocrObject

GET /images/:id/ocr/:x/:y/:height/:width



200
201
202
203
204
205
206
# File 'app/controllers/images_controller.rb', line 200

def ocr
  tempfile = Tempfile.new(['ocr', '.jpg'], "#{Rails.root.join("public/images/tmp")}", encoding: 'utf-8')
  tempfile.write(Image.cropped_blob(params).force_encoding('utf-8'))
  tempfile.rewind

  render json: {text: RTesseract.new(tempfile.path).to_s&.strip}
end

#regenerate_derivativeObject

!! This is a kludge until we get active storage working PATCH /images/123/regenerate_derivative



223
224
225
226
227
228
229
# File 'app/controllers/images_controller.rb', line 223

def regenerate_derivative
  begin
    @image.image_file.reprocess!
    flash[:notice] = 'Image derivatives regenerated.'
  end
  render :show
end

#rotateObject

!! This is a kludge until we get active storage working PATCH /images/123/rotate



210
211
212
213
214
215
216
217
218
219
# File 'app/controllers/images_controller.rb', line 210

def rotate
  begin
    @image.rotate = params.require(:image).require(:rotate)
    @image.image_file.reprocess!
    flash[:notice] = 'Image rotated.'
  rescue ActionController::ParameterMissing
    flash[:notice] ='Select a rotation option.'
  end
  render :show
end

#scaleObject

GET /images/:id/extract/:x/:y/:height/:width/:new_height/:new_width



185
186
187
# File 'app/controllers/images_controller.rb', line 185

def scale
  send_data Image.resized_blob(params), type: 'image/jpg', disposition: 'inline'
end

#scale_to_boxObject

GET ‘images/:id/scale_to_box/:x/:y/:width/:height/:box_width/:box_height’



190
191
192
# File 'app/controllers/images_controller.rb', line 190

def scale_to_box
  send_data Image.scaled_to_box_blob(params), type: 'image/jpg', disposition: 'inline'
end

#searchObject

TODO: remove for /images.json



159
160
161
162
163
164
165
# File 'app/controllers/images_controller.rb', line 159

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

#select_optionsObject

GET /images/select_options?target=TaxonDetermination



232
233
234
# File 'app/controllers/images_controller.rb', line 232

def select_options
  @images = Image.select_optimized(sessions_current_user_id, sessions_current_project_id, params.require(:target))
end

#set_imageObject (private)



238
239
240
241
# File 'app/controllers/images_controller.rb', line 238

def set_image
  @image = Image.with_project_id(sessions_current_project_id).find(params[:id])
  @recent_object = @image
end

#showObject

GET /images/1 GET /images/1.json



39
40
# File 'app/controllers/images_controller.rb', line 39

def show
end

#updateObject

PATCH/PUT /images/1 PATCH/PUT /images/1.json



126
127
128
129
130
131
132
133
134
135
136
# File 'app/controllers/images_controller.rb', line 126

def update
  respond_to do |format|
    if @image.update(image_params)
      format.html { redirect_to @image, notice: 'Image was successfully updated.' }
      format.json { render :show, status: :ok, location: @image }
    else
      format.html { render :edit }
      format.json { render json: @image.errors, status: :unprocessable_entity }
    end
  end
end