commit
f667a7a621
1 changed files with 29 additions and 0 deletions
|
@ -105,6 +105,35 @@ module Ebooks
|
|||
end
|
||||
@mentionless = mless
|
||||
end
|
||||
|
||||
# Get an array of media uris in tweet.
|
||||
# @param size [String] A twitter image size to return. Supported sizes are thumb, small, medium (default), large
|
||||
# @return [Array<String>] image URIs included in tweet
|
||||
def media_uris(size_input = '')
|
||||
case size_input
|
||||
when 'thumb'
|
||||
size = ':thumb'
|
||||
when 'small'
|
||||
size = ':small'
|
||||
when 'medium'
|
||||
size = ':medium'
|
||||
when 'large'
|
||||
size = ':large'
|
||||
else
|
||||
size = ''
|
||||
end
|
||||
|
||||
# Start collecting uris.
|
||||
uris = []
|
||||
if @tweet.media?
|
||||
@tweet.media.each do |each_media|
|
||||
uris << each_media.media_url.to_s + size
|
||||
end
|
||||
end
|
||||
|
||||
# and that's pretty much it!
|
||||
uris
|
||||
end
|
||||
end
|
||||
|
||||
class Bot
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue