Class: Ayadn::Workers

Inherits:
Object
  • Object
show all
Defined in:
lib/ayadn/workers.rb

Instance Method Summary collapse

Instance Method Details

#add_arobase(username) ⇒ Object



365
366
367
# File 'lib/ayadn/workers.rb', line 365

def add_arobase username
  add_arobase_if_missing(username)
end

#add_arobase_if_missing(username) ⇒ Object

expects an array of username(s), works on the first one and outputs a string



369
370
371
372
373
374
375
376
377
# File 'lib/ayadn/workers.rb', line 369

def add_arobase_if_missing(username) # expects an array of username(s), works on the first one and outputs a string
  unless username.first == "me"
    username = username.first.chars
    username.unshift("@") unless username.first == "@"
  else
    username = "me".chars
  end
  username.join
end

#add_arobases_to_usernames(args) ⇒ Object

TODO: replace all these arobase legacy methods by a unique one



388
389
390
391
392
393
394
395
396
397
398
# File 'lib/ayadn/workers.rb', line 388

def add_arobases_to_usernames args #TODO: replace all these arobase legacy methods by a unique one
  args.map do |username|
    if username == 'me'
      who_am_i
    else
      temp = username.chars
      temp.unshift("@") unless temp.first == "@"
      temp.join
    end
  end
end

#all_but_me(usernames) ⇒ Object



486
487
488
489
# File 'lib/ayadn/workers.rb', line 486

def all_but_me usernames
  arr = usernames.select {|user| user != 'me'}
  at(arr)
end

#at(usernames) ⇒ Object

TODO: consolidate



312
313
314
315
316
317
318
319
320
321
322
# File 'lib/ayadn/workers.rb', line 312

def at usernames #TODO: consolidate
  usernames.map do |user|
    if user == 'me'
      'me'
    elsif user[0] == '@'
      user
    else
      "@#{user}"
    end
  end
end

#build_aliases_list(list) ⇒ Object



5
6
7
8
9
10
11
# File 'lib/ayadn/workers.rb', line 5

def build_aliases_list(list)
  table = init_table
  table.title = "List of your channel aliases".color(:cyan) + "".color(:white)
  table.style = {border_x: '~', border_i: '+', border_y: ':'}
  list.each {|k,v| table << ["#{k}".color(:green), "#{v}".color(:red)]}
  table
end

#build_blacklist_list(list) ⇒ Object



13
14
15
16
17
18
19
20
# File 'lib/ayadn/workers.rb', line 13

def build_blacklist_list(list)
  table = init_table
  table.title = "Your blacklist".color(:cyan) + "".color(:white)
  table.style = {border_x: '~', border_i: '+', border_y: ':'}
  list = list.sort_by {|k,v| v} # no sort_by! for Daybreak dbs
  list.each {|k,v| table << ["#{v.capitalize}".color(:green), "#{k}".color(:red)]}
  table
end

#build_blocked_list(list) ⇒ Object



76
77
78
79
80
81
# File 'lib/ayadn/workers.rb', line 76

def build_blocked_list(list)
  table = init_table
  table.title = "List of users you blocked".color(:cyan) + "".color(:white)
  table.style = {border_x: ' ', border_i: ' ', border_y: ' '}
  build_users_list(build_users_array(list), table)
end

#build_channels(data, options = {}) ⇒ Object



270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
# File 'lib/ayadn/workers.rb', line 270

def build_channels(data, options = {})
  bucket = []
  data = [data] unless data.is_a?(Array)
  if options[:channels]
    puts "Downloading list of channels and their users credentials.\n\nPlease wait, it could take a while if there are many results and users...".color(:cyan)
  else
    puts "Downloading new channels and unknown users ids.\nThis is a one time operation, ids are being recorded in a database.\n\nPlease wait, it could take a while if you have many channels...".color(:cyan)
  end
  chan = Struct.new(:id, :num_messages, :subscribers, :type, :owner, :annotations, :readers, :editors, :writers, :you_subscribed, :unread, :recent_message_id, :recent_message)
  data.each do |ch|
    unless ch['writers']['user_ids'].empty?
      usernames = []
      ch['writers']['user_ids'].each do |id|
        db = Databases.users[id]
        unless db.nil?
          usernames << "@" + db.keys.first
        else
          resp = API.new.get_user(id)
          usernames << "@" + resp['data']['username']
          Databases.add_to_users_db(id, resp['data']['username'], resp['data']['name'])
        end
      end
      usernames << Settings.config[:identity][:handle] unless usernames.length == 1 && usernames.first == Settings.config[:identity][:handle]
      writers = usernames.join(", ")
    else
      writers = Settings.config[:identity][:handle]
    end
    if ch['has_unread']
      unread = "This channel has unread message(s)"
    else
      unread = "No unread messages"
    end
    bucket << chan.new(ch['id'], ch['counts']['messages'], ch['counts']['subscribers'], ch['type'], ch['owner'], ch['annotations'], ch['readers'], ch['editors'], writers, ch['you_subscribed'], unread, ch['recent_message_id'], ch['recent_message'])
  end
  puts "\e[H\e[2J"
  bucket
