Class: Ayadn::Action

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

Instance Method Summary collapse

Constructor Details

#initializeAction

This class is the main initializer + dispatcher



8
9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'lib/ayadn/action.rb', line 8

def initialize
  @api = API.new
  @view = View.new
  @workers = Workers.new
  @stream = Stream.new(@api, @view, @workers)
  @search = Search.new(@api, @view, @workers)
  @shell = Thor::Shell::Color.new
  Settings.load_config
  Settings.get_token
  Settings.init_config
  Logs.create_logger
  Databases.open_databases
  at_exit { Databases.close_all }
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(meth, options) ⇒ Object



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

def method_missing(meth, options)
  case meth.to_s
  when 'unified', 'checkins', 'global', 'trending', 'photos', 'conversations', 'interactions'
    begin
      @stream.send(meth.to_sym, options)
    rescue => e
      Errors.global_error({error: e, caller: caller, data: [meth, options]})
    end
  else
    super
  end
end

Instance Method Details

#auto(options) ⇒ Object



538
539
540
541
542
543
544
545
546
# File 'lib/ayadn/action.rb', line 538

def auto(options)
  begin
    @view.clear_screen
    puts Status.auto
    Post.new.auto_readline
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [options]})
  end
end

#block(usernames) ⇒ Object



186
187
188
189
190
191
192
193
194
195
196
197
198
# File 'lib/ayadn/action.rb', line 186

def block(usernames)
  begin
    Check.no_username(usernames)
    users = @workers.all_but_me(usernames)
    puts Status.blocking(users.join(','))
    users.each do |user|
      resp = @api.block(user)
      Check.has_been_blocked(user, resp)
    end
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [usernames]})
  end
end

#blocked(options) ⇒ Object



297
298
299
300
301
302
303
# File 'lib/ayadn/action.rb', line 297

def blocked(options)
  begin
    @stream.blocked(options)
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [options]})
  end
end

#channels(options) ⇒ Object



417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
# File 'lib/ayadn/action.rb', line 417

def channels options
  begin
    channels = if options[:id]
      channel_id = options[:id].map {|id| @workers.get_channel_id_from_alias(id)}
      lambda { @api.get_channel(channel_id, options) }
    else
      lambda { @api.get_channels }
    end
    if options[:raw]
      @view.show_raw(channels.call)
      exit
    else
      @view.downloading
      resp = channels.call
      @view.clear_screen
      @view.show_channels(resp, options)
    end
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [options]})
  end
end

#convo(post_id, options) ⇒ Object



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

def convo(post_id, options)
  begin
    @stream.convo(post_id, options)
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [post_id, options]})
  end
end

#delete(post_ids) ⇒ Object



84
85
86
87
88
89
90
91
92
93
94
95
96
# File 'lib/ayadn/action.rb', line 84

def delete(post_ids)
  begin
    ids = post_ids.select { |post_id| post_id.is_integer? }
    abort(Status.error_missing_post_id) if ids.empty?
    ids.each do |post_id|
      print Status.deleting_post(post_id)
      resp = @api.delete_post(post_id)
      Check.has_been_deleted(post_id, resp)
    end
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [post_id]})
  end
end

#delete_m(args) ⇒ Object



98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# File 'lib/ayadn/action.rb', line 98

def delete_m(args)
  begin
    abort(Status.error_missing_message_id) unless args.length >= 2
    channel = args[0]
    args.shift
    ids = args.select {|message_id| message_id.is_integer?}
    abort(Status.error_missing_message_id) if ids.empty?
    channel_id = @workers.get_channel_id_from_alias(channel)
    ids.each do |message_id|
      print Status.deleting_message(message_id)
      resp = @api.delete_message(channel_id, message_id)
      Check.message_has_been_deleted(message_id, resp)
    end
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [message_id]})
  end
end

#download(file_id) ⇒ Object



407
408
409
410
411
412
413
414
415
# File 'lib/ayadn/action.rb', line 407

def download(file_id)
  begin
    file = @api.get_file(file_id)['data']
    FileOps.download_url(file['name'], file['url'])
    puts Status.downloaded(file['name'])
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [file_id, file['url']]})
  end
end

#files(options) ⇒ Object



