Class: Ayadn::Action

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

Instance Method Summary collapse

Constructor Details

#initializeAction

Returns a new instance of Action.



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

def initialize
  @api = API.new
  @view = View.new
  @workers = Workers.new
  @status = Status.new
  @check = Check.new
  Settings.load_config
  Settings.get_token
  Settings.init_config
  Logs.create_logger
  Databases.open_databases
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(meth, options) ⇒ Object



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

def method_missing(meth, options)
  case meth.to_s
  when 'unified', 'checkins', 'global', 'trending', 'photos', 'conversations', 'interactions'
    begin
      Settings.options[:timeline][:compact] = true if options[:compact] == true
      stream = Stream.new(@api, @view, @workers)
      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



662
663
664
665
666
667
668
669
670
# File 'lib/ayadn/action.rb', line 662

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

#block(usernames) ⇒ Object



222
223
224
225
226
227
228
229
230
231
232
233
234
235
# File 'lib/ayadn/action.rb', line 222

def block(usernames)
  begin
    @check.no_username(usernames)
    users = @workers.all_but_me(usernames)
    puts "\n"
    @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



392
393
394
395
396
397
398
399
400
# File 'lib/ayadn/action.rb', line 392

def blocked(options)
  begin
    Settings.options[:timeline][:compact] = true if options[:compact] == true
    stream = Stream.new(@api, @view, @workers)
    stream.blocked(options)
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [options]})
  end
end

#channels(options) ⇒ Object



527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
# File 'lib/ayadn/action.rb', line 527

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



89
90
91
92
93
94
95
96
97
# File 'lib/ayadn/action.rb', line 89

def convo(post_id, options)
  begin
    Settings.options[:timeline][:compact] = true if options[:compact] == true
    stream = Stream.new(@api, @view, @workers)
    stream.convo(post_id, options)
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [post_id, options]})
  end
end

#delete(post_ids, options = {}) ⇒ Object



99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# File 'lib/ayadn/action.rb', line 99

def delete(post_ids, options = {})
  begin
    ids = post_ids.select { |post_id| post_id.is_integer? }
    if ids.empty?
      @status.error_missing_post_id
      exit
    end
    if options[:force]
      Settings.global[:force] = true
    else
      ids.map! { |post_id| @workers.get_real_post_id(post_id) }
    end
    puts "\n"
    ids.each do |post_id|
      @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_ids]})
  end
end

#delete_m(args) ⇒ Object



122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
# File 'lib/ayadn/action.rb', line 122

def delete_m(args)
  begin
    unless args.length >= 2
      @status.error_missing_message_id
      exit
    end
    channel = args[0]
    args.shift
    ids = args.select {|message_id| message_id.is_integer?}
    if ids.empty?
      @status.error_missing_message_id
      exit
    end
    channel_id = @workers.get_channel_id_from_alias(channel)
    puts "\n"
    ids.each do |message_id|
      @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: [args]})
  end
end

#download(file_id) ⇒ Object



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

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

#files(options) ⇒ Object



500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
# File 'lib/ayadn/action.rb', line 500

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



162
163
164
165
166
167
168
169
170
171
172
173
174
175
# File 'lib/ayadn/action.rb', line 162

def follow(usernames)
  begin
    @check.no_username(usernames)
    users = @workers.all_but_me(usernames)
    puts "\n"
    @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



372
373
374
375
376
377
378
379
380
# File 'lib/ayadn/action.rb', line 372

def followers(username, options)
  begin
    Settings.options[:timeline][:compact] = true if options[:compact] == true
    stream = Stream.new(@api, @view, @workers)
    stream.followers(username, options)
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [username, options]})
  end
end

#followings(username, options) ⇒ Object



362
363
364
365
366
367
368
369
370
# File 'lib/ayadn/action.rb', line 362

def followings(username, options)
  begin
    Settings.options[:timeline][:compact] = true if options[:compact] == true
    stream = Stream.new(@api, @view, @workers)
    stream.followings(username, options)
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [username, options]})
  end
end

#hashtag(hashtag, options) ⇒ Object



342
343
344
345
346
347
348
349
350
# File 'lib/ayadn/action.rb', line 342

def hashtag(hashtag, options)
  begin
    Settings.options[:timeline][:compact] = true if options[:compact] == true
    search = Search.new(@api, @view, @workers)
    search.hashtag(hashtag, options)
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [hashtag, options]})
  end
end

#mentions(username, options) ⇒ Object



39
40
41
42
43
44
45
46
47
# File 'lib/ayadn/action.rb', line 39

def mentions(username, options)
  begin
    Settings.options[:timeline][:compact] = true if options[:compact] == true
    stream = Stream.new(@api, @view, @workers)
    stream.mentions(username, options)
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [username, options]})
  end
