Class: ActiveStorage::Attached::Changes::CreateOne

Inherits:
Object
  • Object
show all
Defined in:
activestorage/lib/active_storage/attached/changes/create_one.rb

Overview

:nodoc:

Direct Known Subclasses

CreateOneOfMany

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, record, attachable) ⇒ CreateOne

Returns a new instance of CreateOne.



10
11
12
13
# File 'activestorage/lib/active_storage/attached/changes/create_one.rb', line 10

def initialize(name, record, attachable)
  @name, @record, @attachable = name, record, attachable
  blob.identify_without_saving
end

Instance Attribute Details

#attachableObject (readonly)

Returns the value of attribute attachable.



8
9
10
# File 'activestorage/lib/active_storage/attached/changes/create_one.rb', line 8

def attachable
  @attachable
end

#nameObject (readonly)

Returns the value of attribute name.



8
9
10
# File 'activestorage/lib/active_storage/attached/changes/create_one.rb', line 8

def name
  @name
end

#recordObject (readonly)

Returns the value of attribute record.



8
9
10
# File 'activestorage/lib/active_storage/attached/changes/create_one.rb', line 8

def record
  @record
end

Instance Method Details

#analyzeObject



15
16
17
# File 'activestorage/lib/active_storage/attached/changes/create_one.rb', line 15

def analyze
  with_local_io { blob.analyze_without_saving unless blob.analyzed? } if analyze_immediately?
end

#attachmentObject



19
20
21
# File 'activestorage/lib/active_storage/attached/changes/create_one.rb', line 19

def attachment
  @attachment ||= find_or_build_attachment
end

#blobObject



23
24
25
# File 'activestorage/lib/active_storage/attached/changes/create_one.rb', line 23

def blob
  @blob ||= find_or_build_blob
end

#saveObject



33
34
35
36
# File 'activestorage/lib/active_storage/attached/changes/create_one.rb', line 33

def save
  record.public_send("#{name}_attachment=", attachment)
  record.public_send("#{name}_blob=", blob)
end

#uploadObject



27
28
29
30
31
# File 'activestorage/lib/active_storage/attached/changes/create_one.rb', line 27

def upload
  if io = open_attachable_io
    attachment.uploaded(io: io)
  end
end