Class: Ayadn::Stream

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

Instance Method Summary collapse

Constructor Details

#initialize(api, view, workers) ⇒ Stream

Returns a new instance of Stream.



6
7
8
9
10
# File 'lib/ayadn/stream.rb', line 6

def initialize api, view, workers
  @api = api
  @view = view
  @workers = workers
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(meth, options) ⇒ Object



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

def method_missing(meth, options)
  case meth
  when :checkins, :trending, :photos
    stream(meth, options, "explore:#{meth}")
  when :conversations
    stream(meth, options, "explore:replies")
  when :unified
    stream(meth, options, meth.to_s)
  else
    super
  end
end

Instance Method Details

#blocked(options) ⇒ Object



144
145
146
147
148
149
150
151
# File 'lib/ayadn/stream.rb', line 144

def blocked(options)
  @view.downloading(options)
  show_raw_list(nil, :blocked, options)
  list = @api.get_blocked
  Errors.no_data('blocked') if list.empty?
  @view.list(:blocked, list, nil)
  Databases.add_to_users_db_from_list(list)
end

#convo(post_id, options) ⇒ Object



185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# File 'lib/ayadn/stream.rb', line 185

def convo(post_id, options)
  Settings.options[:force] = true if options[:force]
  Check.bad_post_id(post_id)
  @view.downloading(options)
  details = @api.get_details(post_id, options)
  Check.no_post(details, post_id)
  id = @workers.get_original_id(post_id, details)
  stream = @api.get_convo(id, options)
  Check.no_post(stream, id)
  Databases.pagination["replies:#{id}"] = stream['meta']['max_id']
  options = options.dup
  options[:reply_to] = details['data']['reply_to'].to_i unless details['data']['reply_to'].nil?
  options[:post_id] = post_id.to_i
  @view.render(stream, options)
  Scroll.new(@api, @view).convo(id, options) if options[:scroll]
  puts "\n" if Settings.options[:timeline][:compact] && options[:raw].nil?
end

#followers(username, options) ⇒ Object



122
123
124
125
126
127
128
129
130
131
132
# File 'lib/ayadn/stream.rb', line 122

def followers(username, options)
  Check.no_username(username)
  username = @workers.add_arobase(username)
  @view.downloading(options)
  show_raw_list(username, :followers, options)
  list = @api.get_followers(username)
  Check.auto_save_followers(list)
  Errors.no_data('followers') if list.empty?
  @view.list(:followers, list, username)
  Databases.add_to_users_db_from_list(list)
end

#followings(username, options) ⇒ Object



110
111
112
113
114
115
116
117
118
119
120
# File 'lib/ayadn/stream.rb', line 110

def followings(username, options)
  Check.no_username(username)
  username = @workers.add_arobase(username)
  @view.downloading(options)
  show_raw_list(username, :followings, options)
  list = @api.get_followings(username)
  Check.auto_save_followings(list)
  Errors.no_data('followings') if list.empty?
  @view.list(:followings, list, username)
  Databases.add_to_users_db_from_list(list)
end

#global(settings) ⇒ Object



12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/ayadn/stream.rb', line 12

def global settings
  Settings.options[:force] = true if settings[:force]
  options = settings.dup
  options[:filter] = nicerank_true()
  @view.downloading(options)
  unless options[:scroll]
    stream = @api.get_global(options)
    Settings.options[:force] == true ? niceranks = {} : niceranks = NiceRank.new.get_ranks(stream)
    Check.no_new_posts(stream, options, 'global')
    Databases.save_max_id(stream, 'global') unless stream['meta']['max_id'].nil?
    @view.render(stream, options, niceranks)
  end
  if options[:scroll]
    @view.clear_screen()
    Scroll.new(@api, @view).global(options)
  end
  puts "\n" if Settings.options[:timeline][:compact] && options[:raw].nil?
end

#interactions(options) ⇒ Object



153
154
155
156
157
158
159
# File 'lib/ayadn/stream.rb', line 153

def interactions(options)
  @view.downloading(options)
  stream = @api.get_interactions
  @view.if_raw(stream, options)
  @view.clear_screen
  @view.show_interactions(stream['data'])
end

#mentions(username, options) ⇒ Object



62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# File 'lib/ayadn/stream.rb', line 62

def mentions username, options
  Settings.options[:force] = true if options[:force]
  Check.no_username(username)
  username = @workers.add_arobase(username)
  @view.downloading(options)
  unless options[:scroll]
    stream = @api.get_mentions(username, options)
    Check.no_user(stream, username)
    Databases.save_max_id(stream)
    Check.no_data(stream, 'mentions')
    options = options.dup
    options[:in_mentions] = true
    @view.render(stream, options)
  end
  if options[:scroll]
    @view.clear_screen()
    Scroll.new(@api, @view).mentions(username, options)
  end
  puts "\n" if Settings.options[:timeline][:compact] && options[:raw].nil?
end

#messages(channel_id, options) ⇒ Object



203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
# File 'lib/ayadn/stream.rb', line 203

