Class: T::CLI

Inherits:
Thor
  • Object
show all
Extended by:
Forwardable
Includes:
Collectable, Printable, Requestable, Utils
Defined in:
lib/t/cli.rb

Constant Summary collapse

DEFAULT_NUM_RESULTS =
20
DIRECT_MESSAGE_HEADINGS =
['ID', 'Posted at', 'Screen name', 'Text'].freeze
MAX_SEARCH_RESULTS =
100
TREND_HEADINGS =
['WOEID', 'Parent ID', 'Type', 'Name', 'Country'].freeze

Constants included from Printable

Printable::LIST_HEADINGS, Printable::MONTH_IN_SECONDS, Printable::TWEET_HEADINGS, Printable::USER_HEADINGS

Constants included from Collectable

T::Collectable::MAX_NUM_RESULTS, T::Collectable::MAX_PAGE

Instance Method Summary collapse

Methods included from Collectable

#collect_with_count, #collect_with_max_id, #collect_with_page

Constructor Details

#initializeCLI

Returns a new instance of CLI.



36
37
38
39
# File 'lib/t/cli.rb', line 36

def initialize(*)
  @rcfile = T::RCFile.instance
  super
end

Instance Method Details

#accountsObject



42
43
44
45
46
47
48
49
50
# File 'lib/t/cli.rb', line 42

def accounts
  @rcfile.path = options['profile'] if options['profile']
  @rcfile.profiles.each do |profile|
    say profile[0]
    profile[1].each_key do |key|
      say "  #{key}#{@rcfile.active_profile[0] == profile[0] && @rcfile.active_profile[1] == key ? ' (active)' : nil}"
    end
  end
end

#authorizeObject



54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
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
# File 'lib/t/cli.rb', line 54

def authorize
  @rcfile.path = options['profile'] if options['profile']
  if @rcfile.empty?
    say "Welcome! Before you can use t, you'll first need to register an"
    say 'application with Twitter. Just follow the steps below:'
    say '  1. Sign in to the Twitter Application Management site and click'
    say '     "Create New App".'
    say '  2. Complete the required fields and submit the form.'
    say '     Note: Your application must have a unique name.'
    say '  3. Go to the Permissions tab of your application, and change the'
    say '     Access setting to "Read, Write and Access direct messages".'
    say '  4. Go to the Keys and Access Tokens tab to view the consumer key'
    say "     and secret which you'll need to copy and paste below when"
    say '     prompted.'
  else
    say "It looks like you've already registered an application with Twitter."
    say 'To authorize a new account, just follow the steps below:'
    say '  1. Sign in to the Twitter Developer site.'
    say "  2. Select the application for which you'd like to authorize an account."
    say '  3. Copy and paste the consumer key and secret below when prompted.'
  end
  say
  ask 'Press [Enter] to open the Twitter Developer site.'
  say
  require 'launchy'
  open_or_print('https://apps.twitter.com', dry_run: options['display-uri'])
  key = ask 'Enter your API key:'
  secret = ask 'Enter your API secret:'
  consumer = OAuth::Consumer.new(key, secret, site: Twitter::REST::Client::BASE_URL)
  request_token = consumer.get_request_token
  uri = generate_authorize_uri(consumer, request_token)
  say
  say 'In a moment, you will be directed to the Twitter app authorization page.'
  say 'Perform the following steps to complete the authorization process:'
  say '  1. Sign in to Twitter.'
  say '  2. Press "Authorize app".'
  say '  3. Copy and paste the supplied PIN below when prompted.'
  say
  ask 'Press [Enter] to open the Twitter app authorization page.'
  say
  open_or_print(uri, dry_run: options['display-uri'])
  pin = ask 'Enter the supplied PIN:'
  access_token = request_token.get_access_token(oauth_verifier: pin.chomp)
  oauth_response = access_token.get('/1.1/account/verify_credentials.json?skip_status=true')
  screen_name = oauth_response.body.match(/"screen_name"\s*:\s*"(.*?)"/).captures.first
  @rcfile[screen_name] = {
    key => {
      'username' => screen_name,
      'consumer_key' => key,
      'consumer_secret' => secret,
      'token' => access_token.token,
      'secret' => access_token.secret,
    },
  }
  @rcfile.active_profile = {'username' => screen_name, 'consumer_key' => key}
  say 'Authorization successful.'