390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
# File 'lib/ayadn/action.rb', line 390

def files(options)
  begin
    get_files = lambda { @api.get_files_list(options) }
    if options[:raw]
      @view.show_raw(get_files.call)
    else
      @view.downloading
      list = get_files.call
      Errors.no_data('files') if list.empty?
      @view.clear_screen
      @view.show_files_list(list)
    end
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [options]})
  end
end

#follow(usernames) ⇒ Object



130
131
132
133
134
135
136
137
138
139
140
141
142
# File 'lib/ayadn/action.rb', line 130

def follow(usernames)
  begin
    Check.no_username(usernames)
    users = @workers.all_but_me(usernames)
    puts Status.following(users.join(','))
    users.each do |user|
      resp = @api.follow(user)
      Check.has_been_followed(user, resp)
    end
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [usernames]})
  end
end

#followers(username, options) ⇒ Object



281
282
283
284
285
286
287
# File 'lib/ayadn/action.rb', line 281

def followers(username, options)
  begin
    @stream.followers(username, options)
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [username, options]})
  end
end

#followings(username, options) ⇒ Object



273
274
275
276
277
278
279
# File 'lib/ayadn/action.rb', line 273

def followings(username, options)
  begin
    @stream.followings(username, options)
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [username, options]})
  end
end

#hashtag(hashtag, options) ⇒ Object



257
258
259
260
261
262
263
# File 'lib/ayadn/action.rb', line 257

def hashtag(hashtag, options)
  begin
    @search.hashtag(hashtag, options)
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [hashtag, options]})
  end
end

#mentions(username, options) ⇒ Object



36
37
38
39
40
41
42
# File 'lib/ayadn/action.rb', line 36

def mentions(username, options)
  begin
    @stream.mentions(username, options)
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [username, options]})
  end
end

#messages(channel_id, options) ⇒ Object



439
440
441
442
443
444
445
# File 'lib/ayadn/action.rb', line 439

def messages(channel_id, options)
  begin
    @stream.messages(channel_id, options)
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [channel_id, options]})
  end
end

#messages_unread(options) ⇒ Object



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

def messages_unread(options)
  begin
    if options[:silent]
      Settings.options[:marker][:update_messages] = false
    end
    puts "\n"
    @shell.say_status :searching, "channels with unread PMs"
    response = @api.get_channels
    unread_channels = []
    response['data'].map do |ch|
      if ch['type'] == "net.app.core.pm" && ch['has_unread'] == true
        unread_channels << ch['id']
      end
    end
    abort(Status.no_new_messages) if unread_channels.empty?
    unread_messages = {}
    unread_channels.each do |id|
      @shell.say_status :downloading, "messages from channel #{id}"
      since = Databases.pagination["channel:#{id}"]
      unless since.nil?
        api_options = {count: 20, since_id: since}
      else
        api_options = {count: 20}
      end
      ch = @api.get_messages(id, api_options)
      last_read_id = ch['meta']['marker']['last_read_id'].to_i
      last_message_id = ch['meta']['max_id']
      messages = []
      ch['data'].each do |msg|
        messages << msg if msg['id'].to_i > last_read_id
      end
      unread_messages[id] = [messages, last_message_id]
    end
    if Settings.options[:marker][:update_messages] == true
      unread_messages.each do |k,v|
        name = "channel:#{k}"
        Databases.pagination[name] = v[1]
        resp = @api.update_marker(name, v[1])
        res = JSON.parse(resp)
        if res['meta']['code'] != 200
          @shell.say_status :error, "couldn't update channel #{k} as read", :red
        else
          @shell.say_status :updated, "channel #{k} as read", :green
        end
      end
    end
    @view.clear_screen
    unread_messages.each do |k,v|
      if v[0].length == 1
        puts "\nUnread message from channel #{k}:\n".color(Settings.options[:colors][:unread]).inverse
      else
        puts "\nUnread messages from channel #{k}:\n".color(Settings.options[:colors][:unread]).inverse
      end
      @view.show_posts(v[0])
    end
    puts "\n" if Settings.options[:timeline][:compact]
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [options]})
  end
end

#mute(usernames) ⇒ Object



158
159
160
161
162
163
164
165
166
167
168
169
170
# File 'lib/ayadn/action.rb', line 158

def mute(usernames)
  begin
    Check.no_username(usernames)
    users = @workers.all_but_me(usernames)
    puts Status.muting(users.join(','))
    users.each do |user|
      resp = @api.mute(user)
      Check.has_been_muted(user, resp)
    end
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [usernames]})
  end
end

#muted(options) ⇒ Object



289
290
291
292
293
294
295
# File 'lib/ayadn/action.rb', line 289

def muted(options)
  begin
    @stream.muted(options)
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [options]})
  end
end

#nowplaying(options = {}) ⇒ Object



707
708
709
710
# File 'lib/ayadn/action.rb', line 707

def nowplaying(options = {})
  np = NowPlaying.new(@api, @view, @workers)
  options[:lastfm] ? np.lastfm(options) : np.itunes(options)
end

#nowwatching(args, options = {}) ⇒ Object



712
713
714
715
716
717
718
719
720
721
722
723
# File 'lib/ayadn/action.rb', line 712

def nowwatching(args, options = {})
  begin
    abort(Status.error_missing_title) if args.empty?
    nw = NowWatching.new(@view)
    nw.post(args, options)
  rescue ArgumentError => e
    puts Status.no_movie
  rescue => e
    puts Status.wtf
    Errors.global_error({error: e, caller: caller, data: [args, options]})
  end
end

#pin(post_id, usertags) ⇒ Object



508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
# File 'lib/ayadn/action.rb', line 508

def pin(post_id, usertags)
  require 'pinboard'
  require 'base64'
  begin
    Check.bad_post_id(post_id)
    @view.downloading
    resp = @api.get_details(post_id)['data']
    @view.clear_screen
    links = @workers.extract_links(resp)
    resp['text'].nil? ? text = "" : text = resp['text']
    usertags << "ADN"
    handle = "@" + resp['user']['username']
    post_text = "From: #{handle} -- Text: #{text} -- Links: #{links.join(" ")}"
    pinner = Ayadn::PinBoard.new
    unless pinner.has_credentials_file?
      puts Status.no_pin_creds
      pinner.ask_credentials
      puts Status.pin_creds_saved
    end
    credentials = pinner.load_credentials
    maker = Struct.new(:username, :password, :url, :tags, :text, :description)
    bookmark = maker.new(credentials[0], credentials[1], resp['canonical_url'], usertags.join(","), post_text, links[0])
    puts Status.saving_pin
    pinner.pin(bookmark)
    puts Status.done
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [post_id, usertags]})
  end
end

#pmess(username, options = {}) ⇒ Object



585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
# File 'lib/ayadn/action.rb', line 585

def pmess(username, options = {})
	begin
    if options[:silent]
      Settings.options[:marker][:update_messages] = false
    end
    Check.no_username(username)
    username = [@workers.add_arobase(username)]
		writer = Post.new
    puts Status.message_from(username)
		puts Status.message
		lines_array = writer.compose
		writer.check_message_length(lines_array)
    text = lines_array.join("\n")
		@view.clear_screen
    puts Status.posting
    if options[:poster]
      settings = options.dup
      options = NowWatching.new.get_poster(settings[:poster], settings)
    end
    resp = writer.pm({options: options, text: text, username: username})
    if Settings.options[:marker][:update_messages] == true
      if resp['meta']['code'] == 200
        data = resp['data']
        name = "channel:#{data['channel_id']}"
        Databases.pagination[name] = data['id']
        marked = @api.update_marker(name, data['id'])
        updated = JSON.parse(marked)
        if updated['meta']['code'] != 200
          raise "couldn't update channel #{data['channel_id']} as read"
        end
      end
    end
    FileOps.save_message(resp) if Settings.options[:backup][:auto_save_sent_messages]
		@view.clear_screen
		puts Status.yourmessage(username[0])
		@view.show_posted(resp)
	rescue => e
    Errors.global_error({error: e, caller: caller, data: [username, options]})
	end
end

#post(args, options) ⇒ Object



548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
# File 'lib/ayadn/action.rb', line 548

def post(args, options)
  begin
    writer = Post.new
    @view.clear_screen
    puts Status.posting
    if options[:poster] # Returns the same options hash + poster embed
      settings = options.dup
      options = NowWatching.new.get_poster(settings[:poster], settings)
    end
    resp = writer.post({options: options, text: args.join(" ")})
    save_and_view(resp)
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [args, options]})
  end
end

#postinfo(post_id, options) ⇒ Object



352
353
354
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
# File 'lib/ayadn/action.rb', line 352

def (post_id, options)
  begin
    Settings.options[:force] = true if options[:force]
    Check.bad_post_id(post_id)
    details = lambda { @api.get_details(post_id, options) }
    if options[:raw]
      @view.show_raw(details.call, options)
      exit
    end
    @view.clear_screen
    response = details.call
    Check.no_post(response, post_id)
    resp = response['data']
    response = @api.get_user("@#{resp['user']['username']}")
    Check.no_user(response, response['data']['username'])
    stream = response['data']
    puts "POST:\n".inverse
    @view.show_simple_post([resp], options)
    if resp['repost_of']
      puts "REPOST OF:\n".inverse
      Errors.repost(post_id, resp['repost_of']['id'])
      @view.show_simple_post([resp['repost_of']], options)
    end
    if Settings.options[:timeline][:compact] == true
      puts "\nAUTHOR:\n".inverse
    else
      puts "AUTHOR:\n".inverse
    end
    if response['data']['username'] == Settings.config[:identity][:username]
      @view.show_userinfos(stream, @api.get_token_info['data'], true)
    else
      @view.show_userinfos(stream, nil, true)
    end
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [post_id, options]})
  end
end

#posts(username, options) ⇒ Object



44
45
46
47
48
49
50
# File 'lib/ayadn/action.rb', line 44

def posts(username, options)
  begin
    @stream.posts(username, options)
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [username, options]})
  end
end

#random_posts(options) ⇒ Object



742
743
744
745
746
747
748
# File 'lib/ayadn/action.rb', line 742

def random_posts(options)
  begin
    @stream.random_posts(options)
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [@max_id, @random_post_id, @resp, options]})
  end
end

#reply(post_id, options = {}) ⇒ Object



626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
# File 'lib/ayadn/action.rb', line 626

def reply(post_id, options = {})
  begin
    post_id = @workers.get_real_post_id(post_id)
  	puts Status.replying_to(post_id)
  	replied_to = @api.get_details(post_id)
    Check.no_post(replied_to, post_id)
    unless options[:noredirect]
      post_id = @workers.get_original_id(post_id, replied_to)
    end
    if replied_to['data']['repost_of']
      if post_id == replied_to['data']['repost_of']['id']
        replied_to = @api.get_details(post_id)
        Check.no_post(replied_to, post_id)
      end
    end
    # ----
    writer = Post.new
    puts Status.writing
    puts Status.reply
    lines_array = writer.compose
    writer.check_post_length(lines_array)
    @view.clear_screen
    text = lines_array.join("\n")
    replied_to = @workers.build_posts([replied_to['data']])
    if options[:poster]
      settings = options.dup
      options = NowWatching.new.get_poster(settings[:poster], settings)
    end
    resp = writer.reply({options: options, text: text, id: post_id, reply_to: replied_to})
    FileOps.save_post(resp) if Settings.options[:backup][:auto_save_sent_posts]
    # ----
    options = options.dup
    unless resp['data']['reply_to'].nil?
      options[:reply_to] = resp['data']['reply_to'].to_i
    end
    options[:post_id] = resp['data']['id'].to_i
    @view.render(@api.get_convo(post_id), options)
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [post_id, options]})
  end
end

#repost(post_id) ⇒ Object



200
201
202
203
204
205
206
207
208
209
210
211
# File 'lib/ayadn/action.rb', line 200

def repost(post_id)
  begin
    Check.bad_post_id(post_id)
    puts Status.reposting(post_id)
    resp = @api.get_details(post_id)
    Check.already_reposted(resp)
    id = @workers.get_original_id(post_id, resp)
    Check.has_been_reposted(id, @api.repost(id))
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [post_id, id]})
  end
end

#search(words, options) ⇒ Object



265
266
267
268
269
270
271
# File 'lib/ayadn/action.rb', line 265