def messages(channel_id, options)
  if options[:silent]
    Settings.options[:marker][:update_messages] = false
  end
  channel_id = @workers.get_channel_id_from_alias(channel_id)
  @view.downloading(options)
  resp = @api.get_messages(channel_id, options)
  name = "channel:#{channel_id}"
  Check.no_new_posts(resp, options, name)
  if Settings.options[:marker][:update_messages] == true
    unless resp['meta']['max_id'].nil?
      marked = @api.update_marker(name, resp['meta']['max_id'])
      updated = JSON.parse(marked)
      if updated['meta']['code'] != 200
        raise "couldn't update channel #{channel_id} as read"
      end
    end
  end
  Databases.save_max_id(resp)
  @view.if_raw(resp, options)
  Check.no_data(resp, 'messages') unless options[:scroll]
  @view.render(resp, options)
  Scroll.new(@api, @view).messages(channel_id, options) if options[:scroll]
  puts "\n" if Settings.options[:timeline][:compact] && options[:raw].nil?
end

#muted(options) ⇒ Object



134
135
136
137
138
139
140
141
142
# File 'lib/ayadn/stream.rb', line 134

def muted(options)
  @view.downloading(options)
  show_raw_list(nil, :muted, options)
  list = @api.get_muted
  Check.auto_save_muted(list)
  Errors.no_data('muted') if list.empty?
  @view.list(:muted, list, nil)
  Databases.add_to_users_db_from_list(list)
end

#posts(username, options) ⇒ Object



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

def posts username, options
  Settings.options[:force] = true if options[:force]
  Check.no_username(username)
  username = @workers.add_arobase(username)
  @view.downloading(options)
  stream = @api.get_posts(username, options)
  Check.no_user(stream, username)
  Databases.save_max_id(stream) unless stream['meta']['marker'].nil?
  Check.no_data(stream, 'mentions')
  if Databases.blacklist["-#{username.downcase}"] || stream['data'][0]['user']['you_muted'] || stream['data'][0]['user']['you_blocked']
    abort(Status.no_force("#{username.downcase}")) unless options[:raw] || Settings.options[:force]
  end
  @view.render(stream, options)
  Scroll.new(@api, @view).posts(username, options) if options[:scroll]
  puts "\n" if Settings.options[:timeline][:compact] && options[:raw].nil?
end

#random_posts(options) ⇒ Object



229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
# File 'lib/ayadn/stream.rb', line 229

def random_posts(options)
  #_, cols = @view.winsize
  #max_posts = cols / 16
  max_posts = 6
  @view.clear_screen
  puts "Fetching random posts, please wait...".color(:cyan)
  @max_id = @api.get_global({count: 1})['meta']['max_id'].to_i
  @view.clear_screen
  counter = 1
  wait = options[:wait] || 5
  loop do
    begin
      @random_post_id = rand(@max_id)
      @resp = @api.get_details(@random_post_id, {})
      next if @resp['data']['is_deleted']
      @view.show_simple_post([@resp['data']], {})
      counter += 1
      if counter == max_posts
        wait.downto(1) do |i|
          print "\r#{sprintf("%02d", i)} sec... QUIT WITH [CTRL+C]".color(:cyan)
          sleep 1
        end
        @view.clear_screen
        counter = 1
      end
    rescue Interrupt
      abort(Status.canceled)
    end
  end
end

#stream(meth, options, target) ⇒ Object



45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# File 'lib/ayadn/stream.rb', line 45

def stream meth, options, target
  Settings.options[:force] = true if options[:force]
  @view.downloading(options)
  unless options[:scroll]
    stream = @api.send("get_#{meth}".to_sym, options)
    Check.no_new_posts(stream, options, target)
    Databases.save_max_id(stream)
    @view.render(stream, options)
  end
  if options[:scroll]
    @view.clear_screen()
    Scroll.new(@api, @view).send(meth, options)
  end
  puts "\n" if Settings.options[:timeline][:compact] && options[:raw].nil?
end

#whatstarred(username, options) ⇒ Object



100
101
102
103
104
105
106
107
108
# File 'lib/ayadn/stream.rb', line 100

def whatstarred(username, options)
  Check.no_username(username)
  username = @workers.add_arobase(username)
  @view.downloading(options)
  stream = @api.get_whatstarred(username, options)
  Check.no_user(stream, username)
  Check.no_data(stream, 'whatstarred')
  options[:extract] ? @view.all_stars_links(stream) : @view.render(stream, options)
end

#whoreposted(post_id, options) ⇒ Object



161
162
163
164
165
166
167
168
169
170
171
# File 'lib/ayadn/stream.rb', line 161

def whoreposted(post_id, options)
  Check.bad_post_id(post_id)
  @view.downloading(options)
  details = @api.get_details(post_id, options)
  Check.no_post(details, post_id)
  id = @workers.get_original_id(post_id, details)
  list = @api.get_whoreposted(id)
  @view.if_raw(list, options)
  abort(Status.nobody_reposted) if list['data'].empty?
  @view.list(:whoreposted, list['data'], post_id)
end

#whostarred(post_id, options) ⇒ Object



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

def whostarred(post_id, options)
  Check.bad_post_id(post_id)
  @view.downloading(options)
  details = @api.get_details(post_id, options)
  Check.no_post(details, post_id)
  id = @workers.get_original_id(post_id, details)
  list = @api.get_whostarred(id)
  @view.if_raw(list, options)
  abort(Status.nobody_starred) if list['data'].empty?
  @view.list(:whostarred, list['data'], id)
end