Class: Radiator::Api
Overview
Radiator::Api allows you to call remote methods to interact with the STEEM blockchain. The ‘Api` class is a shortened name for `Radiator::DatabaseApi`.
Examples:
api = Radiator::Api.new
response = api.get_dynamic_global_properties
virtual_supply = response.result.virtual_supply
… or …
api = Radiator::Api.new
virtual_supply = api.get_dynamic_global_properties do |prop|
prop.virtual_supply
end
If you need access to the ‘error` property, they can be accessed as follows:
api = Radiator::Api.new
response = api.get_dynamic_global_properties
if response.result.nil?
puts response.error
exit
end
virtual_supply = response.result.virtual_supply
… or …
api = Radiator::Api.new
virtual_supply = api.get_dynamic_global_properties do |prop, error|
if prop.nil?
puts error
exis
end
prop.virtual_supply
end
List of remote methods:
set_subscribe_callback
set_pending_transaction_callback
set_block_applied_callback
cancel_all_subscriptions
get_post_discussions_by_payout
get_comment_discussions_by_payout
get_discussions_by_trending
get_discussions_by_trending30
get_discussions_by_created
get_discussions_by_active
get_discussions_by_cashout
get_discussions_by_payout
get_discussions_by_votes
get_discussions_by_children
get_discussions_by_hot
get_discussions_by_feed
get_discussions_by_blog
get_discussions_by_comments
get_discussions_by_promoted
get_block_header
get_block
get_ops_in_block
get_state
get_trending_categories
get_best_categories
get_active_categories
get_recent_categories
get_config
get_dynamic_global_properties
get_chain_properties
get_feed_history
get_current_median_history_price
get_witness_schedule
get_hardfork_version
get_next_scheduled_hardfork
get_accounts
get_account_references
lookup_account_names
lookup_accounts
get_account_count
get_conversion_requests
get_account_history
get_owner_history
get_recovery_request
get_escrow
get_withdraw_routes
get_account_bandwidth
get_savings_withdraw_from
get_savings_withdraw_to
get_order_book
get_open_orders
get_liquidity_queue
get_transaction_hex
get_transaction
get_required_signatures
get_potential_signatures
get_active_votes
get_account_votes
get_content
get_content_replies
get_replies_by_last_update
get_witnesses
get_witness_by_account
get_witnesses_by_vote
lookup_witness_accounts
get_witness_count
get_active_witnesses
get_miner_queue
get_reward_fund
These methods and their characteristics are copied directly from methods marked as ‘database_api` in `steem-js`:
raw.githubusercontent.com/steemit/steem-js/master/src/api/methods.js
Direct Known Subclasses
AccountByKeyApi, AccountHistoryApi, BlockApi, ChainStatsApi, CondenserApi, DatabaseApi, FollowApi, MarketHistoryApi, NetworkBroadcastApi, Stream, TagApi
Constant Summary collapse
- DEFAULT_STEEM_URL =
'https://api.steemit.com'- DEFAULT_STEEM_FAILOVER_URLS =
[ DEFAULT_STEEM_URL, 'https://api.steemitstage.com', 'https://appbasetest.timcliff.com', 'https://api.steem.house', 'https://seed.bitcoiner.me', 'https://steemd.minnowsupportproject.org', 'https://steemd.privex.io', 'https://rpc.steemliberator.com', 'https://rpc.curiesteem.com', 'https://rpc.buildteam.io', 'https://steemd.pevo.science', 'https://rpc.steemviz.com', 'https://steemd.steemgigs.org' ]
- POST_HEADERS =
{ 'Content-Type' => 'application/json', 'User-Agent' => Radiator::AGENT_ID }
- HEALTH_URI =
'/health'
Class Method Summary collapse
- .apply_http_defaults(http, ssl_verify_mode) ⇒ Object
- .default_failover_urls(chain) ⇒ Object
- .default_url(chain) ⇒ Object
- .finalize(logger, hashie_logger) ⇒ Object
- .methods(api_name) ⇒ Object
- .methods_json_path ⇒ Object
Instance Method Summary collapse
- #api_name ⇒ Object
-
#get_blocks(block_number, &block) ⇒ Array
Get a specific block or range of blocks.
-
#initialize(options = {}) ⇒ Api
constructor
Cretes a new instance of Radiator::Api.
- #inspect ⇒ Object
- #method_missing(m, *args, &block) ⇒ Object
- #method_names ⇒ Object
- #respond_to_missing?(m, include_private = false) ⇒ Boolean
-
#shutdown ⇒ Object
Stops the persistant http connections.
- #stopped? ⇒ Boolean
Methods included from Utils
#debug, #error, #extract_signatures, #hexlify, #pakArr, #pakC, #pakHash, #pakI, #pakL!, #pakS, #pakStr, #pakc, #paks, #send_log, #unhexlify, #varint, #warning
Constructor Details
#initialize(options = {}) ⇒ Api
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 |
# File 'lib/radiator/api.rb', line 193 def initialize( = {}) @user = [:user] @password = [:password] @chain = [:chain] || :steem @url = [:url] || Api::default_url(@chain) @preferred_url = @url.dup @failover_urls = [:failover_urls] @debug = !![:debug] @max_requests = [:max_requests] || 30 @ssl_verify_mode = [:ssl_verify_mode] || OpenSSL::SSL::VERIFY_PEER @ssl_version = [:ssl_version] @self_logger = false @logger = if [:logger].nil? @self_logger = true Radiator.logger else [:logger] end @self_hashie_logger = false @hashie_logger = if [:hashie_logger].nil? @self_hashie_logger = true Logger.new(nil) else [:hashie_logger] end if @failover_urls.nil? @failover_urls = Api::default_failover_urls(@chain) - [@url] end @failover_urls = [@failover_urls].flatten.compact @preferred_failover_urls = @failover_urls.dup unless @hashie_logger.respond_to? :warn @hashie_logger = Logger.new(@hashie_logger) end @recover_transactions_on_error = if .keys.include? :recover_transactions_on_error [:recover_transactions_on_error] else true end @persist_error_count = 0 @persist = if .keys.include? :persist [:persist] else true end @reuse_ssl_sessions = if .keys.include? :reuse_ssl_sessions [:reuse_ssl_sessions] else true end if defined? Net::HTTP::Persistent::DEFAULT_POOL_SIZE @pool_size = [:pool_size] || Net::HTTP::Persistent::DEFAULT_POOL_SIZE end Hashie.logger = @hashie_logger @method_names = nil @uri = nil @http_id = nil @http_memo = {} @api_options = .dup.merge(chain: @chain) @api = nil @block_api = nil @backoff_at = nil @jussi_supported = [] end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(m, *args, &block) ⇒ Object
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 |
# File 'lib/radiator/api.rb', line 355 def method_missing(m, *args, &block) super unless respond_to_missing?(m) current_rpc_id = rpc_id method_name = [api_name, m].join('.') response = nil = if api_name == :condenser_api { jsonrpc: "2.0", method: method_name, params: args, id: current_rpc_id, } else rpc_args = if args.empty? {} else args.first end { jsonrpc: "2.0", method: method_name, params: rpc_args, id: current_rpc_id, } end tries = 0 = Time.now.utc loop do tries += 1 if tries > 5 && flappy? && !check_file_open? raise ApiError, 'PANIC: Out of file resources' end begin if tries > 1 && @recover_transactions_on_error && api_name == :network_broadcast_api signatures, exp = extract_signatures() if !!signatures && signatures.any? offset = [(exp - ).abs, 30].min if !!(response = recover_transaction(signatures, current_rpc_id, - offset)) response = Hashie::Mash.new(response) end end end if response.nil? response = request() response = if response.nil? error "No response, retrying ...", method_name elsif !response.kind_of? Net::HTTPSuccess warning "Unexpected response (code: #{response.code}): #{response.inspect}, retrying ...", method_name, true else detect_jussi(response) case response.code when '200' body = response.body response = JSON[body] if response['id'] != [:id] debug_payload(, body) if ENV['DEBUG'] == 'true' if !!response['id'] warning "Unexpected rpc_id (expected: #{[:id]}, got: #{response['id']}), retrying ...", method_name, true else # The node has broken the jsonrpc spec. warning "Node did not provide jsonrpc id (expected: #{[:id]}, got: nothing), retrying ...", method_name, true end if response.keys.include?('error') handle_error(response, , method_name, tries) end elsif response.keys.include?('error') handle_error(response, , method_name, tries) else Hashie::Mash.new(response) end when '400' then warning 'Code 400: Bad Request, retrying ...', method_name, true when '429' then warning 'Code 429: Too Many Requests, retrying ...', method_name, true when '502' then warning 'Code 502: Bad Gateway, retrying ...', method_name, true when '503' then warning 'Code 503: Service Unavailable, retrying ...', method_name, true when '504' then warning 'Code 504: Gateway Timeout, retrying ...', method_name, true else warning "Unknown code #{response.code}, retrying ...", method_name, true warning response end end end rescue Net::HTTP::Persistent::Error => e warning "Unable to perform request: #{e} :: #{!!e.cause ? "cause: #{e.cause.}" : ''}, retrying ...", method_name, true if e.cause.class == Net::HTTPMethodNotAllowed warning 'Node upstream is misconfigured.' drop_current_failover_url method_name end @persist_error_count += 1 rescue ConnectionPool::Error => e warning "Connection Pool Error (#{e.}), retrying ...", method_name, true rescue Errno::ECONNREFUSED => e warning 'Connection refused, retrying ...', method_name, true rescue Errno::EADDRNOTAVAIL => e warning 'Node not available, retrying ...', method_name, true rescue Errno::ECONNRESET => e warning "Connection Reset (#{e.}), retrying ...", method_name, true rescue Errno::EBUSY => e warning "Resource busy (#{e.}), retrying ...", method_name, true rescue Errno::ENETDOWN => e warning "Network down (#{e.}), retrying ...", method_name, true rescue Net::ReadTimeout => e warning 'Node read timeout, retrying ...', method_name, true rescue Net::OpenTimeout => e warning 'Node timeout, retrying ...', method_name, true rescue RangeError => e warning 'Range Error, retrying ...', method_name, true rescue OpenSSL::SSL::SSLError => e warning "SSL Error (#{e.}), retrying ...", method_name, true rescue SocketError => e warning "Socket Error (#{e.}), retrying ...", method_name, true rescue JSON::ParserError => e warning "JSON Parse Error (#{e.}), retrying ...", method_name, true drop_current_failover_url method_name if tries > 5 response = nil rescue ApiError => e warning "ApiError (#{e.}), retrying ...", method_name, true # rescue => e # warning "Unknown exception from request, retrying ...", method_name, true # warning e end if !!response @persist_error_count = 0 if !!block if api_name == :condenser_api return yield(response.result, response.error, response.id) else if defined?(response.result.size) && response.result.size == 0 return yield(nil, response.error, response.id) elsif ( defined?(response.result.size) && response.result.size == 1 && defined?(response.result.values) ) return yield(response.result.values.first, response.error, response.id) else return yield(response.result, response.error, response.id) end end else return response end end backoff end # loop end |
Class Method Details
.apply_http_defaults(http, ssl_verify_mode) ⇒ Object
558 559 560 561 562 563 564 |
# File 'lib/radiator/api.rb', line 558 def self.apply_http_defaults(http, ssl_verify_mode) http.read_timeout = 10 http.open_timeout = 10 http.verify_mode = ssl_verify_mode http.ssl_timeout = 30 if defined? http.ssl_timeout http end |
.default_failover_urls(chain) ⇒ Object
171 172 173 174 175 176 |
# File 'lib/radiator/api.rb', line 171 def self.default_failover_urls(chain) case chain.to_sym when :steem then DEFAULT_STEEM_FAILOVER_URLS else; raise ApiError, "Unsupported chain: #{chain}" end end |
.default_url(chain) ⇒ Object
164 165 166 167 168 169 |
# File 'lib/radiator/api.rb', line 164 def self.default_url(chain) case chain.to_sym when :steem then DEFAULT_STEEM_URL else; raise ApiError, "Unsupported chain: #{chain}" end end |
.finalize(logger, hashie_logger) ⇒ Object
876 877 878 879 880 881 882 883 884 885 886 |
# File 'lib/radiator/api.rb', line 876 def self.finalize(logger, hashie_logger) proc { if !!logger && defined?(logger.close) && !logger.closed? logger.close end if !!hashie_logger && defined?(hashie_logger.close) && !hashie_logger.closed? hashie_logger.close end } end |
.methods(api_name) ⇒ Object
551 552 553 554 555 556 |
# File 'lib/radiator/api.rb', line 551 def self.methods(api_name) @methods ||= {} @methods[api_name] ||= JSON[File.read methods_json_path].map do |e| e if e['api'].to_sym == api_name end.compact.freeze end |
.methods_json_path ⇒ Object
547 548 549 |
# File 'lib/radiator/api.rb', line 547 def self.methods_json_path @methods_json_path ||= "#{File.dirname(__FILE__)}/methods.json" end |
Instance Method Details
#api_name ⇒ Object
345 346 347 |
# File 'lib/radiator/api.rb', line 345 def api_name :condenser_api end |
#get_blocks(block_number, &block) ⇒ Array
286 287 288 289 290 291 292 293 294 295 296 297 298 |
# File 'lib/radiator/api.rb', line 286 def get_blocks(block_number, &block) block_number = [*(block_number)].flatten if !!block block_number.each do |i| yield block_api.get_block(block_num: i).result, i end else block_number.map do |i| block_api.get_block(block_num: i).result end end end |
#inspect ⇒ Object
518 519 520 521 522 523 524 525 526 527 528 529 |
# File 'lib/radiator/api.rb', line 518 def inspect properties = %w( chain url backoff_at max_requests ssl_verify_mode ssl_version persist recover_transactions_on_error reuse_ssl_sessions pool_size ).map do |prop| if !!(v = instance_variable_get("@#{prop}")) "@#{prop}=#{v}" end end.compact.join(', ') "#<#{self.class.name} [#{properties}]>" end |
#method_names ⇒ Object
335 336 337 338 339 340 341 342 |
# File 'lib/radiator/api.rb', line 335 def method_names return @method_names if !!@method_names return CondenserApi::METHOD_NAMES if api_name == :condenser_api @method_names = Radiator::Api.methods(api_name).map do |e| e['method'].to_sym end end |
#respond_to_missing?(m, include_private = false) ⇒ Boolean
350 351 352 |
# File 'lib/radiator/api.rb', line 350 def respond_to_missing?(m, include_private = false) method_names.nil? ? false : method_names.include?(m.to_sym) end |
#shutdown ⇒ Object
Stops the persistant http connections.
302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 |
# File 'lib/radiator/api.rb', line 302 def shutdown @uri = nil @http_id = nil @http_memo.each do |k| v = @http_memo.delete(k) if defined?(v.shutdown) debug "Shutting down instance #{k} (#{v})" v.shutdown end end @api.shutdown if !!@api && @api != self @api = nil @block_api.shutdown if !!@block_api && @block_api != self @block_api = nil if @self_logger if !!@logger && defined?(@logger.close) if defined?(@logger.closed?) @logger.close unless @logger.closed? end end end if @self_hashie_logger if !!@hashie_logger && defined?(@hashie_logger.close) if defined?(@hashie_logger.closed?) @hashie_logger.close unless @hashie_logger.closed? end end end end |
#stopped? ⇒ Boolean
531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 |
# File 'lib/radiator/api.rb', line 531 def stopped? http_active = if @http_memo.nil? false else @http_memo.values.map do |http| if defined?(http.active?) http.active? else false end end.include?(true) end @uri.nil? && @http_id.nil? && !http_active && @api.nil? && @block_api.nil? end |