Class: Cakewalk::Network

Inherits:
Object
  • Object
show all
Defined in:
lib/cakewalk/network.rb

Overview

This class allows querying the IRC network for its name and used server software as well as certain non-standard behaviour.

Since:

  • 2.0.0

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, ircd) ⇒ Network

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Note:

The user should not create instances of this class but use IRC#network instead.

Returns a new instance of Network.

Parameters:

  • name (Symbol)
  • ircd (Symbol)

Since:

  • 2.0.0



33
34
35
36
37
# File 'lib/cakewalk/network.rb', line 33

def initialize(name, ircd)
  @name         = name
  @ircd         = ircd
  @capabilities = []
end

Instance Attribute Details

#capabilitiesArray<Symbol>

network.

Returns:

  • (Array<Symbol>)

    All client capabilities supported by the

Since:

  • 2.0.0



23
24
25
# File 'lib/cakewalk/network.rb', line 23

def capabilities
  @capabilities
end

#ircdSymbol

Returns The server software used by the network. :unknown if the software couldn’t be detected.

Returns:

  • (Symbol)

    The server software used by the network. :unknown if the software couldn’t be detected.

Since:

  • 2.0.0



16
17
18
# File 'lib/cakewalk/network.rb', line 16

def ircd
  @ircd
end

#nameSymbol

Returns The name of the network. :unknown if the network couldn’t be detected.

Returns:

  • (Symbol)

    The name of the network. :unknown if the network couldn’t be detected.

Since:

  • 2.0.0



9
10
11
# File 'lib/cakewalk/network.rb', line 9

def name
  @name
end

Instance Method Details

#default_messages_per_secondNumeric

Returns The messages per second value that best suits the current network.

Returns:

  • (Numeric)

    The messages per second value that best suits the current network

Since:

  • 2.0.0



69
70
71
72
73
74
75
76
# File 'lib/cakewalk/network.rb', line 69

def default_messages_per_second
  case @name
  when :freenode
    0.7
  else
    0.5
  end
end

#default_server_queue_sizeInteger

Returns The server queue size value that best suits the current network.

Returns:

  • (Integer)

    The server queue size value that best suits the current network

Since:

  • 2.0.0



80
81
82
83
84
85
86
87
# File 'lib/cakewalk/network.rb', line 80

def default_server_queue_size
  case @name
  when :quakenet
    40
  else
    10
  end
end

#owner_list_modeString?

Returns The mode used for getting the list of channel owners, if any.

Returns:

  • (String, nil)

    The mode used for getting the list of channel owners, if any

Since:

  • 2.0.0



41
42
43
# File 'lib/cakewalk/network.rb', line 41

def owner_list_mode
  return "q" if @ircd == :unreal || @ircd == :inspircd
end

#quiet_list_modeString?

Returns The mode used for getting the list of channel quiets, if any.

Returns:

  • (String, nil)

    The mode used for getting the list of channel quiets, if any

Since:

  • 2.0.0



47
48
49
# File 'lib/cakewalk/network.rb', line 47

def quiet_list_mode
  return "q" if @ircd == :"ircd-seven"
end

#unknown_ircd?Boolean

Returns True if we do not know which software the server is running.

Returns:

  • (Boolean)

    True if we do not know which software the server is running

Since:

  • 2.0.0



59
60
61
# File 'lib/cakewalk/network.rb', line 59

def unknown_ircd?
  @ircd == :unknown
end

#unknown_network?Boolean

Returns True if we do not know which network we are connected to.

Returns:

  • (Boolean)

    True if we do not know which network we are connected to

Since:

  • 2.0.0



53
54
55
# File 'lib/cakewalk/network.rb', line 53

def unknown_network?
  @name == :unknown
end