Class: AEMO::MSATS Abstract
Overview
AEMO::MSATS
Constant Summary collapse
- HEADERS =
Globally set request headers
{ 'User-Agent' => 'Ruby.AEMO.MSATS.Api', 'Accept' => 'text/xml', 'Content-Type' => 'text/xml' }.freeze
Class Attribute Summary collapse
Class Method Summary collapse
-
.authorize(participant_id, username, password) ⇒ Hash
Sets the authentication credentials in a class variable.
-
.c4(nmi, from_date, to_date, as_at_date, options = {}) ⇒ Hash
Single NMI Master (C4) Report /C4/PARTICIPANT_IDENTIFIER?transactionId=XXX&nmi=XXX&checksum=X&type=XXX&reason=XXX.
-
.can_authenticate? ⇒ Boolean
Check if credentials are available to use.
-
.msats_limits(options = {}) ⇒ Hash
MSATS Limits /MSATSLimits/PARTICIPANT_IDENTIFIER?transactionId=XXX.
-
.nmi_detail(nmi, options = {}) ⇒ Hash
NMI Detail /NMIDetail/PARTICIPANT_IDENTIFIER?transactionId=XXX&nmi=XXX&checksum=X&type=XXX&reason=XXX.
-
.nmi_discovery_by_address(jurisdiction_code, options = {}) ⇒ Hash
NMI Discovery - By Address.
-
.nmi_discovery_by_delivery_point_identifier(jurisdiction_code, delivery_point_identifier, options = {}) ⇒ Hash
NMI Discovery - By Delivery Point Identifier.
-
.nmi_discovery_by_meter_serial_number(jurisdiction_code, meter_serial_number, options = {}) ⇒ Hash
NMI Discovery - By Meter Serial Numner.
-
.system_status(options = {}) ⇒ Hash
Participant System Status /ParticipantSystemStatus/PARTICIPANT_IDENTIFIER?transactionId=XXX.
-
.transaction_id ⇒ String
Method for creating a unique transaction id.
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ MSATS
constructor
Instance Methods.
Constructor Details
#initialize(options = {}) ⇒ MSATS
Instance Methods
273 274 275 276 277 278 279 |
# File 'lib/aemo/msats.rb', line 273 def initialize( = {}) @auth = { username: nil, password: nil } @auth[:username] = [:username] if [:username].is_a?(String) @auth[:password] = [:password] if [:password].is_a?(String) @participant_id = [:participant_id] if [:participant_id].is_a?(String) end |
Class Attribute Details
.auth ⇒ Object
34 35 36 |
# File 'lib/aemo/msats.rb', line 34 def auth @auth end |
.participant_id ⇒ Object
34 35 36 |
# File 'lib/aemo/msats.rb', line 34 def participant_id @participant_id end |
Class Method Details
.authorize(participant_id, username, password) ⇒ Hash
Sets the authentication credentials in a class variable.
252 253 254 255 |
# File 'lib/aemo/msats.rb', line 252 def (participant_id, username, password) @participant_id = participant_id @auth = { username:, password: } end |
.c4(nmi, from_date, to_date, as_at_date, options = {}) ⇒ Hash
Single NMI Master (C4) Report /C4/PARTICIPANT_IDENTIFIER?transactionId=XXX&nmi=XXX&checksum=X&type=XXX&reason=XXX
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/aemo/msats.rb', line 43 def c4(nmi, from_date, to_date, as_at_date, = {}) nmi = AEMO::NMI.new(nmi) if nmi.is_a?(String) from_date = Date.parse(from_date) if from_date.is_a?(String) to_date = Date.parse(to_date) if to_date.is_a?(String) as_at_date = Date.parse(as_at_date) if as_at_date.is_a?(String) [:participantId] ||= nil [:roleId] ||= nil [:inittransId] ||= nil query = { transactionId: transaction_id, # NOTE: AEMO has case sensitivity but no consistency across requests. NMI: nmi.nmi, fromDate: from_date, toDate: to_date, asatDate: as_at_date, participantId: @participant_id, roleId: [:role_id], inittransId: [:init_trans_id] } response = get("/C4/#{@participant_id}", basic_auth: @auth, headers: HEADERS, query:, verify: ([:verify_ssl] != false)) if response.response.code == '200' response.parsed_response['aseXML']['Transactions']['Transaction']['ReportResponse']['ReportResults'] else response end end |
.can_authenticate? ⇒ Boolean
Check if credentials are available to use
260 261 262 |
# File 'lib/aemo/msats.rb', line 260 def can_authenticate? !(@participant_id.nil? || @auth[:username].nil? || @auth[:password].nil?) end |
.msats_limits(options = {}) ⇒ Hash
MSATS Limits /MSATSLimits/PARTICIPANT_IDENTIFIER?transactionId=XXX
78 79 80 81 82 83 84 85 86 87 88 89 |
# File 'lib/aemo/msats.rb', line 78 def msats_limits( = {}) query = { transactionId: transaction_id } response = get("/MSATSLimits/#{@participant_id}", basic_auth: @auth, headers: HEADERS, query:, verify: ([:verify_ssl] != false)) if response.response.code == '200' response.parsed_response['aseXML']['Transactions']['Transaction']['ReportResponse']['ReportResults'] else response end end |
.nmi_detail(nmi, options = {}) ⇒ Hash
NMI Detail /NMIDetail/PARTICIPANT_IDENTIFIER?transactionId=XXX&nmi=XXX&checksum=X&type=XXX&reason=XXX
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 |
# File 'lib/aemo/msats.rb', line 207 def nmi_detail(nmi, = {}) nmi = AEMO::NMI.new(nmi) if nmi.is_a?(String) [:type] ||= nil [:reason] ||= nil query = { transactionId: transaction_id, nmi: nmi.nmi, checksum: nmi.checksum, type: [:type], reason: [:reason] } response = get("/NMIDetail/#{@participant_id}", basic_auth: @auth, headers: HEADERS, query:, verify: ([:verify_ssl] != false)) if response.response.code == '200' response.parsed_response['aseXML']['Transactions']['Transaction']['NMIStandingDataResponse']['NMIStandingData'] else response end end |
.nmi_discovery_by_address(jurisdiction_code, options = {}) ⇒ Hash
NMI Discovery - By Address
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 |
# File 'lib/aemo/msats.rb', line 153 def nmi_discovery_by_address(jurisdiction_code, = {}) raise ArgumentError, 'jurisdiction_code is not valid' unless %w[ACT NEM NSW QLD SA VIC TAS].include?(jurisdiction_code) [:building_or_property_name] ||= nil [:location_descriptor] ||= nil [:lot_number] ||= nil [:flat_or_unit_number] ||= nil [:flat_or_unit_type] ||= nil [:floor_or_level_number] ||= nil [:floor_or_level_type] ||= nil [:house_number] ||= nil [:house_number_suffix] ||= nil [:street_name] ||= nil [:street_suffix] ||= nil [:street_type] ||= nil [:suburb_or_place_or_locality] ||= nil [:postcode] ||= nil [:state_or_territory] ||= jurisdiction_code query = { transactionId: transaction_id, jurisdictionCode: jurisdiction_code, buildingOrPropertyName: [:building_or_property_name], locationDescriptor: [:location_descriptor], lotNumber: [:lot_number], flatOrUnitNumber: [:flat_or_unit_number], flatOrUnitType: [:flat_or_unit_type], floorOrLevelNumber: [:floor_or_level_number], floorOrLevelType: [:floor_or_level_type], houseNumber: [:house_number], houseNumberSuffix: [:house_number_suffix], streetName: [:street_name], streetSuffix: [:street_suffix], streetType: [:street_type], suburbOrPlaceOrLocality: [:suburb_or_place_or_locality], postcode: [:postcode], stateOrTerritory: [:state_or_territory] } response = get("/NMIDiscovery/#{@participant_id}", basic_auth: @auth, headers: HEADERS, query:, verify: ([:verify_ssl] != false)) if response.response.code == '200' myresponse = response.parsed_response['aseXML']['Transactions']['Transaction']['NMIDiscoveryResponse']['NMIStandingData'] myresponse.is_a?(Hash) ? [myresponse] : myresponse else response end end |
.nmi_discovery_by_delivery_point_identifier(jurisdiction_code, delivery_point_identifier, options = {}) ⇒ Hash
NMI Discovery - By Delivery Point Identifier
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 |
# File 'lib/aemo/msats.rb', line 96 def nmi_discovery_by_delivery_point_identifier(jurisdiction_code, delivery_point_identifier, = {}) raise ArgumentError, 'jurisdiction_code is not valid' unless %w[ACT NEM NSW QLD SA VIC TAS].include?(jurisdiction_code) unless delivery_point_identifier.respond_to?('to_i') raise ArgumentError, 'delivery_point_identifier is not valid' end if delivery_point_identifier.to_i < 10_000_000 || delivery_point_identifier.to_i > 99_999_999 raise ArgumentError, 'delivery_point_identifier is not valid' end query = { transactionId: transaction_id, jurisdictionCode: jurisdiction_code, deliveryPointIdentifier: delivery_point_identifier.to_i } response = get("/NMIDiscovery/#{@participant_id}", basic_auth: @auth, headers: HEADERS, query:, verify: ([:verify_ssl] != false)) if response.response.code == '200' response.parsed_response['aseXML']['Transactions']['Transaction']['NMIDiscoveryResponse']['NMIStandingData'] else response end end |
.nmi_discovery_by_meter_serial_number(jurisdiction_code, meter_serial_number, options = {}) ⇒ Hash
NMI Discovery - By Meter Serial Numner
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
# File 'lib/aemo/msats.rb', line 129 def nmi_discovery_by_meter_serial_number(jurisdiction_code, meter_serial_number, = {}) raise ArgumentError, 'jurisdiction_code is not valid' unless %w[ACT NEM NSW QLD SA VIC TAS].include?(jurisdiction_code) query = { transactionId: transaction_id, jurisdictionCode: jurisdiction_code, meterSerialNumber: meter_serial_number.to_i } response = get("/NMIDiscovery/#{@participant_id}", basic_auth: @auth, headers: HEADERS, query:, verify: ([:verify_ssl] != false)) if response.response.code == '200' response.parsed_response['aseXML']['Transactions']['Transaction']['NMIDiscoveryResponse']['NMIStandingData'] else response end end |
.system_status(options = {}) ⇒ Hash
Participant System Status /ParticipantSystemStatus/PARTICIPANT_IDENTIFIER?transactionId=XXX
234 235 236 237 238 239 240 241 242 243 244 245 |
# File 'lib/aemo/msats.rb', line 234 def system_status( = {}) query = { transactionId: transaction_id } response = get("/ParticipantSystemStatus/#{@participant_id}", basic_auth: @auth, headers: HEADERS, query:, verify: ([:verify_ssl] != false)) if response.response.code == '200' response.parsed_response['aseXML']['Transactions']['Transaction']['ReportResponse']['ReportResults'] else response end end |
.transaction_id ⇒ String
Method for creating a unique transaction id
267 268 269 |
# File 'lib/aemo/msats.rb', line 267 def transaction_id Digest::SHA1.hexdigest(::Time.now.to_s)[0..35] end |