end

#messages(channel_id, options) ⇒ Object



549
550
551
552
553
554
555
556
557
# File 'lib/ayadn/action.rb', line 549

def messages(channel_id, options)
  begin
    Settings.options[:timeline][:compact] = true if options[:compact] == true
    stream = Stream.new(@api, @view, @workers)
    stream.messages(channel_id, options)
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [channel_id, options]})
  end
end

#messages_unread(options) ⇒ Object



559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
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
# File 'lib/ayadn/action.rb', line 559

def messages_unread(options)
  begin
    Settings.options[:timeline][:compact] = true if options[:compact] == true
    if options[:silent]
      Settings.options[:marker][:messages] = false
    end
    puts "\n"
    @status.say_nocolor :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
    if unread_channels.empty?
      @status.no_new_messages
      exit
    end
    unread_messages = {}
    unread_channels.reverse.each do |id|
      @status.say_nocolor :downloading, "messages from channel #{id}"
      since = Databases.find_last_id_from("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][:messages] == true
      unread_messages.each do |k,v|
        name = "channel:#{k}"
        Databases.pagination_insert(name, v[1])
        resp = @api.update_marker(name, v[1])
        res = JSON.parse(resp)
        if res['meta']['code'] != 200
          @status.say_error "couldn't update channel #{k} as read"
        else
          @status.say_green :updated, "channel #{k} as read"
        end
      end
    end
    @view.clear_screen
    unread_messages.each do |k,v|
      @status.unread_from_channel(k)
      @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



192
193
194
195
196
197
198
199
200
201
202
203
204
205
# File 'lib/ayadn/action.rb', line 192

def mute(usernames)
  begin
    @check.no_username(usernames)
    users = @workers.all_but_me(usernames)
    puts "\n"
    @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



382
383
384
385
386
387
388
389
390
# File 'lib/ayadn/action.rb', line 382

def muted(options)
  begin
    Settings.options[:timeline][:compact] = true if options[:compact] == true
    stream = Stream.new(@api, @view, @workers)
    stream.muted(options)
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [options]})
  end
end

#nowplaying(options = {}) ⇒ Object



845
846
847
848
849
850
851
852
853
854
855
# File 'lib/ayadn/action.rb', line 845

def nowplaying(options = {})
  Settings.options[:timeline][:compact] = true if options[:compact] == true
  np = NowPlaying.new(@api, @view, @workers, options)
  if options[:lastfm]
    np.lastfm(options)
  elsif options[:deezer]
    np.deezer(options)
  else
    np.itunes(options)
  end
end

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



857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
# File 'lib/ayadn/action.rb', line 857

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

#pin(post_id, usertags, options = {}) ⇒ Object



620
621
622
623
624
625
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
# File 'lib/ayadn/action.rb', line 620

def pin(post_id, usertags, options = {})
  begin
    require 'pinboard'
    require 'base64'
  rescue LoadError => e
    puts "\nAYADN: Error while loading Gems\n\n"
    puts "RUBY: #{e}\n\n"
    exit
  end
  begin
    @check.bad_post_id(post_id)
    Settings.options[:timeline][:compact] = true if options[:compact] == true
    if options[:force]
      Settings.global[:force] = true
    else
      post_id = @workers.get_real_post_id(post_id)
    end
    @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?
      @status.no_pin_creds
      pinner.ask_credentials
      @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, resp['canonical_url'])
    @status.saving_pin
    pinner.pin(bookmark)
    @status.done
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [post_id, usertags]})
  end
end

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



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
746
747
748
749
750
751
752
753
# File 'lib/ayadn/action.rb', line 713

def pmess(username, options = {})
	begin
    Settings.options[:timeline][:compact] = true if options[:compact] == true
    if options[:silent]
      Settings.options[:marker][:messages] = false
    end
    @check.no_username(username)
    username = [@workers.add_arobase(username)]
		writer = Post.new
    @status.message_from(username)
		@status.message
		lines_array = writer.compose
    text = lines_array.join("\n")
    writer.message_size_error(text) if writer.message_size_ok?(text) == false
		@view.clear_screen
    @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][:messages] == true
      if resp['meta']['code'] == 200
        data = resp['data']
        name = "channel:#{data['channel_id']}"
        Databases.pagination_insert(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][:messages]
		@view.clear_screen
		@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



672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
# File 'lib/ayadn/action.rb', line 672

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

#postinfo(post_id, options) ⇒ Object



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

