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']
MAX_SEARCH_RESULTS =
100
TREND_HEADINGS =
['WOEID', 'Parent ID', 'Type', 'Name', 'Country']

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

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].keys.each 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
111
112
# 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 API Keys tab to view the consumer key and secret,'
    say "     which you'll need to copy and paste below when prompted."
    say
    ask 'Press [Enter] to open the Twitter Developer site.'
    say
  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.'
    say
    ask 'Press [Enter] to open the Twitter Developer site.'
    say
  end
  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::ENDPOINT)
  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?include_entities=false&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



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

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



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

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'] || DIRECT_MESSAGE_HEADINGS.size.times.collect { '%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



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

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'] || DIRECT_MESSAGE_HEADINGS.size.times.collect { '%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



197
198
199
200
201
202
# File 'lib/t/cli.rb', line 197

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



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

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



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

def does_follow(user1, user2 = nil)
  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] }
  else
    if options['id']
      Thread.new { client.user(user2.to_i).screen_name }
    else
      Thread.new { user2.strip_ats }
    end
  end
  user1, user2 = thread1.value, 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



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

def favorite(status_id, *status_ids)
  status_ids.unshift(status_id)
  status_ids.collect!(&:to_i)
  require 'retryable'
  favorites = 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



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

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



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

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



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

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(:tries => 3, :on => Twitter::Error, :sleep => 0) do
    client.users(follower_ids)
  end
  print_users(users)
end

#followings(user = nil) ⇒ Object



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

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(:tries => 3, :on => Twitter::Error, :sleep => 0) do
    client.users(following_ids)
  end
  print_users(users)
end

#followings_following(user1, user2 = nil) ⇒ Object



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

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(:tries => 3, :on => Twitter::Error, :sleep => 0) do
    client.users(followings_following_ids)
  end
  print_users(users)
end

#friends(user = nil) ⇒ Object



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

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(:tries => 3, :on => Twitter::Error, :sleep => 0) do
    client.users(friend_ids)
  end
  print_users(users)
end

#groupies(user = nil) ⇒ Object



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

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 }
  disciple_ids = (follower_ids.value - following_ids.value)
  require 'retryable'
  users = retryable(:tries => 3, :on => Twitter::Error, :sleep => 0) do
    client.users(disciple_ids)
  end
  print_users(users)
end

#intersection(first_user, *users) ⇒ Object



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

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(:tries => 3, :on => Twitter::Error, :sleep => 0) do
    client.users(intersection)
  end
  print_users(users)
end

#leaders(user = nil) ⇒ Object



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

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(:tries => 3, :on => Twitter::Error, :sleep => 0) do
    client.users(leader_ids)
  end
  print_users(users)
end

#lists(user = nil) ⇒ Object



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

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



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

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



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

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

#open(user) ⇒ Object



532
533
534
535
536
537
538
539
540
541
542
543
544
# File 'lib/t/cli.rb', line 532

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

#reply(status_id, message) ⇒ Object



549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
# File 'lib/t/cli.rb', line 549

def reply(status_id, message)
  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 = client.update("#{users.join(' ')} #{message}", opts)
  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



569
570
571
572
573
574
# File 'lib/t/cli.rb', line 569

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



578
579
580
581
582
583
584
585
586
587
588
589
# File 'lib/t/cli.rb', line 578

def retweet(status_id, *status_ids)
  status_ids.unshift(status_id)
  status_ids.collect!(&:to_i)
  require 'retryable'
  retweets = 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 { |tweet| tweet.retweeted_status.id }.join(' ')}` to undo."
end

#retweets(user = nil) ⇒ Object



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

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_me(user = nil) ⇒ Object



627
628
629
630
631
632
633
634
635
# File 'lib/t/cli.rb', line 627

def retweets_of_me(user = nil)
  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



640
641
642
643
# File 'lib/t/cli.rb', line 640

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

#status(status_id) ⇒ Object

rubocop:disable CyclomaticComplexity



650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
# File 'lib/t/cli.rb', line 650

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'] || status_headings.size.times.collect { '%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



705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
# File 'lib/t/cli.rb', line 705

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



744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
# File 'lib/t/cli.rb', line 744

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'] || TREND_HEADINGS.size.times.collect { '%s' }
    print_table_with_headings(array, TREND_HEADINGS, format)
  else
    print_attribute(places, :name)
  end
end


730
731
732
733
734
735
# File 'lib/t/cli.rb', line 730

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

#unfollow(user, *users) ⇒ Object



779
780
781
782
783
784
785
786
# File 'lib/t/cli.rb', line 779

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



791
792
793
794
795
796
797
798
799
800
801
802
803
# File 'lib/t/cli.rb', line 791

def update(message = nil)
  message = T::Editor.gets if message.nil? || message.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



814
815
816
817
818
819
820
821
822
823
# File 'lib/t/cli.rb', line 814

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(:tries => 3, :on => Twitter::Error, :sleep => 0) do
    client.users(users)
  end
  print_users(users)
end

#versionObject



827
828
829
830
# File 'lib/t/cli.rb', line 827

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

#whoamiObject



872
873
874
875
# File 'lib/t/cli.rb', line 872

def whoami
  user = @rcfile.active_profile[0]
  whois(user)
end

#whois(user) ⇒ Object

rubocop:disable CyclomaticComplexity



839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
# File 'lib/t/cli.rb', line 839

def whois(user) # rubocop:disable CyclomaticComplexity
  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