end

#block(user, *users) ⇒ Object



114
115
116
117
118
119
120
121
# File 'lib/t/cli.rb', line 114

def block(user, *users)
  blocked_users, number = fetch_users(users.unshift(user), options) do |users_to_block|
    client.block(users_to_block)
  end
  say "@#{@rcfile.active_profile[0]} blocked #{pluralize(number, 'user')}."
  say
  say "Run `#{File.basename($PROGRAM_NAME)} delete block #{blocked_users.collect { |blocked_user| "@#{blocked_user.screen_name}" }.join(' ')}` to unblock."
end

#direct_messagesObject



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
# File 'lib/t/cli.rb', line 130

def direct_messages
  count = options['number'] || DEFAULT_NUM_RESULTS
  opts = {}
  opts[:include_entities] = !!options['decode_uris']
  direct_messages = collect_with_count(count) do |count_opts|
    client.direct_messages(count_opts.merge(opts))
  end
  direct_messages.reverse! if options['reverse']
  if options['csv']
    require 'csv'
    say DIRECT_MESSAGE_HEADINGS.to_csv unless direct_messages.empty?
    direct_messages.each do |direct_message|
      say [direct_message.id, csv_formatted_time(direct_message), direct_message.sender.screen_name, decode_full_text(direct_message, options['decode_uris'])].to_csv
    end
  elsif options['long']
    array = direct_messages.collect do |direct_message|
      [direct_message.id, ls_formatted_time(direct_message), "@#{direct_message.sender.screen_name}", decode_full_text(direct_message, options['decode_uris']).gsub(/\n+/, ' ')]
    end
    format = options['format'] || Array.new(DIRECT_MESSAGE_HEADINGS.size) { '%s' }
    print_table_with_headings(array, DIRECT_MESSAGE_HEADINGS, format)
  else
    direct_messages.each do |direct_message|
      print_message(direct_message.sender.screen_name, direct_message.text)
    end
  end
end

#direct_messages_sentObject



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
# File 'lib/t/cli.rb', line 165

def direct_messages_sent
  count = options['number'] || DEFAULT_NUM_RESULTS
  opts = {}
  opts[:include_entities] = !!options['decode_uris']
  direct_messages = collect_with_count(count) do |count_opts|
    client.direct_messages_sent(count_opts.merge(opts))
  end
  direct_messages.reverse! if options['reverse']
  if options['csv']
    require 'csv'
    say DIRECT_MESSAGE_HEADINGS.to_csv unless direct_messages.empty?
    direct_messages.each do |direct_message|
      say [direct_message.id, csv_formatted_time(direct_message), direct_message.recipient.screen_name, decode_full_text(direct_message, options['decode_uris'])].to_csv
    end
  elsif options['long']
    array = direct_messages.collect do |direct_message|
      [direct_message.id, ls_formatted_time(direct_message), "@#{direct_message.recipient.screen_name}", decode_full_text(direct_message, options['decode_uris']).gsub(/\n+/, ' ')]
    end
    format = options['format'] || Array.new(DIRECT_MESSAGE_HEADINGS.size) { '%s' }
    print_table_with_headings(array, DIRECT_MESSAGE_HEADINGS, format)
  else
    direct_messages.each do |direct_message|
      print_message(direct_message.recipient.screen_name, direct_message.text)
    end
  end
end

#dm(user, message) ⇒ Object



195
196
197
198
199
200
# File 'lib/t/cli.rb', line 195

def dm(user, message)
  require 't/core_ext/string'
  user = options['id'] ? user.to_i : user.strip_ats
  direct_message = client.create_direct_message(user, message)
  say "Direct Message sent from @#{@rcfile.active_profile[0]} to @#{direct_message.recipient.screen_name}."
end