def (post_id, options)
  begin
    @check.bad_post_id(post_id)
    Settings.options[:timeline][:compact] = true if options[:compact] == true
    if options[:force]
      Settings.global[:force] = true
    else
      post_id = @workers.get_real_post_id(post_id)
    end
    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']

    if resp["is_deleted"] == true
      @status.user_404(resp["id"])
      Errors.global_error({error: "user 404", caller: caller, data: [post_id, options]})
    end

    response = @api.get_user("@#{resp['user']['username']}")
    @check.no_user(response, response['data']['username'])
    stream = response['data']
    @status.
    @view.show_simple_post([resp], options)
    puts "\n" if Settings.options[:timeline][:compact] == true
    @status.say_info "author"
    puts "\n" unless Settings.options[:timeline][:compact] == true
    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
    if resp['repost_of']
      @status.repost_info
      Errors.repost(post_id, resp['repost_of']['id'])
      @view.show_simple_post([resp['repost_of']], options)
      puts "\n" if Settings.options[:timeline][:compact] == true
    end
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [post_id, options]})
  end
end

#posts(username, options) ⇒ Object



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

def posts(username, options)
  begin
    Settings.options[:timeline][:compact] = true if options[:compact] == true
    stream = Stream.new(@api, @view, @workers)
    stream.posts(username, options)
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [username, options]})
  end
end

#random_posts(options) ⇒ Object



895
896
897
898
899
900
901
902
903
# File 'lib/ayadn/action.rb', line 895

def random_posts(options)
  begin
    Settings.options[:timeline][:compact] = true if options[:compact] == true
    stream = Stream.new(@api, @view, @workers)
    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



755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
# File 'lib/ayadn/action.rb', line 755

def reply(post_id, options = {})
  begin
    Settings.options[:timeline][:compact] = true if options[:compact] == true
    @check.bad_post_id(post_id)
    if options[:force]
      Settings.global[:force] = true
    else
      post_id = @workers.get_real_post_id(post_id)
    end
  	@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
    @status.writing
    @status.reply
    lines_array = writer.compose
    text = lines_array.join("\n")
    # text length is tested in Post class for the reply command
    @view.clear_screen
    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][: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)
    puts "\n" if Settings.options[:timeline][:compact] == true && !options[:raw]
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [post_id, options]})
  end
end

#repost(post_ids, options = {}) ⇒ Object



237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
# File 'lib/ayadn/action.rb', line 237

def repost(post_ids, options = {})
  begin
    ids = post_ids.select { |post_id| post_id.is_integer? }
    if ids.empty?
      @status.error_missing_post_id
      exit
    end
    if options[:force]
      Settings.global[:force] = true
    else
      ids.map! { |post_id| @workers.get_real_post_id(post_id) }
    end
    puts "\n"
    ids.each do |post_id|
      @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))
    end
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [post_ids, id]})
  end
end

#search(words, options) ⇒ Object



352
353
354
355
356
357
358
359
360
# File 'lib/ayadn/action.rb', line 352

def search(words, options)
  begin
    Settings.options[:timeline][:compact] = true if options[:compact] == true
    search = Search.new(@api, @view, @workers)
    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



804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
# File 'lib/ayadn/action.rb', line 804

def send_to_channel(channel_id, options = {})
  begin
    Settings.options[:timeline][:compact] = true if options[:compact] == true
    if options[:silent]
      Settings.options[:marker][:messages] = false
    end
    channel_id = @workers.get_channel_id_from_alias(channel_id)
    writer = Post.new
    @status.writing
    @status.message
    lines_array = writer.compose
    text = lines_array.join("\n")
    writer.message_size_error(text) if writer.message_size_ok?(text) == false
    @view.clear_screen
    @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: text})
    if Settings.options[:marker][:messages] == true
      if resp['meta']['code'] == 200
        data = resp['data']
        name = "channel:#{data['channel_id']}"
        Databases.pagination_insert(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][:messages]
    @view.clear_screen
    @status.yourpost
    @view.show_posted(resp)
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [channel_id, options]})
  end
end

#star(post_ids, options = {}) ⇒ Object



317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
# File 'lib/ayadn/action.rb', line 317

def star(post_ids, options = {})
  begin
    ids = post_ids.select { |post_id| post_id.is_integer? }
    if ids.empty?
      @status.error_missing_post_id
      exit
    end
    if options[:force]
      Settings.global[:force] = true
    else
      ids.map! { |post_id| @workers.get_real_post_id(post_id) }
    end
    puts "\n"
    ids.each do |post_id|
      @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))
    end
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [post_ids]})
  end
end

#streamObject

This class is the main initializer + dispatcher It responds to the CLI commands dispatcher, app.rb



9
# File 'lib/ayadn/action.rb', line 9

require_relative "stream"

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



874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
# File 'lib/ayadn/action.rb', line 874

