Module: Cosgrove::Utils

Includes:
Config
Included in:
Account, CommentJob, Support, UpvoteJob
Defined in:
lib/cosgrove/utils.rb

Instance Method Summary collapse

Methods included from Config

#channel_disable_comment_voting, #channel_upvote_weight, #cosgrove_allow_pm_commands, #cosgrove_client_id, #cosgrove_disable_comment_voting, #cosgrove_operators, #cosgrove_secure, #cosgrove_token, #cosgrove_upvote_weight, #discord_channels, #discord_fancy_log, #discord_log_mode, #steem_account, #steem_api_failover_urls, #steem_api_url, #steem_posting_wif, #test_api_failover_urls, #test_api_url, #test_posting_wif

Instance Method Details

#api(chain) ⇒ Object



40
41
42
43
44
45
46
47
48
49
# File 'lib/cosgrove/utils.rb', line 40

def api(chain)
  reset_api if cycle_api_at.nil? || cycle_api_at < 15.minutes.ago
  
  @cycle_api_at ||= Time.now
  
  case chain
  when :steem then @steem_api ||= Radiator::Api.new(chain_options(chain))
  when :test then @test_api ||= Radiator::Api.new(chain_options(chain))
  end
end

#chain_options(chain) ⇒ Object



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'lib/cosgrove/utils.rb', line 23

def chain_options(chain)
  case chain
  when :steem
    {
      chain: :steem,
      url: steem_api_url,
      failover_urls: steem_api_failover_urls.any? ? steem_api_failover_urls : nil
    }
  when :test
    {
      chain: :test,
      url: test_api_url,
      failover_urls: test_api_failover_urls
    }
  end
end

#core_asset(chain = :steem) ⇒ Object



255
256
257
258
259
260
# File 'lib/cosgrove/utils.rb', line 255

def core_asset(chain = :steem)
  case chain
  when :steem then 'STEEM'
  else; 'TESTS'
  end
end

#cycle_api_atObject



5
6
7
# File 'lib/cosgrove/utils.rb', line 5

def cycle_api_at
  @cycle_api_at if defined? @cycle_api_at
end

#cycle_stream_atObject



62
63
64
# File 'lib/cosgrove/utils.rb', line 62

def cycle_stream_at
  @cycle_stream_at if defined? @cycle_stream_at
end

#debt_asset(chain = :steem) ⇒ Object



262
263
264
265
266
267
# File 'lib/cosgrove/utils.rb', line 262

def debt_asset(chain = :steem)
  case chain
  when :steem then 'SBD'
  else; 'TBD'
  end
end

#find_author(options) ⇒ Object



191
192
193
194
195
196
197
198
199
200
201
202
203
204
# File 'lib/cosgrove/utils.rb', line 191

def find_author(options)
  chain = options[:chain]
  author_name = options[:author_name]
  
  author = SteemApi::Account.where(name: author_name).first
  
  if author.nil?
    author = api(chain).get_accounts([author_name]) do |accounts, errors|
      accounts.first
    end
  end
  
  author
end


127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
# File 'lib/cosgrove/utils.rb', line 127

def find_author_name_permlink(slug)
  op, author_name = slug.split(':')
  author_name, offset = author_name.split(/[\+-]/)
  author = (author_name)
  
  offset = offset.to_i
  
  posts = if op == 'latest'
    SteemApi::Comment.where(depth: 0, author: author.name).order(created: :desc)
  elsif op == 'first'
    SteemApi::Comment.where(depth: 0, author: author.name).order(created: :asc)
  else
    []
  end
  
  if posts.any? && !!(post = posts[offset.to_i.abs])
    return [author_name, post.permlink]
  end
  
  []
end

#find_comment(options) ⇒ Object



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
# File 'lib/cosgrove/utils.rb', line 154

def find_comment(options)
  chain = options[:chain] || :steem
  author_name = options[:author_name]
  permlink = options[:permlink]
  parent_permlink = options[:parent_permlink]
  
  post = if chain == :steem
    posts = SteemApi::Comment.where(depth: 0, author: author_name)
    posts = posts.where(permlink: permlink) if !!permlink
    posts = posts.where(parent_permlink: parent_permlink) if !!parent_permlink
    
    posts.first
  end
  
  if post.nil?
    post = case chain
    when :steem
      posts = SteemApi::Comment.where(author: author_name)
      posts = posts.where(permlink: permlink) if !!permlink
      posts = posts.where(parent_permlink: parent_permlink) if !!parent_permlink
      
      posts.first
    end
  end
  
  if post.nil? && !!author_name && !!permlink
    # Fall back to RPC
    api(chain).get_content(author_name, permlink) do |content, errors|
      unless content.author.empty?
        post = content
      end
    end
  end
  
  post
end

#find_comment_by_slug(slug) ⇒ Object



149
150
151
152
# File 'lib/cosgrove/utils.rb', line 149

def find_comment_by_slug(slug)
  author_name, permlink = parse_slug slug
  find_comment(chain: :steem, author_name: author_name, permlink: permlink)
end