#does_contain(user_list, user = nil) ⇒ Object



205
206
207
208
209
210
211
212
213
214
215
216
217
218
# File 'lib/t/cli.rb', line 205

def does_contain(user_list, user = nil)
  owner, list_name = extract_owner(user_list, options)
  if user.nil?
    user = @rcfile.active_profile[0]
  else
    require 't/core_ext/string'
    user = options['id'] ? client.user(user.to_i).screen_name : user.strip_ats
  end
  if client.list_member?(owner, list_name, user)
    say "Yes, #{list_name} contains @#{user}."
  else
    abort "No, #{list_name} does not contain @#{user}."
  end
end

#does_follow(user1, user2 = nil) ⇒ Object



223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
# File 'lib/t/cli.rb', line 223

def does_follow(user1, user2 = nil)
  abort 'No, you are not following yourself.' if user2.nil? && @rcfile.active_profile[0].casecmp(user1).zero?
  abort "No, @#{user1} is not following themself." if user1 == user2
  require 't/core_ext/string'
  thread1 = if options['id']
    Thread.new { client.user(user1.to_i).screen_name }
  else
    Thread.new { user1.strip_ats }
  end
  thread2 = if user2.nil?
    Thread.new { @rcfile.active_profile[0] }
  elsif options['id']
    Thread.new { client.user(user2.to_i).screen_name }
  else
    Thread.new { user2.strip_ats }
  end
  user1 = thread1.value
  user2 = thread2.value
  if client.friendship?(user1, user2)
    say "Yes, @#{user1} follows @#{user2}."
  else
    abort "No, @#{user1} does not follow @#{user2}."
  end
end

#favorite(status_id, *status_ids) ⇒ Object



250
251
252
253
254
255
256
257
258
259
260
261
# File 'lib/t/cli.rb', line 250

def favorite(status_id, *status_ids)
  status_ids.unshift(status_id)
  status_ids.collect!(&:to_i)
  require 'retryable'
  favorites = Retryable.retryable(tries: 3, on: Twitter::Error, sleep: 0) do
    client.favorite(status_ids)
  end
  number = favorites.length
  say "@#{@rcfile.active_profile[0]} favorited #{pluralize(number, 'tweet')}."
  say
  say "Run `#{File.basename($PROGRAM_NAME)} delete favorite #{status_ids.join(' ')}` to unfavorite."
end

#favorites(user = nil) ⇒ Object



274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
# File 'lib/t/cli.rb', line 274

def favorites(user = nil)
  count = options['number'] || DEFAULT_NUM_RESULTS
  opts = {}
  opts[:exclude_replies] = true if options['exclude'] == 'replies'
  opts[:include_entities] = !!options['decode_uris']
  opts[:include_rts] = false if options['exclude'] == 'retweets'
  opts[:max_id] = options['max_id'] if options['max_id']
  opts[:since_id] = options['since_id'] if options['since_id']
  if user
    require 't/core_ext/string'
    user = options['id'] ? user.to_i : user.strip_ats
  end
  tweets = collect_with_count(count) do |count_opts|
    client.favorites(user, count_opts.merge(opts))
  end
  print_tweets(tweets)
end

#follow(user, *users) ⇒ Object



295
296
297
298
299
300
301
302
# File 'lib/t/cli.rb', line 295

def follow(user, *users)
  followed_users, number = fetch_users(users.unshift(user), options) do |users_to_follow|
    client.follow(users_to_follow)
  end
  say "@#{@rcfile.active_profile[0]} is now following #{pluralize(number, 'more user')}."
  say
  say "Run `#{File.basename($PROGRAM_NAME)} unfollow #{followed_users.collect { |followed_user| "@#{followed_user.screen_name}" }.join(' ')}` to stop."
end

#followers(user = nil) ⇒ Object



360
361
362
363
364
365
366
367
368
369
370
371
# File 'lib/t/cli.rb', line 360

