Class: Device::Setting

Inherits:
Object
  • Object
show all
Defined in:
lib/device/setting.rb

Constant Summary collapse

FILE_PATH =
"./main/config.dat"
HOST_PRODUCTION =
"switch.cloudwalk.io"
HOST_STAGING =
"switch-staging.cloudwalk.io"
HTTP_HOST_PRODUCTION =
"pos.cloudwalk.io"
HTTP_HOST_STAGING =
"pos-staging.cloudwalk.io"
HTTP_PORT =
"443"
PORT_TCP =
"31415"
PORT_TCP_SSL =
"31416"
DEFAULT =
{
  "host"                        => HOST_PRODUCTION,
  "host_port"                   => PORT_TCP_SSL,
  "ssl"                         => "1", #COMM
  "media_primary"               => "", #COMM
  "user"                        => "", #GPRS
  "apn_password"                => "", #GPRS
  "apn"                         => "", #GPRS
  "sim_pin"                     => "", #GPRS
  "sim_slot"                    => "0", #GPRS
  "sim_dual"                    => "0", #GPRS
  "wifi_password"               => "", #WIFI
  "authentication"              => "", #WIFI
  "essid"                       => "", #WIFI
  "bssid"                       => "", #WIFI
  "cipher"                      => "", #WIFI
  "mode"                        => "", #WIFI
  "channel"                     => "", #WIFI
  "media"                       => "", #COMM
  "ip"                          => "", #COMM
  "gateway"                     => "", #COMM
  "dns1"                        => "", #COMM
  "dns2"                        => "", #COMM
  "subnet"                      => "", #COMM
  "phone"                       => "", #PPOE
  "modem_speed"                 => "", #PPOE
  "logical_number"              => "", #SYS
  "network_configured"          => "", #SYS
  "touchscreen"                 => "", #SYS
  "environment"                 => "", #SYS
  "attach_gprs_timeout"         => "", #COMM
  "attach_tries"                => "", #COMM
  "notification_socket_timeout" => "", #SYS Period to create fiber
  "notification_timeout"        => "", #SYS Time to wait message to read
  "notification_interval"       => "", #SYS Check interval
  "notification_stream_timeout" => "", #SYS Time to wait stream message to read
  "cw_switch_version"           => "", #SYS
  "cw_pos_timezone"             => "", #SYS
  "tcp_recv_timeout"            => "14", #COMM
  "iso8583_recv_tries"          => "0", #COMM
  "iso8583_send_tries"          => "0", #COMM
  "crypto_dukpt_slot"           => "", #SYS
  "ctls"                        => "", #SYS
  "locale"                      => "pt-br", #SYS
  "heartbeat"                   => "", #SYS
  "boot"                        => "1", #SYS
  "company_name"                => "", #SYS
  "metadata_timestamp"          => "",
  "payment_channel_attempts"    => "0",
  "payment_channel_date"        => "",
  "transaction_http_enabled"    => "1",
  "transaction_http_host"       => HTTP_HOST_PRODUCTION,
  "transaction_http_port"       => HTTP_PORT
}

Class Attribute Summary collapse

Class Method Summary collapse

Class Attribute Details

.fileObject

Returns the value of attribute file.



69
70
71
# File 'lib/device/setting.rb', line 69

def file
  @file
end

Class Method Details

.attach_gprs_timeoutObject



151
152
153
154
# File 'lib/device/setting.rb', line 151

def self.attach_gprs_timeout
  value = (DaFunk::ParamsDat.file["attach_gprs_timeout"] || method_missing(:attach_gprs_timeout))
  value.to_s.empty? ? nil : value.to_s.to_i
end

.check_environment!Object



83
84
85
86
87
88
89
# File 'lib/device/setting.rb', line 83

def self.check_environment!
  if self.staging?
    self.to_staging!
  else
    self.to_production!
  end
end

.heartbeatObject



156
157
158
# File 'lib/device/setting.rb', line 156

def self.heartbeat
  DaFunk::ParamsDat.file["heartbeat"] || method_missing(:heartbeat)
end

.logical_numberObject



160
161
162
163
164
165
166
# File 'lib/device/setting.rb', line 160

def self.logical_number
  if self.file["logical_number"].to_s.strip.empty?
    self.file["logical_number"] = Device::System.serial
  else
    self.file["logical_number"]
  end
end

.method_missing(method, *args, &block) ⇒ Object



119
120
121
122
123
124
125
126
127
128
129
# File 'lib/device/setting.rb', line 119

def self.method_missing(method, *args, &block)
  setup unless @file
  param = method.to_s
  if @file[param]
    @file[param]
  elsif (param[-1..-1] == "=" && @file[param[0..-2]])
    @file[param[0..-2]] = args.first
  else
    super
  end
end

.payment_channel_set_attempts(time = nil, attempts = nil) ⇒ Object

helper



132
133
134
135
136
137
138
139
140
141
142
143
144
# File 'lib/device/setting.rb', line 132

def self.payment_channel_set_attempts(time = nil, attempts = nil)
  if time
    str = "%d-%02d-%02d"
    update_attributes({
      "payment_channel_date"     => (str % [time.year, time.mon, time.day]),
      "payment_channel_attempts" => (attempts || 1)
    })
  else
    update_attributes({
      "payment_channel_attempts" => (attempts || 1)
    })
  end
end

.production?Boolean

Returns:

  • (Boolean)


91
92
93
# File 'lib/device/setting.rb', line 91

def self.production?
  self.environment == "production"
end

.setupObject



77
78
79
80
81
# File 'lib/device/setting.rb', line 77

def self.setup
  @file = FileDb.new(FILE_PATH, DEFAULT)
  self.check_environment!
  @file
end

.staging?Boolean

Returns:

  • (Boolean)


95
96
97
# File 'lib/device/setting.rb', line 95

def self.staging?
  self.environment == "staging"
end

.tcp_recv_timeoutObject

Custom Attributes



147
148
149
# File 'lib/device/setting.rb', line 147

def self.tcp_recv_timeout
  DaFunk::ParamsDat.file["tcp_recv_timeout"] || method_missing(:tcp_recv_timeout)
end

.to_production!Object



99
100
101
102
103
104
105
# File 'lib/device/setting.rb', line 99

def self.to_production!
  if self.environment != "production"
    @file.update_attributes("company_name" => "", "environment" => "production", "host" => HOST_PRODUCTION, "transaction_http_host" => HTTP_HOST_PRODUCTION)
    return true
  end
  false
end

.to_staging!Object



107
108
109
110
111
112
113
# File 'lib/device/setting.rb', line 107

def self.to_staging!
  if self.environment != "staging"
    @file.update_attributes("company_name" => "", "environment" => "staging", "host" => HOST_STAGING, "transaction_http_host" => HTTP_HOST_STAGING)
    return true
  end
  false
end

.update_attributes(*args) ⇒ Object



115
116
117
# File 'lib/device/setting.rb', line 115

def self.update_attributes(*args)
  @file.update_attributes(*args)
end