end

#build_followers_list(list, target) ⇒ Object



58
59
60
61
62
63
64
65
66
67
# File 'lib/ayadn/workers.rb', line 58

def build_followers_list(list, target)
  table = init_table
  table.title = if target == "me"
    "List of your followers".color(:cyan) + "".color(:white)
  else
    "List of users following ".color(:cyan) + "#{target}".color(:red) + "".color(:white)
  end
  table.style = {border_x: ' ', border_i: ' ', border_y: ' '}
  build_users_list(build_users_array(list), table)
end

#build_followings_list(list, target) ⇒ Object

takes a hash of users with ayadn format



46
47
48
49
50
51
52
53
54
55
56
# File 'lib/ayadn/workers.rb', line 46

def build_followings_list(list, target) #takes a hash of users with ayadn format
  table = init_table
  table.title = if target == "me"
    "List of users you're following".color(:cyan) + "".color(:white)
  else
    "List of users ".color(:cyan) + "#{target}".color(:red) + " is following ".color(:cyan) + "".color(:white)
  end
  table.style = {border_x: ' ', border_i: ' ', border_y: ' '}
  users_list = build_users_array(list)
  build_users_list(users_list, table)
end

#build_muted_list(list) ⇒ Object



69
70
71
72
73
74
# File 'lib/ayadn/workers.rb', line 69

def build_muted_list(list)
  table = init_table
  table.title = "List of users you muted".color(:cyan) + "".color(:white)
  table.style = {border_x: ' ', border_i: ' ', border_y: ' '}
  build_users_list(build_users_array(list), table)
end

#build_posts(data, niceranks = {}) ⇒ Object

builds a hash of hashes, each hash is a normalized post with post id as a key



122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
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
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
# File 'lib/ayadn/workers.rb', line 122

def build_posts(data, niceranks = {})
  # skip objects in blacklist unless force
  posts = {}
  data.each.with_index(1) do |post, index|
    unless Settings.options[:force]
      if Databases.blacklist[post['source']['name'].downcase]
        Debug.skipped({source: post['source']['name']})
        next
      end
    end
    unless Settings.options[:force]
      if Databases.blacklist["-@#{post['user']['username'].downcase}"]
        Debug.skipped({user: post['user']['username']})
        next
      end
    end
    hashtags = extract_hashtags(post)
    @skip = false
    unless Settings.options[:force]
      hashtags.each do |h|
        if Databases.blacklist[h.downcase]
          @skip = true
          Debug.skipped({hashtag: h})
          break
        end
      end
    end
    next if @skip
    mentions= []
    post['entities']['mentions'].each { |m| mentions << m['name'] }
    unless Settings.options[:force]
      mentions.each do |m|
        if Databases.blacklist["@#{m.downcase}"]
          @skip = true
          Debug.skipped({mention: m})
          break
        end
      end
    end
    next if @skip

    # create custom objects from ADN response
    if niceranks[post['user']['id'].to_i]
      rank = niceranks[post['user']['id'].to_i][:rank]
      is_human = niceranks[post['user']['id'].to_i][:is_human]
      real_person = niceranks[post['user']['id'].to_i][:real_person]
    else
      rank = false
      is_human = 'unknown'
      real_person = nil
    end

    if post['user'].has_key?('name')
      name = post['user']['name'].to_s.force_encoding("UTF-8")
    else
      name = "(no name)"
    end

    source = post['source']['name'].to_s.force_encoding("UTF-8")

    values = {
      count: index,
      id: post['id'].to_i,
      name: name,
      thread_id: post['thread_id'],
      username: post['user']['username'],
      user_id: post['user']['id'].to_i,
      nicerank: rank,
      is_human: is_human,
      real_person: real_person,
      handle: "@#{post['user']['username']}",
      type: post['user']['type'],
      date: parsed_time(post['created_at']),
      you_starred: post['you_starred'],
      source_name: source,
      source_link: post['source']['link'],
      canonical_url: post['canonical_url'],
      tags: hashtags,
      links: extract_links(post),
      mentions: mentions,
      directed_to: mentions.first || false
    }

    values[:checkins], values[:has_checkins] = extract_checkins(post)

    if post['repost_of']
      values[:is_repost] = true
      values[:repost_of] = post['repost_of']['id']
      values[:original_poster] = post['repost_of']['user']['username']
    else
      values[:is_repost] = false
      values[:repost_of] = nil
      values[:original_poster] = post['user']['username']
    end

    unless post['text'].nil?
      values[:raw_text] = post['text']
      values[:text] = colorize_text(post['text'], mentions, hashtags)
    else
      values[:raw_text] = ""
      values[:text] = "(no text)"
    end

    unless post['num_stars'].nil? || post['num_stars'] == 0
      values[:is_starred] = true
      values[:num_stars] = post['num_stars']
    else
      values[:is_starred] = false
      values[:num_stars] = 0
    end

    if post['reply_to']
      values[:is_reply] = true
      values[:reply_to] = post['reply_to']
      values[:num_replies] = post['num_replies']
    else
      values[:is_reply] = false
      values[:reply_to] = nil
      values[:num_replies] = 0
    end
    if post['num_reposts']
      values[:num_reposts] = post['num_reposts']
    else
      values[:num_reposts] = 0
    end

    posts[post['id'].to_i] = values

  end
  posts
end

#build_reposted_list(list, target) ⇒ Object



22
23
24
25
26
27
28
29
30
31
32
# File 'lib/ayadn/workers.rb', line 22

def build_reposted_list(list, target)
  table = init_table
  table.title = "List of users who reposted post ".color(:cyan) + "#{target}".color(:red) + "".color(:white)
  users_list = []
  list.each do |obj|
    obj['name'].nil? ? name = "" : name = obj['name']
    users_list << {:username => obj['username'], :name => name, :you_follow => obj['you_follow'], :follows_you => obj['follows_you'], :id => obj['id']}
  end
  table.style = {border_x: ' ', border_i: ' ', border_y: ' '}
  return users_list, table
end

#build_starred_list(list, target) ⇒ Object



34
35
36
37
38
39
40
41
42
43
44
# File 'lib/ayadn/workers.rb', line 34

def build_starred_list(list, target)
  table = init_table
  table.title = "List of users who starred post ".color(:cyan) + "#{target}".color(:red) + "".color(:white)
  users_list = []
  list.each do |obj|
    obj['name'].nil? ? name = "" : name = obj['name']
    users_list << {:username => obj['username'], :name => name, :you_follow => obj['you_follow'], :follows_you => obj['follows_you'], :id => obj['id']}
  end
  table.style = {border_x: ' ', border_i: ' ', border_y: ' '}
  return users_list, table
end

#build_users_list(list, table) ⇒ Object



83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# File 'lib/ayadn/workers.rb', line 83

def build_users_list(list, table)
  users = at(list.map {|obj| obj[:username]})
  ids = list.map {|obj| obj[:id].to_i}
  ranks = NiceRank.new.from_ids(ids)
  indexed_ranks = {}
  ranks.each do |r|
    if r.empty?
      indexed_ranks = false
      break
    else
      indexed_ranks[r['user_id']] = r
    end
  end
  table << ['USERNAME'.color(:red), 'NAME'.color(:red), 'POSTS/DAY'.color(:red)]
  table << :separator
  list.each_with_index do |obj, index|
    unless indexed_ranks == false
      details = indexed_ranks[obj[:id].to_i]
      if details['user']['posts_day'] == -1
        posts_day = 'ignored'
      else
        posts_day = details['user']['posts_day'].round(2).to_s
      end
    else
      posts_day = 'unknown'
    end
    obj[:username].length > 23 ? username = "#{obj[:username][0..20]}..." : username = obj[:username]
    unless obj[:name].nil? || obj[:name].empty?
      obj[:name].length > 23 ? name = "#{obj[:name][0..20]}..." : name = obj[:name]
      table << [ "@#{username} ".color(Settings.options[:colors][:username]), "#{name}", posts_day ]
    else
      table << [ "@#{username} ".color(Settings.options[:colors][:username]), "", posts_day ]
    end
    table << :separator unless index + 1 == list.length
  end
  table
end

#colorize_text(text, mentions, hashtags) ⇒ Object



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
# File 'lib/ayadn/workers.rb', line 414