def followers(user = nil)
  if user
    require 't/core_ext/string'
    user = options['id'] ? user.to_i : user.strip_ats
  end
  follower_ids = client.follower_ids(user).to_a
  require 'retryable'
  users = Retryable.retryable(tries: 3, on: Twitter::Error, sleep: 0) do
    client.users(follower_ids)
  end
  print_users(users)
end

#followings(user = nil) ⇒ Object



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

def followings(user = nil)
  if user
    require 't/core_ext/string'
    user = options['id'] ? user.to_i : user.strip_ats
  end
  following_ids = client.friend_ids(user).to_a
  require 'retryable'
  users = Retryable.retryable(tries: 3, on: Twitter::Error, sleep: 0) do
    client.users(following_ids)
  end
  print_users(users)
end

#followings_following(user1, user2 = nil) ⇒ Object



333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
# File 'lib/t/cli.rb', line 333

def followings_following(user1, user2 = nil)
  require 't/core_ext/string'
  user1 = options['id'] ? user1.to_i : user1.strip_ats
  user2 = if user2.nil?
    @rcfile.active_profile[0]
  else
    options['id'] ? user2.to_i : user2.strip_ats
  end
  follower_ids = Thread.new { client.follower_ids(user1).to_a }
  following_ids = Thread.new { client.friend_ids(user2).to_a }
  followings_following_ids = follower_ids.value & following_ids.value
  require 'retryable'
  users = Retryable.retryable(tries: 3, on: Twitter::Error, sleep: 0) do
    client.users(followings_following_ids)
  end
  print_users(users)
end

#friends(user = nil) ⇒ Object



381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
# File 'lib/t/cli.rb', line 381

def friends(user = nil)
  user = if user
    require 't/core_ext/string'
    options['id'] ? user.to_i : user.strip_ats
  else
    client.verify_credentials.screen_name
  end
  following_ids = Thread.new { client.friend_ids(user).to_a }
  follower_ids = Thread.new { client.follower_ids(user).to_a }
  friend_ids = following_ids.value & follower_ids.value
  require 'retryable'
  users = Retryable.retryable(tries: 3, on: Twitter::Error, sleep: 0) do
    client.users(friend_ids)
  end
  print_users(users)
end

#groupies(user = nil) ⇒ Object



406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
# File 'lib/t/cli.rb', line 406

def groupies(user = nil)
  user = if user
    require 't/core_ext/string'
    options['id'] ? user.to_i : user.strip_ats
  else
    client.verify_credentials.screen_name
  end
  follower_ids = Thread.new { client.follower_ids(user).to_a }
  following_ids = Thread.new { client.friend_ids(user).to_a }
  groupie_ids = (follower_ids.value - following_ids.value)
  require 'retryable'
  users = Retryable.retryable(tries: 3, on: Twitter::Error, sleep: 0) do
    client.users(groupie_ids)
  end
  print_users(users)
end

#intersection(first_user, *users) ⇒ Object



433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
# File 'lib/t/cli.rb', line 433

def intersection(first_user, *users)
  users.push(first_user)
  # If only one user is specified, compare to the authenticated user
  users.push(@rcfile.active_profile[0]) if users.size == 1
  require 't/core_ext/string'
  options['id'] ? users.collect!(&:to_i) : users.collect!(&:strip_ats)
  sets = parallel_map(users) do |user|
    case options['type']
    when 'followings'
      client.friend_ids(user).to_a
    when 'followers'
      client.follower_ids(user).to_a
    end
  end
  intersection = sets.reduce(:&)
  require 'retryable'
  users = Retryable.retryable(tries: 3, on: Twitter::Error, sleep: 0) do
    client.users(intersection)
  end
  print_users(users)
end

#leaders(user = nil) ⇒ Object



464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
# File 'lib/t/cli.rb', line 464

def leaders(user = nil)
  user = if user
    require 't/core_ext/string'
    options['id'] ? user.to_i : user.strip_ats
  else
    client.verify_credentials.screen_name
  end
  following_ids = Thread.new { client.friend_ids(user).to_a }
  follower_ids = Thread.new { client.follower_ids(user).to_a }
  leader_ids = (following_ids.value - follower_ids.value)
  require 'retryable'
  users = Retryable.retryable(tries: 3, on: Twitter::Error, sleep: 0) do
    client.users(leader_ids)
  end
  print_users(users)
end

#lists(user = nil) ⇒ Object



489
490
491
492
493
494
495
496
497
498
# File 'lib/t/cli.rb', line 489

def lists(user = nil)
  lists = if user
    require 't/core_ext/string'
    user = options['id'] ? user.to_i : user.strip_ats
    client.lists(user)
  else
    client.lists
  end
  print_lists(lists)
end

#matrixObject



501
502
503
504
505
506
507
# File 'lib/t/cli.rb', line 501

def matrix
  opts = {count: MAX_SEARCH_RESULTS, include_entities: false}
  tweets = client.search('lang:ja', opts)
  tweets.each do |tweet|
    say(tweet.text.gsub(/[^\u3000\u3040-\u309f]/, '').reverse, [:bold, :green, :on_black], false)
  end
end

#mentionsObject



516
517
518
519
520
521
522
523
524
# File 'lib/t/cli.rb', line 516

def mentions
  count = options['number'] || DEFAULT_NUM_RESULTS
  opts = {}
  opts[:include_entities] = !!options['decode_uris']
  tweets = collect_with_count(count) do |count_opts|
    client.mentions(count_opts.merge(opts))
  end
  print_tweets(tweets)
end

#mute(user, *users) ⇒ Object



529
530
531
532
533
534
535
536
# File 'lib/t/cli.rb', line 529

def mute(user, *users)
  muted_users, number = fetch_users(users.unshift(user), options) do |users_to_mute|
    client.mute(users_to_mute)
  end
  say "@#{@rcfile.active_profile[0]} muted #{pluralize(number, 'user')}."
  say
  say "Run `#{File.basename($PROGRAM_NAME)} delete mute #{muted_users.collect { |muted_user| "@#{muted_user.screen_name}" }.join(' ')}` to unmute."
end

#mutedObject



545
546
547
548
549
550
551
552
# File 'lib/t/cli.rb', line 545

def muted
  muted_ids = client.muted_ids.to_a
  require 'retryable'
  muted_users = Retryable.retryable(tries: 3, on: Twitter::Error, sleep: 0) do
    client.users(muted_ids)
  end
  print_users(muted_users)
end

#open(user) ⇒ Object



559
560
561
562
563
564
565
566
567
568
569
570
571
# File 'lib/t/cli.rb', line 559

def open(user)
  require 'launchy'
  if options['id']
    user = client.user(user.to_i)
    open_or_print(user.uri, dry_run: options['display-uri'])
  elsif options['status']
    status = client.status(user.to_i, include_my_retweet: false)
    open_or_print(status.uri, dry_run: options['display-uri'])
  else
    require 't/core_ext/string'
    open_or_print("https://twitter.com/#{user.strip_ats}", dry_run: options['display-uri'])
  end
end

#reach(tweet_id) ⇒ Object



574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
# File 'lib/t/cli.rb', line 574

def reach(tweet_id)
  require 't/core_ext/string'
  require 'set'
  status_thread = Thread.new { client.status(tweet_id.to_i, include_my_retweet: false) }
  threads = []
  client.retweeters_ids(tweet_id.to_i).each do |retweeter_id|
    threads << Thread.new(retweeter_id) do |user_id|
      client.follower_ids(user_id).to_a
    end
  end
  status = status_thread.value
  threads << Thread.new(status.user.id) do |user_id|
    client.follower_ids(user_id).to_a
  end
  reach = ::Set.new
  threads.each { |thread| reach += thread.value }
  reach.delete(status.user.id)
  say number_with_delimiter(reach.size)
end

#reply(status_id, message = nil) ⇒ Object



598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
# File 'lib/t/cli.rb', line 598

