Class: Cinch::Configuration

Inherits:
OpenStruct
  • Object
show all
Defined in:
lib/cinch/configuration.rb,
lib/cinch/configuration/bot.rb,
lib/cinch/configuration/dcc.rb,
lib/cinch/configuration/ssl.rb,
lib/cinch/configuration/sasl.rb,
lib/cinch/configuration/plugins.rb,
lib/cinch/configuration/timeouts.rb

Overview

Since:

  • 2.0.0

Direct Known Subclasses

Bot, DCC, Plugins, SASL, SSL, Timeouts

Defined Under Namespace

Classes: Bot, DCC, Plugins, SASL, SSL, Timeouts

Constant Summary collapse

KnownOptions =

Since:

  • 2.0.0

[]

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(base = nil) ⇒ Configuration

Returns a new instance of Configuration.

Since:

  • 2.0.0



13
14
15
16
# File 'lib/cinch/configuration.rb', line 13

def initialize(base = nil)
  base ||= self.class.default_config
  super(base)
end

Class Method Details

.default_configHash

Generate a default configuration.

Returns:

  • (Hash)

Since:

  • 2.0.0



9
10
11
# File 'lib/cinch/configuration.rb', line 9

def self.default_config
  {}
end

Instance Method Details

#[](key) ⇒ Object

Raises:

  • (ArgumentError)

Since:

  • 2.0.0



23
24
25
26
27
# File 'lib/cinch/configuration.rb', line 23

def [](key)
  # FIXME also adjust method_missing
  raise ArgumentError, "Unknown option #{key}" unless self.class::KnownOptions.include?(key)
  @table[key]
end

#[]=(key, value) ⇒ Object

Raises:

  • (ArgumentError)

Since:

  • 2.0.0



29
30
31
32
33
# File 'lib/cinch/configuration.rb', line 29

def []=(key, value)
  # FIXME also adjust method_missing
  raise ArgumentError, "Unknown option #{key}" unless self.class::KnownOptions.include?(key)
  modifiable[new_ostruct_member(key)] = value
end

#load(new_config, from_default = false)

This method returns an undefined value.

Loads a configuration from a hash by merging the hash with either the current configuration or the default configuration.

Parameters:

  • new_config (Hash)

    The configuration to load

  • from_default (Boolean) (defaults to: false)

    If true, the configuration won’t be merged with the currently set up configuration (by prior calls to #load or Bot#configure) but with the default configuration.

Since:

  • 2.0.0



44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# File 'lib/cinch/configuration.rb', line 44

def load(new_config, from_default = false)
  if from_default
    @table = self.class.default_config
  end

  new_config.each do |option, value|
    if value.is_a?(Hash)
      if self[option].is_a?(Configuration)
        self[option].load(value)
      else
        # recursive merging is handled by subclasses like
        # Configuration::Plugins
        self[option] = value
      end
    else
      self[option] = value
    end
  end
end

#load!(new_config)

This method returns an undefined value.

Like #load but always uses the default configuration

Parameters:

  • new_config (Hash)

    (see #load_config)

See Also:

Since:

  • 2.0.0



69
70
71
# File 'lib/cinch/configuration.rb', line 69

def load!(new_config)
  load(new_config, true)
end

#to_hHash

Returns:

  • (Hash)

Since:

  • 2.0.0



19
20
21
# File 'lib/cinch/configuration.rb', line 19

def to_h
  @table.clone
end