def colorize_text(text, mentions, hashtags)
  reg_split = '[~:-;,?!\'&`^=+<>*%()\/"“”’°£$€.…]'
  reg_tag = '#([[:alpha:]0-9_]{1,255})(?![\w+])'
  reg_mention = '@([A-Za-z0-9_]{1,20})(?![\w+])'
  reg_sentence = '^.+[\r\n]*'
  handles, words, sentences = [], [], []
  mentions.each {|username| handles << "@#{username}"}
  hashtag_color = Settings.options[:colors][:hashtags]
  mention_color = Settings.options[:colors][:mentions]
  text.scan(/#{reg_sentence}/) do |sentence|
    sentence.split(' ').each do |word|

      word_chars = word.chars
      sanitized, word = [], []
      word_chars.each do |ch|
        if UnicodeUtils.general_category(ch) == :Other_Symbol
          sanitized << "#{ch} "
        else
          sanitized << ch
        end
      end
      word = sanitized.join

      if word =~ /#\w+/
        slices = word.split('#')
        has_h = false
        slices.each do |tag|
          has_h = true if hashtags.include?(tag.downcase.scan(/[[:alpha:]0-9_]/).join(''))
        end
        if has_h == true
          if slices.length > 1
            words << slices.join('#').gsub(/#{reg_tag}/, '#\1'.color(hashtag_color))
          else
            words << word.gsub(/#{reg_tag}/, '#\1'.color(hashtag_color))
          end
        else
          words << word
        end
      elsif word =~ /@\w+/
        enc = []
        warr = word.split(' ')
        warr.each do |w|
          @str = def_str(w, reg_split)
          if handles.include?(@str.downcase)
            if warr.length == 1
              enc << w.gsub(/#{reg_mention}/, '@\1'.color(mention_color))
            else
              enc << " #{w.gsub(/#{reg_mention}/, '@\1'.color(mention_color))}"
            end
          else
            enc << w
          end
        end
        words << enc.join
      else
        words << word
      end
    end
    sentences << words.join(' ')
    words = Array.new
  end
  sentences.join("\n")
end

#extract_hashtags(post) ⇒ Object



266
267
268
# File 'lib/ayadn/workers.rb', line 266

def extract_hashtags(post)
  post['entities']['hashtags'].map { |h| h['name'] }
end


254
255
256
257
258
259
260
261
262
263
264
# File 'lib/ayadn/workers.rb', line 254

def extract_links(post)
  links = post['entities']['links'].map { |l| l['url'] }
  unless post['annotations'].nil? || post['annotations'].empty?
    post['annotations'].each do |ann|
      if ann['type'] == "net.app.core.oembed"
        links << ann['value']['embeddable_url'] if ann['value']['embeddable_url']
      end
    end
  end
  links.uniq
end

#extract_users(resp) ⇒ Object



406
407
408
409
410
411
412
# File 'lib/ayadn/workers.rb', line 406

def extract_users(resp)
  users_hash = {}
  resp['data'].each do |item|
    users_hash[item['id']] = [item['username'], item['name'], item['you_follow'], item['follows_you']]
  end
  users_hash
end

#get_channel_id_from_alias(channel_id) ⇒ Object



335
336
337
338
339
340
341
342
343
344
345
346
# File 'lib/ayadn/workers.rb', line 335

def get_channel_id_from_alias(channel_id)
  unless channel_id.is_integer?
    orig = channel_id
    channel_id = Databases.get_channel_id(orig)
    if channel_id.nil?
      Errors.warn("Alias '#{orig}' doesn't exist.")
      puts Status.no_alias
      exit
    end
  end
  channel_id
end

#get_original_id(post_id, resp) ⇒ Object



324
325
326
327
328
329
330
331
332
333
# File 'lib/ayadn/workers.rb', line 324

def get_original_id(post_id, resp)
  if resp['data']['repost_of']
    puts Status.redirecting
    id = resp['data']['repost_of']['id']
    Errors.repost(post_id, id)
    return id
  else
    return post_id
  end
end

#get_post_from_index(id) ⇒ Object



352
353
354
# File 'lib/ayadn/workers.rb', line 352

def get_post_from_index id
  Databases.get_post_from_index id
end

#get_real_post_id(post_id) ⇒ Object



356
357
358
359
360
361
362
363
# File 'lib/ayadn/workers.rb', line 356

def get_real_post_id post_id
  id = post_id.to_i
  if id > 0 && id <= length_of_index
    resp = get_post_from_index(id)
    post_id = resp[:id]
  end
  post_id
end

#length_of_indexObject



348
349
350
# File 'lib/ayadn/workers.rb', line 348

def length_of_index
  Databases.get_index_length
end


478
479
480
481
482
483
484
# File 'lib/ayadn/workers.rb', line 478

def links_from_posts(stream)
  links = []
  stream['data'].each do |post|
    extract_links(post).each {|l| links << l}
  end
  links.uniq
end

#parsed_time(string) ⇒ Object



308
309
310
# File 'lib/ayadn/workers.rb', line 308

def parsed_time(string)
  "#{string[0...10]} #{string[11...19]}"
end

#remove_arobase_if_present(args) ⇒ Object



379
380
381
382
383
384
385
386
# File 'lib/ayadn/workers.rb', line 379

def remove_arobase_if_present args
  args.map! do |username|
    temp = username.chars
    temp.shift if temp.first == "@"
    temp.join
  end
  args
end

#who_am_iObject



400
401
402
403
404
# File 'lib/ayadn/workers.rb', line 400

def who_am_i
  db = Databases.init(Dir.home + "/ayadn/accounts.db")
  active = db['ACTIVE']
  db[active][:handle]
end