def reply(status_id, message = nil)
  message = T::Editor.gets if message.to_s.empty?
  status = client.status(status_id.to_i, include_my_retweet: false)
  users = Array(status.user.screen_name)
  if options['all']
    users += extract_mentioned_screen_names(status.full_text)
    users.uniq!
  end
  users.delete(@rcfile.active_profile[0])
  require 't/core_ext/string'
  users.collect!(&:prepend_at)
  opts = {in_reply_to_status_id: status.id, trim_user: true}
  add_location!(options, opts)
  reply = if options['file']
    client.update_with_media("#{users.join(' ')} #{message}", File.new(File.expand_path(options['file'])), opts)
  else
    client.update("#{users.join(' ')} #{message}", opts)
  end
  say "Reply posted by @#{@rcfile.active_profile[0]} to #{users.join(' ')}."
  say
  say "Run `#{File.basename($PROGRAM_NAME)} delete status #{reply.id}` to delete."
end

#report_spam(user, *users) ⇒ Object



623
624
625
626
627
628
# File 'lib/t/cli.rb', line 623

def report_spam(user, *users)
  _, number = fetch_users(users.unshift(user), options) do |users_to_report|
    client.report_spam(users_to_report)
  end
  say "@#{@rcfile.active_profile[0]} reported #{pluralize(number, 'user')}."
end

#retweet(status_id, *status_ids) ⇒ Object



632
633
634
635
636
637
638
639
640
641
642
643
# File 'lib/t/cli.rb', line 632

def retweet(status_id, *status_ids)
  status_ids.unshift(status_id)
  status_ids.collect!(&:to_i)
  require 'retryable'
  retweets = Retryable.retryable(tries: 3, on: Twitter::Error, sleep: 0) do
    client.retweet(status_ids, trim_user: true)
  end
  number = retweets.length
  say "@#{@rcfile.active_profile[0]} retweeted #{pluralize(number, 'tweet')}."
  say
  say "Run `#{File.basename($PROGRAM_NAME)} delete status #{retweets.collect(&:id).join(' ')}` to undo."
end

#retweets(user = nil) ⇒ Object



654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
# File 'lib/t/cli.rb', line 654

def retweets(user = nil)
  count = options['number'] || DEFAULT_NUM_RESULTS
  opts = {}
  opts[:include_entities] = !!options['decode_uris']
  tweets = if user
    require 't/core_ext/string'
    user = options['id'] ? user.to_i : user.strip_ats
    collect_with_count(count) do |count_opts|
      client.retweeted_by_user(user, count_opts.merge(opts))
    end
  else
    collect_with_count(count) do |count_opts|
      client.retweeted_by_me(count_opts.merge(opts))
    end
  end
  print_tweets(tweets)
end

#retweets_of_meObject



680
681
682
683
684
685
686
687
688
# File 'lib/t/cli.rb', line 680

def retweets_of_me
  count = options['number'] || DEFAULT_NUM_RESULTS
  opts = {}
  opts[:include_entities] = !!options['decode_uris']
  tweets = collect_with_count(count) do |count_opts|
    client.retweets_of_me(count_opts.merge(opts))
  end
  print_tweets(tweets)
end

#rulerObject



693
694
695
696
# File 'lib/t/cli.rb', line 693

def ruler
  markings = '----|'.chars.cycle.take(140).join
  say "#{' ' * options['indent'].to_i}#{markings}"
end

#status(status_id) ⇒ Object

rubocop:disable CyclomaticComplexity



703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
# File 'lib/t/cli.rb', line 703

def status(status_id) # rubocop:disable CyclomaticComplexity
  opts = {include_my_retweet: false}
  opts[:include_entities] = !!options['decode_uris']
  status = client.status(status_id.to_i, opts)
  location = if status.place?
    if status.place.name? && status.place.attributes? && status.place.attributes[:street_address] && status.place.attributes[:locality] && status.place.attributes[:region] && status.place.country?
      [status.place.name, status.place.attributes[:street_address], status.place.attributes[:locality], status.place.attributes[:region], status.place.country].join(', ')
    elsif status.place.name? && status.place.attributes? && status.place.attributes[:locality] && status.place.attributes[:region] && status.place.country?
      [status.place.name, status.place.attributes[:locality], status.place.attributes[:region], status.place.country].join(', ')
    elsif status.place.full_name? && status.place.attributes? && status.place.attributes[:region] && status.place.country?
      [status.place.full_name, status.place.attributes[:region], status.place.country].join(', ')
    elsif status.place.full_name? && status.place.country?
      [status.place.full_name, status.place.country].join(', ')
    elsif status.place.full_name?
      status.place.full_name
    else
      status.place.name
    end
  elsif status.geo?
    reverse_geocode(status.geo)
  end
  status_headings = ['ID', 'Posted at', 'Screen name', 'Text', 'Retweets', 'Favorites', 'Source', 'Location']
  if options['csv']
    require 'csv'
    say status_headings.to_csv
    say [status.id, csv_formatted_time(status), status.user.screen_name, decode_full_text(status, options['decode_uris']), status.retweet_count, status.favorite_count, strip_tags(status.source), location].to_csv
  elsif options['long']
    array = [status.id, ls_formatted_time(status), "@#{status.user.screen_name}", decode_full_text(status, options['decode_uris']).gsub(/\n+/, ' '), status.retweet_count, status.favorite_count, strip_tags(status.source), location]
    format = options['format'] || Array.new(status_headings.size) { '%s' }
    print_table_with_headings([array], status_headings, format)
  else
    array = []
    array << ['ID', status.id.to_s]
    array << ['Text', decode_full_text(status, options['decode_uris']).gsub(/\n+/, ' ')]
    array << ['Screen name', "@#{status.user.screen_name}"]
    array << ['Posted at', "#{ls_formatted_time(status, :created_at, false)} (#{time_ago_in_words(status.created_at)} ago)"]
    array << ['Retweets', number_with_delimiter(status.retweet_count)]
    array << ['Favorites', number_with_delimiter(status.favorite_count)]
    array << ['Source', strip_tags(status.source)]
    array << ['Location', location] unless location.nil?
    print_table(array)
  end
end

#timeline(user = nil) ⇒ Object



758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
# File 'lib/t/cli.rb', line 758

def timeline(user = nil)
  count = options['number'] || DEFAULT_NUM_RESULTS
  opts = {}
  opts[:exclude_replies] = true if options['exclude'] == 'replies'
  opts[:include_entities] = !!options['decode_uris']
  opts[:include_rts] = false if options['exclude'] == 'retweets'
  opts[:max_id] = options['max_id'] if options['max_id']
  opts[:since_id] = options['since_id'] if options['since_id']
  if user
    require 't/core_ext/string'
    user = options['id'] ? user.to_i : user.strip_ats
    tweets = collect_with_count(count) do |count_opts|
      client.user_timeline(user, count_opts.merge(opts))
    end
  else
    tweets = collect_with_count(count) do |count_opts|
      client.home_timeline(count_opts.merge(opts))
    end
  end
  print_tweets(tweets)
end

#trend_locationsObject



797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
# File 'lib/t/cli.rb', line 797

def trend_locations
  places = client.trend_locations
  places = case options['sort']
  when 'country'
    places.sort_by { |place| place.country.downcase }
  when 'parent'
    places.sort_by { |place| place.parent_id.to_i }
  when 'type'
    places.sort_by { |place| place.place_type.downcase }
  when 'woeid'
    places.sort_by { |place| place.woeid.to_i }
  else
    places.sort_by { |place| place.name.downcase }
  end unless options['unsorted']
  places.reverse! if options['reverse']
  if options['csv']
    require 'csv'
    say TREND_HEADINGS.to_csv unless places.empty?
    places.each do |place|
      say [place.woeid, place.parent_id, place.place_type, place.name, place.country].to_csv
    end
  elsif options['long']
    array = places.collect do |place|
      [place.woeid, place.parent_id, place.place_type, place.name, place.country]
    end
    format = options['format'] || Array.new(TREND_HEADINGS.size) { '%s' }
    print_table_with_headings(array, TREND_HEADINGS, format)
  else
    print_attribute(places, :name)
  end
end


783
784
785
786
787
788
# File 'lib/t/cli.rb', line 783

def trends(woe_id = 1)
  opts = {}
  opts[:exclude] = 'hashtags' if options['exclude-hashtags']
  trends = client.trends(woe_id, opts)
  print_attribute(trends, :name)
end

#unfollow(user, *users) ⇒ Object



832
833
834
835
836
837
838
839
# File 'lib/t/cli.rb', line 832

def unfollow(user, *users)
  unfollowed_users, number = fetch_users(users.unshift(user), options) do |users_to_unfollow|
    client.unfollow(users_to_unfollow)
  end
  say "@#{@rcfile.active_profile[0]} is no longer following #{pluralize(number, 'user')}."
  say
  say "Run `#{File.basename($PROGRAM_NAME)} follow #{unfollowed_users.collect { |unfollowed_user| "@#{unfollowed_user.screen_name}" }.join(' ')}` to follow again."
end

#update(message = nil) ⇒ Object



844
845
846
847
848
849
850
851
852
853
854
855
856
# File 'lib/t/cli.rb', line 844

def update(message = nil)
  message = T::Editor.gets if message.to_s.empty?
  opts = {trim_user: true}
  add_location!(options, opts)
  status = if options['file']
    client.update_with_media(message, File.new(File.expand_path(options['file'])), opts)
  else
    client.update(message, opts)
  end
  say "Tweet posted by @#{@rcfile.active_profile[0]}."
  say
  say "Run `#{File.basename($PROGRAM_NAME)} delete status #{status.id}` to delete."
end

#users(user, *users) ⇒ Object



867
868
869
870
871
872
873
874
875
876
# File 'lib/t/cli.rb', line 867

def users(user, *users)
  users.unshift(user)
  require 't/core_ext/string'
  options['id'] ? users.collect!(&:to_i) : users.collect!(&:strip_ats)
  require 'retryable'
  users = Retryable.retryable(tries: 3, on: Twitter::Error, sleep: 0) do
    client.users(users)
  end
  print_users(users)
end

#versionObject



880
881
882
883
# File 'lib/t/cli.rb', line 880

def version
  require 't/version'
  say T::Version
end

#whoamiObject



925
926
927
928
929
930
931
932
# File 'lib/t/cli.rb', line 925

def whoami
  if @rcfile.active_profile && @rcfile.active_profile[0]
    user = @rcfile.active_profile[0]
    whois(user)
  else
    $stderr.puts "You haven't authorized an account, run `t authorize` to get started."
  end
end

#whois(user) ⇒ Object



892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
# File 'lib/t/cli.rb', line 892

def whois(user)
  require 't/core_ext/string'
  opts = {}
  opts[:include_entities] = !!options['decode_uris']
  user = options['id'] ? user.to_i : user.strip_ats
  user = client.user(user, opts)
  if options['csv'] || options['long']
    print_users([user])
  else
    array = []
    array << ['ID', user.id.to_s]
    array << ['Since', "#{ls_formatted_time(user, :created_at, false)} (#{time_ago_in_words(user.created_at)} ago)"]
    array << ['Last update', "#{decode_full_text(user.status, options['decode_uris']).gsub(/\n+/, ' ')} (#{time_ago_in_words(user.status.created_at)} ago)"] unless user.status.nil?
    array << ['Screen name', "@#{user.screen_name}"]
    array << [user.verified? ? 'Name (Verified)' : 'Name', user.name] unless user.name.nil? # rubocop:disable BlockNesting
    array << ['Tweets', number_with_delimiter(user.statuses_count)]
    array << ['Favorites', number_with_delimiter(user.favorites_count)]
    array << ['Listed', number_with_delimiter(user.listed_count)]
    array << ['Following', number_with_delimiter(user.friends_count)]
    array << ['Followers', number_with_delimiter(user.followers_count)]
    array << ['Bio', user.description.gsub(/\n+/, ' ')] unless user.description.nil?
    array << ['Location', user.location] unless user.location.nil?
    array << ['URL', user.website] unless user.website.nil?
    print_table(array)
  end
end