def search(words, options)
  begin
    @search.find(words, options)
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [words, options]})
  end
end

#send_to_channel(channel_id, options = {}) ⇒ Object



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
693
694
695
696
697
698
699
700
701
702
703
704
705
# File 'lib/ayadn/action.rb', line 668

def send_to_channel(channel_id, options = {})
  begin
    if options[:silent]
      Settings.options[:marker][:update_messages] = false
    end
    channel_id = @workers.get_channel_id_from_alias(channel_id)
    writer = Post.new
    puts Status.writing
    puts Status.message
    lines_array = writer.compose
    writer.check_message_length(lines_array)
    @view.clear_screen
    puts Status.posting
    if options[:poster]
      settings = options.dup
      options = NowWatching.new.get_poster(settings[:poster], settings)
    end
    resp = writer.message({options: options, id: channel_id, text: lines_array.join("\n")})
    if Settings.options[:marker][:update_messages] == true
      if resp['meta']['code'] == 200
        data = resp['data']
        name = "channel:#{data['channel_id']}"
        Databases.pagination[name] = data['id']
        marked = @api.update_marker(name, data['id'])
        updated = JSON.parse(marked)
        if updated['meta']['code'] != 200
          raise "couldn't update channel #{data['channel_id']} as read"
        end
      end
    end
    FileOps.save_message(resp) if Settings.options[:backup][:auto_save_sent_messages]
    @view.clear_screen
    puts Status.yourpost
    @view.show_posted(resp)
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [channel_id, options]})
  end
end

#star(post_id) ⇒ Object



244
245
246
247
248
249
250
251
252
253
254
255
# File 'lib/ayadn/action.rb', line 244

def star(post_id)
  begin
    Check.bad_post_id(post_id)
    puts Status.starring(post_id)
    resp = @api.get_details(post_id)
    Check.already_starred(resp)
    id = @workers.get_original_id(post_id, resp)
    Check.has_been_starred(id, @api.star(id))
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [post_id]})
  end
end

#tvshow(args, options = {}) ⇒ Object



725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
# File 'lib/ayadn/action.rb', line 725

def tvshow(args, options = {})
  begin
    abort(Status.error_missing_title) if args.empty?
    client = TvShow.new
    show_obj = if options[:alt]
      client.find_alt(args.join(' '))
    else
      client.find(args.join(' '))
    end
    candidate = client.create_details(show_obj)
    candidate.ok ? candidate.post(options) : candidate.cancel
  rescue => e
    puts Status.wtf
    Errors.global_error({error: e, caller: caller, data: [args, options]})
  end
end

#unblock(usernames) ⇒ Object



172
173
174
175
176
177
178
179
180
181
182
183
184
# File 'lib/ayadn/action.rb', line 172

def unblock(usernames)
  begin
    Check.no_username(usernames)
    users = @workers.all_but_me(usernames)
    puts Status.unblocking(users.join(','))
    users.each do |user|
      resp = @api.unblock(user)
      Check.has_been_unblocked(user, resp)
    end
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [usernames]})
  end
end

#unfollow(usernames) ⇒ Object



116
117
118
119
120
121
122
123
124
125
126
127
128
# File 'lib/ayadn/action.rb', line 116

def unfollow(usernames)
  begin
    Check.no_username(usernames)
    users = @workers.all_but_me(usernames)
    puts Status.unfollowing(users.join(','))
    users.each do |user|
      resp = @api.unfollow(user)
      Check.has_been_unfollowed(user, resp)
    end
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [usernames]})
  end
end

#unmute(usernames) ⇒ Object



144
145
146
147
148
149
150
151
152
153
154
155
156
# File 'lib/ayadn/action.rb', line 144

def unmute(usernames)
  begin
    Check.no_username(usernames)
    users = @workers.all_but_me(usernames)
    puts Status.unmuting(users.join(','))
    users.each do |user|
      resp = @api.unmute(user)
      Check.has_been_unmuted(user, resp)
    end
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [usernames]})
  end
end

#unrepost(post_id) ⇒ Object



213
214
215
216
217
218
219
220
221
222
223
224
225
# File 'lib/ayadn/action.rb', line 213