#find_transfer(options) ⇒ Object



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
# File 'lib/cosgrove/utils.rb', line 206

def find_transfer(options)
  chain = options[:chain]
  from = options[:from]
  to = options[:to]
  memo_key = options[:memo].to_s.strip
  
  op = case chain
  when :steem
    transfers = SteemApi::Tx::Transfer.
      where(from: from, to: ).
      where("memo LIKE ?", "%#{memo_key}%")
  
    if transfers.any?
      transfers.last
    else
      SteemApi::Tx::Transfer.
        where(from: from).
        where(to: to).
        where("memo LIKE ?", "%#{memo_key}%").last
    end
  end
  
  if op.nil?
    # Fall back to RPC.  The transaction is so new, SteemApi hasn't seen it
    # yet, SteemApi is behind, or there is no such transfer.
    
    api(chain).(, -1, 10000) do |history, error|
      if !!error
        ap error
        return "Try again later."
      end
      
      op = history.map do |trx|
        e = trx.last.op
        type = e.first
        next unless type == 'transfer'
        o = e.last
        next unless o.from == from
        next unless o.to == 
        next unless o.memo =~ /.*#{memo_key}.*/
        
        o
      end.compact.last
    end
  end

  op
end

#follow_api(chain) ⇒ Object



51
52
53
54
55
56
57
58
59
60
# File 'lib/cosgrove/utils.rb', line 51

def follow_api(chain)
  reset_api if cycle_api_at.nil? || cycle_api_at < 15.minutes.ago
  
  @cycle_api_at ||= Time.now
  
  case chain
  when :steem then @steem_follow_api ||= Radiator::FollowApi.new(chain_options(chain))
  when :test then @test_follow_api ||= Radiator::FollowApi.new(chain_options(chain))
  end
end

#head_block_number(chain) ⇒ Object



87
88
89
# File 'lib/cosgrove/utils.rb', line 87

def head_block_number(chain)
  properties(chain)['head_block_number']
end

#last_irreversible_block_num(chain = :steem) ⇒ Object



91
92
93
# File 'lib/cosgrove/utils.rb', line 91

def last_irreversible_block_num(chain = :steem)
  properties(chain)['last_irreversible_block_num']
end

#new_tx(chain) ⇒ Object



95
96
97
98
99
100
# File 'lib/cosgrove/utils.rb', line 95

def new_tx(chain)
  case chain
  when :steem then Radiator::Transaction.new(chain_options(chain).merge(wif: steem_posting_wif))
  when :test then Radiator::Transaction.new(chain_options(chain).merge(wif: test_posting_wif))
  end
end

#parse_slug(slug) ⇒ Object



113
114
115
116
117
118
119
120
121
122
123
124
125
# File 'lib/cosgrove/utils.rb', line 113

def parse_slug(slug)
  case slug
  when /^latest:/ then find_author_name_permlink(slug)
  when /^first:/ then find_author_name_permlink(slug)
  else
    slug = slug.split('@').last
    author_name = slug.split('/')[0]
    permlink = slug.split('/')[1..-1].join('/')
    permlink = permlink.split('#')[0]
    
    [author_name, permlink]
  end
end

#ping_api(chain) ⇒ Object



15
16
17
18
19
20
21
# File 'lib/cosgrove/utils.rb', line 15

def ping_api(chain)
  api(chain).get_config do |config, errors|
    reset_api if !!errors || config.keys.none?
  end
  
  true
end

#properties(chain) ⇒ Object



83
84
85
# File 'lib/cosgrove/utils.rb', line 83

def properties(chain)
  api(chain).get_dynamic_global_properties.result
end

#reset_apiObject



9
10
11
12
13
# File 'lib/cosgrove/utils.rb', line 9

def reset_api
  @steem_api = @test_api = nil
  @steem_folow_api = @test_folow_api = nil
  @cycle_api_at = nil
end

#reset_streamObject



66
67
68
69
70
# File 'lib/cosgrove/utils.rb', line 66

def reset_stream
  @steem_stream = @test_stream = nil
  @steem_folow_stream = @test_folow_stream = nil
  @cycle_stream_at = nil
end

#stream(chain) ⇒ Object



72
73
74
75
76
77
78
79
80
81
# File 'lib/cosgrove/utils.rb', line 72

def stream(chain)
  reset_stream if cycle_stream_at.nil? || cycle_stream_at < 15.minutes.ago
  
  @cycle_stream_at ||= Time.now
  
  case chain
  when :steem then @steem_stream ||= Radiator::Stream.new(chain_options(chain))
  when :test then @test_stream ||= Radiator::Stream.new(chain_options(chain))
  end
end

#to_rep(raw) ⇒ Object



102
103
104
105
106
107
108
109
110
111
# File 'lib/cosgrove/utils.rb', line 102

def to_rep(raw)
  raw = raw.to_i
  neg = raw < 0
  level = Math.log10(raw.abs)
  level = [level - 9, 0].max
  level = (neg ? -1 : 1) * level
  level = (level * 9) + 25

  '%.2f' % level
end