Class: Imap::Backup::Serializer::Appender

Inherits:
Object
  • Object
show all
Defined in:
lib/imap/backup/serializer/appender.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(folder:, imap:, mbox:) ⇒ Appender

Returns a new instance of Appender.



9
10
11
12
13
# File 'lib/imap/backup/serializer/appender.rb', line 9

def initialize(folder:, imap:, mbox:)
  @folder = folder
  @imap = imap
  @mbox = mbox
end

Instance Attribute Details

#folderObject (readonly)

Returns the value of attribute folder.



6
7
8
# File 'lib/imap/backup/serializer/appender.rb', line 6

def folder
  @folder
end

#imapObject (readonly)

Returns the value of attribute imap.



5
6
7
# File 'lib/imap/backup/serializer/appender.rb', line 5

def imap
  @imap
end

#mboxObject (readonly)

Returns the value of attribute mbox.



7
8
9
# File 'lib/imap/backup/serializer/appender.rb', line 7

def mbox
  @mbox
end

Instance Method Details

#run(uid:, message:, flags:) ⇒ Object



15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/imap/backup/serializer/appender.rb', line 15

def run(uid:, message:, flags:)
  raise "Can't add messages without uid_validity" if !imap.uid_validity

  uid = uid.to_i
  existing = imap.get(uid)
  if existing
    Logger.logger.debug(
      "[#{folder}] message #{uid} already downloaded - skipping"
    )
    return
  end

  do_append uid, message, flags
end