def tvshow(args, options = {})
  begin
    Settings.options[:timeline][:compact] = true if options[:compact] == true
    if args.empty?
      @status.error_missing_title
      exit
    end
    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
    @status.wtf
    Errors.global_error({error: e, caller: caller, data: [args, options]})
  end
end

#unblock(usernames) ⇒ Object



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

def unblock(usernames)
  begin
    @check.no_username(usernames)
    users = @workers.all_but_me(usernames)
    puts "\n"
    @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



147
148
149
150
151
152
153
154
155
156
157
158
159
160
# File 'lib/ayadn/action.rb', line 147

def unfollow(usernames)
  begin
    @check.no_username(usernames)
    users = @workers.all_but_me(usernames)
    puts "\n"
    @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



177
178
179
180
181
182
183
184
185
186
187
188
189
190
# File 'lib/ayadn/action.rb', line 177

def unmute(usernames)
  begin
    @check.no_username(usernames)
    users = @workers.all_but_me(usernames)
    puts "\n"
    @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_ids, options = {}) ⇒ Object



262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
# File 'lib/ayadn/action.rb', line 262

def unrepost(post_ids, options = {})
  begin
    ids = post_ids.select { |post_id| post_id.is_integer? }
    if ids.empty?
      @status.error_missing_post_id
      exit
    end
    if options[:force]
      Settings.global[:force] = true
    else
      ids.map! { |post_id| @workers.get_real_post_id(post_id) }
    end
    puts "\n"
    ids.each do |post_id|
      @status.unreposting(post_id)
      if @api.get_details(post_id)['data']['you_reposted']
        @check.has_been_unreposted(post_id, @api.unrepost(post_id))
      else
        @status.not_your_repost
      end
    end
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [post_ids]})
  end
end

#unstar(post_ids, options = {}) ⇒ Object



288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
# File 'lib/ayadn/action.rb', line 288

def unstar(post_ids, options = {})
  begin
    ids = post_ids.select { |post_id| post_id.is_integer? }
    if ids.empty?
      @status.error_missing_post_id
      exit
    end
    if options[:force]
      Settings.global[:force] = true
    else
      ids.map! { |post_id| @workers.get_real_post_id(post_id) }
    end
    puts "\n"
    ids.each do |post_id|
      @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
        @status.not_your_starred
      end
    end
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [post_ids]})
  end
end

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



430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
# File 'lib/ayadn/action.rb', line 430

def userinfo(username, options = {})
  begin
    Settings.options[:timeline][:compact] = true if options[:compact] == true
    @check.no_username(username)
    usernames = @workers.add_arobases_to_usernames(username)
    usernames.each.with_index do |username, index|
      if options[:raw]
        @view.show_raw(@api.get_user(username), options)
      else
        @view.downloading if index == 0
        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 if index == 0
        @view.infos(stream['data'], token)
      end
    end
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [username, options]})
  end
end

#userupdate(options) ⇒ Object



416
417
418
419
420
421
422
423
424
425
426
427
428
# File 'lib/ayadn/action.rb', line 416

def userupdate options
  begin
    profile = Profile.new(options)
    profile.get_text_from_user
    profile.prepare_payload
    @status.updating_profile
    profile.update
    @status.done
    userinfo(['me'], options)
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [options]})
  end
end

#view_settings(options) ⇒ Object



402
403
404
405
406
407
408
409
410
411
412
413
414
# File 'lib/ayadn/action.rb', line 402

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

#whatstarred(username, options) ⇒ Object



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

def whatstarred(username, options)
  begin
    Settings.options[:timeline][:compact] = true if options[:compact] == true
    stream = Stream.new(@api, @view, @workers)
    stream.whatstarred(username, options)
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [username, options]})
  end
end

#whoreposted(post_id, options) ⇒ Object



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

def whoreposted(post_id, options)
  begin
    Settings.options[:timeline][:compact] = true if options[:compact] == true
    stream = Stream.new(@api, @view, @workers)
    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



79
80
81
82
83
84
85
86
87
# File 'lib/ayadn/action.rb', line 79

def whostarred(post_id, options)
  begin
    Settings.options[:timeline][:compact] = true if options[:compact] == true
    stream = Stream.new(@api, @view, @workers)
    stream.whostarred(post_id, options)
  rescue => e
    Errors.global_error({error: e, caller: caller, data: [post_id, options]})
  end
end

#write(options) ⇒ Object



691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
# File 'lib/ayadn/action.rb', line 691

def write(options)
  begin
    Settings.options[:timeline][:compact] = true if options[:compact] == true
    writer = Post.new
    @status.writing
    @status.post
    lines_array = writer.compose
    text = lines_array.join("\n")
    writer.post_size_error(text) if writer.post_size_ok?(text) == false
    @view.clear_screen
    @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