def unrepost(post_id)
  begin
    Check.bad_post_id(post_id)
    puts Status.unreposting(post_id)
    if @api.get_details(post_id)['data']['you_reposted']
      Check.has_been_unreposted(post_id, @api.unrepost(post_id))
    else
      puts Status.not_your_repost
    end
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [post_id]})
  end
end

#unstar(post_id) ⇒ Object



227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
# File 'lib/ayadn/action.rb', line 227

def unstar(post_id)
  begin
    Check.bad_post_id(post_id)
    puts Status.unstarring(post_id)
    resp = @api.get_details(post_id)
    id = @workers.get_original_id(post_id, resp)
    resp = @api.get_details(id)
    if resp['data']['you_starred']
      Check.has_been_unstarred(id, @api.unstar(id))
    else
      puts Status.not_your_starred
    end
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [post_id]})
  end
end

#userinfo(username, options = {}) ⇒ Object



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

def userinfo(username, options = {})
  begin
    username = [username] unless username.is_a?(Array)
    Check.no_username(username)
    username = @workers.add_arobase(username)
    if options[:raw]
      @view.show_raw(@api.get_user(username), options)
    else
      @view.downloading
      stream = @api.get_user(username)
      Check.no_user(stream, username)
      Check.same_username(stream) ? token = @api.get_token_info['data'] : token = nil
      @view.clear_screen
      @view.infos(stream['data'], token)
    end
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [username, options]})
  end
end

#userupdate(options) ⇒ Object



318
319
320
321
322
323
324
325
326
327
328
329
330
# File 'lib/ayadn/action.rb', line 318

def userupdate options
  begin
    profile = Profile.new(options)
    profile.get_text_from_user
    profile.prepare_payload
    puts "\n\nUpdating profile...\n".color(:green)
    profile.update
    puts Status.done
    userinfo('me')
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [options]})
  end
end

#versionObject



750
751
752
753
754
755
756
757
758
759
760
# File 'lib/ayadn/action.rb', line 750

def version
  begin
    puts "\nAYADN\n".color(:red)
    puts "Version:\t".color(:cyan) + "#{VERSION}\n".color(:green)
    puts "Changelog:\t".color(:cyan) + "https://github.com/ericdke/na/blob/master/CHANGELOG.md\n".color(Settings.options[:colors][:link])
    puts "Docs:\t\t".color(:cyan) + "https://github.com/ericdke/na/tree/master/doc".color(Settings.options[:colors][:link])
    puts "\n"
  rescue => e
    Errors.global_error({error: e, caller: caller, data: []})
  end
end

#view_settings(options) ⇒ Object



305
306
307
308
309
310
311
312
313
314
315
316
# File 'lib/ayadn/action.rb', line 305

def view_settings(options)
  begin
    if options[:raw]
      jj JSON.parse(Settings.config.to_json)
      jj JSON.parse(Settings.options.to_json)
    else
      @view.show_settings
    end
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [options]})
  end
end

#whatstarred(username, options) ⇒ Object



52
53
54
55
56
57
58
# File 'lib/ayadn/action.rb', line 52

def whatstarred(username, options)
  begin
    @stream.whatstarred(username, options)
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [username, options]})
  end
end

#whoreposted(post_id, options) ⇒ Object



60
61
62
63
64
65
66
# File 'lib/ayadn/action.rb', line 60

def whoreposted(post_id, options)
  begin
    @stream.whoreposted(post_id, options)
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [post_id, options]})
  end
end

#whostarred(post_id, options) ⇒ Object



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

def whostarred(post_id, options)
  begin
    @stream.whostarred(post_id, options)
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [post_id, options]})
  end
end

#write(options) ⇒ Object



564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
# File 'lib/ayadn/action.rb', line 564

def write(options)
  begin
    writer = Post.new
    puts Status.writing
    puts Status.post
    lines_array = writer.compose
    writer.check_post_length(lines_array)
    text = lines_array.join("\n")
    @view.clear_screen
    puts Status.posting
    if options[:poster]
      settings = options.dup
      options = NowWatching.new.get_poster(settings[:poster], settings)
    end
    resp = writer.post({options: options, text: text})
    save_and_view(resp)
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [text, options]})
  end
end