Class: LabwareController
Overview
Handles viewing Labware information
Constant Summary
FlashTruncation::STRING_OVERHEAD
Instance Method Summary
collapse
#block_api_access, #clean_params_from_check, #evil_parameter_hack!, #extract_header_info, #set_cache_disabled!
#max_flash_size, #truncate_flash, #truncate_flash_array
Instance Method Details
#destroy ⇒ Object
69
70
71
72
73
74
75
76
|
# File 'app/controllers/labware_controller.rb', line 69
def destroy
@asset.destroy
respond_to do |format|
format.html { redirect_to(assets_url) }
format.xml { head :ok }
end
end
|
#edit ⇒ Object
40
41
42
|
# File 'app/controllers/labware_controller.rb', line 40
def edit
@valid_purposes_options = @asset.compatible_purposes.pluck(:name, :id)
end
|
#find_by_barcode ⇒ Object
143
|
# File 'app/controllers/labware_controller.rb', line 143
def find_by_barcode; end
|
#history ⇒ Object
44
45
46
47
48
49
50
|
# File 'app/controllers/labware_controller.rb', line 44
def history
respond_to do |format|
format.html
format.xml { @request.events.to_xml }
format.json { @request.events.to_json }
end
end
|
#index ⇒ Object
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# File 'app/controllers/labware_controller.rb', line 8
def index
if params[:study_id]
@study = Study.find(params[:study_id])
@assets = @study.assets_through_aliquots.order(:name).page(params[:page])
else
@assets = Labware.page(params[:page])
end
respond_to do |format|
format.html
if params[:study_id]
format.xml { render xml: Study.find(params[:study_id]).assets_through_requests.to_xml }
elsif params[:sample_id]
format.xml { render xml: Sample.find(params[:sample_id]).assets.to_xml }
elsif params[:asset_id]
@asset = Labware.find(params[:asset_id])
format.xml do
render xml: [{ 'relations' => { 'parents' => @asset.parents, 'children' => @asset.children } }].to_xml
end
end
end
end
|
#lab_view ⇒ Object
145
146
147
148
149
150
151
152
153
154
155
156
157
|
# File 'app/controllers/labware_controller.rb', line 145
def lab_view
barcode = params.fetch(:barcode, '').strip
if barcode.blank?
redirect_to action: 'find_by_barcode'
nil
else
@asset = Labware.find_from_barcode(barcode)
if @asset.nil?
redirect_to action: 'find_by_barcode', error: "Unable to find anything with this barcode: #{barcode}"
end
end
end
|
#lookup ⇒ Object
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
# File 'app/controllers/labware_controller.rb', line 122
def lookup
return unless params[:asset] && params[:asset][:barcode]
@assets = Labware.with_barcode(params[:asset][:barcode]).limit(50).page(params[:page])
if @assets.size == 1
redirect_to @assets.first
elsif @assets.empty?
flash.now[:error] = "No asset found with barcode #{params[:asset][:barcode]}"
respond_to do |format|
format.html { render action: 'lookup' }
format.xml { render xml: @assets.to_xml }
end
else
respond_to do |format|
format.html { render action: 'index' }
format.xml { render xml: @assets.to_xml }
end
end
end
|
#print ⇒ Object
83
84
85
86
87
88
89
90
91
|
# File 'app/controllers/labware_controller.rb', line 83
def print
if @asset.printable?
@printable = @asset.printable_target
@direct_printing = (@asset.printable_target == @asset)
else
flash[:error] = "#{@asset.display_name} does not have a barcode so a label can not be printed."
redirect_to labware_path(@asset)
end
end
|
#print_assets ⇒ Object
106
107
108
109
110
111
112
113
114
115
116
|
# File 'app/controllers/labware_controller.rb', line 106
def print_assets
print_job = LabelPrinter::PrintJob.new(params[:printer],
LabelPrinter::Label::AssetRedirect,
printables: @asset)
if print_job.execute
flash[:notice] = print_job.success
else
flash[:error] = print_job.errors.full_messages.join('; ')
end
redirect_to labware_path(@asset)
end
|
#print_labels ⇒ Object
93
94
95
96
97
98
99
100
101
102
103
104
|
# File 'app/controllers/labware_controller.rb', line 93
def print_labels
print_job = LabelPrinter::PrintJob.new(params[:printer],
LabelPrinter::Label::AssetRedirect,
printables: params[:printables])
if print_job.execute
flash[:notice] = print_job.success
else
flash[:error] = print_job.errors.full_messages.join('; ')
end
redirect_to phi_x_url
end
|
#show ⇒ Object
31
32
33
34
35
36
37
38
|
# File 'app/controllers/labware_controller.rb', line 31
def show
@source_plates = @asset.source_plates
respond_to do |format|
format.html
format.xml
format.json { render json: @asset }
end
end
|
#show_plate ⇒ Object
118
119
120
|
# File 'app/controllers/labware_controller.rb', line 118
def show_plate
@asset = Plate.find(params[:id])
end
|
#summary ⇒ Object
78
79
80
81
|
# File 'app/controllers/labware_controller.rb', line 78
def summary
@summary = UiHelper::Summary.new(per_page: 25, page: params[:page])
@summary.load_asset(@asset)
end
|
#update ⇒ Object
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# File 'app/controllers/labware_controller.rb', line 52
def update
respond_to do |format|
if @asset.update(labware_params.merge(params.to_unsafe_h.fetch(:lane, {})))
flash[:notice] = 'Labware was successfully updated.'
if params[:lab_view]
format.html { redirect_to(action: :lab_view, barcode: @asset.human_barcode) }
else
format.html { redirect_to(action: :show, id: @asset.id) }
format.xml { head :ok }
end
else
format.html { render action: 'edit' }
format.xml { render xml: @asset.errors, status: :unprocessable_entity }
end
end
end
|