Class: Imap::Backup::Configuration

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

Constant Summary collapse

CONFIGURATION_DIRECTORY =
File.expand_path("~/.imap-backup")
VERSION =
"2.0".freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path: nil) ⇒ Configuration

Returns a new instance of Configuration.



21
22
23
# File 'lib/imap/backup/configuration.rb', line 21

def initialize(path: nil)
  @pathname = path || self.class.default_pathname
end

Instance Attribute Details

#pathnameObject (readonly)

Returns the value of attribute pathname.



11
12
13
# File 'lib/imap/backup/configuration.rb', line 11

def pathname
  @pathname
end

Class Method Details

.default_pathnameObject



13
14
15
# File 'lib/imap/backup/configuration.rb', line 13

def self.default_pathname
  File.join(CONFIGURATION_DIRECTORY, "config.json")
end

.exist?(path: nil) ⇒ Boolean

Returns:

  • (Boolean)


17
18
19
# File 'lib/imap/backup/configuration.rb', line 17

def self.exist?(path: nil)
  File.exist?(path || default_pathname)
end

Instance Method Details

#accountsObject



44
45
46
47
48
49
# File 'lib/imap/backup/configuration.rb', line 44

def accounts
  @accounts ||= begin
    ensure_loaded!
    data[:accounts].map { |data| Account.new(data) }
  end
end

#modified?Boolean

Returns:

  • (Boolean)


51
52
53
54
55
# File 'lib/imap/backup/configuration.rb', line 51

def modified?
  ensure_loaded!

  accounts.any? { |a| a.modified? || a.marked_for_deletion? }
end

#pathObject



25
26
27
# File 'lib/imap/backup/configuration.rb', line 25

def path
  File.dirname(pathname)
end

#saveObject



29
30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/imap/backup/configuration.rb', line 29

def save
  ensure_loaded!
  FileUtils.mkdir_p(path) if !File.directory?(path)
  make_private(path) if !windows?
  remove_modified_flags
  remove_deleted_accounts
  save_data = {
    version: VERSION,
    accounts: accounts.map(&:to_h)
  }
  File.open(pathname, "w") { |f| f.write(JSON.pretty_generate(save_data)) }
  FileUtils.chmod(0o600, pathname) if !windows?
  @data = nil
end