Class: Yt::Models::Video
- Defined in:
- lib/yt/models/video.rb
Overview
Provides methods to interact with YouTube videos.
Instance Attribute Summary collapse
-
#annotations ⇒ Yt::Collections::Annotations
readonly
The video’s annotations.
-
#content_detail ⇒ Yt::Models::ContentDetail
readonly
The video’s content details.
-
#live_streaming_detail ⇒ Yt::Models::LiveStreamingDetail
readonly
Live streaming detail.
-
#rating ⇒ Yt::Models::Rating
readonly
The video’s rating.
-
#statistics_set ⇒ Yt::Models::StatisticsSet
readonly
The statistics for the video.
Attributes inherited from Resource
Instance Method Summary collapse
-
#comments(options = {}) ⇒ Hash<Date, Float>
The comments for a range of a days.
-
#comments_on(date) ⇒ Float
The comments for a single day.
-
#delete(options = {}) ⇒ Boolean
Deletes the video.
-
#dislike ⇒ Boolean
Dislikes the video on behalf of the authenticated account.
-
#dislikes(options = {}) ⇒ Hash<Date, Float>
The dislikes for a range of a days.
-
#dislikes_on(date) ⇒ Float
The dislikes for a single day.
-
#earnings(options = {}) ⇒ Hash<Date, Float>
The earnings for a range of a days.
-
#earnings_on(date) ⇒ Float
The earnings for a single day.
- #exists? ⇒ Boolean
-
#impressions(options = {}) ⇒ Hash<Date, Float>
The impressions for a range of a days.
-
#impressions_on(date) ⇒ Float
The impressions for a single day.
-
#initialize(options = {}) ⇒ Video
constructor
Override Resource’s new to set statistics and content details as well if the response includes them.
-
#like ⇒ Boolean
Likes the video on behalf of the authenticated account.
-
#liked? ⇒ Boolean
Returns whether the authenticated account likes the video.
-
#likes(options = {}) ⇒ Hash<Date, Float>
The likes for a range of a days.
-
#likes_on(date) ⇒ Float
The likes for a single day.
-
#shares(options = {}) ⇒ Hash<Date, Float>
The shares for a range of a days.
-
#shares_on(date) ⇒ Float
The shares for a single day.
-
#tags ⇒ Array<Yt::Models::Tag>
Returns the list of keyword tags associated with the video.
-
#unlike ⇒ Boolean
Resets the rating of the video on behalf of the authenticated account.
-
#viewer_percentage(filters = {}) ⇒ Float
The percentage of viewer matching the filters.
-
#viewer_percentages ⇒ Hash<Symbol,Hash<String,Float>>
The viewer percentages.
-
#views(options = {}) ⇒ Hash<Date, Float>
The views for a range of a days.
-
#views_on(date) ⇒ Float
The views for a single day.
Methods inherited from Resource
Methods included from Associations::HasReports
Methods included from Associations::HasViewerPercentages
Methods included from Associations::HasOne
Methods included from Associations::HasMany
Methods included from Associations::HasAuthentication
Constructor Details
#initialize(options = {}) ⇒ Video
Override Resource’s new to set statistics and content details as well if the response includes them
72 73 74 75 76 77 78 79 80 |
# File 'lib/yt/models/video.rb', line 72 def initialize( = {}) super if [:statistics] @statistics_set = StatisticsSet.new data: [:statistics] end if [:content_details] @content_detail = ContentDetail.new data: [:content_details] end end |
Instance Attribute Details
#annotations ⇒ Yt::Collections::Annotations (readonly)
Returns the video’s annotations.
38 |
# File 'lib/yt/models/video.rb', line 38 has_many :annotations |
#content_detail ⇒ Yt::Models::ContentDetail (readonly)
Returns the video’s content details.
22 |
# File 'lib/yt/models/video.rb', line 22 has_one :content_detail |
#live_streaming_detail ⇒ Yt::Models::LiveStreamingDetail (readonly)
Returns live streaming detail.
32 |
# File 'lib/yt/models/video.rb', line 32 has_one :live_streaming_detail |
#rating ⇒ Yt::Models::Rating (readonly)
Returns the video’s rating.
28 |
# File 'lib/yt/models/video.rb', line 28 has_one :rating |
#statistics_set ⇒ Yt::Models::StatisticsSet (readonly)
Returns the statistics for the video.
66 |
# File 'lib/yt/models/video.rb', line 66 has_one :statistics_set |
Instance Method Details
#comments(options = {}) ⇒ Hash<Date, Float>
Returns the comments for a range of a days.
47 |
# File 'lib/yt/models/video.rb', line 47 has_report :comments |
#comments_on(date) ⇒ Float
Returns the comments for a single day.
47 |
# File 'lib/yt/models/video.rb', line 47 has_report :comments |
#delete(options = {}) ⇒ Boolean
104 105 106 107 |
# File 'lib/yt/models/video.rb', line 104 def delete( = {}) do_delete {@id = nil} !exists? end |
#dislike ⇒ Boolean
143 144 145 146 |
# File 'lib/yt/models/video.rb', line 143 def dislike .set :dislike !liked? end |
#dislikes(options = {}) ⇒ Hash<Date, Float>
Returns the dislikes for a range of a days.
53 |
# File 'lib/yt/models/video.rb', line 53 has_report :dislikes |
#dislikes_on(date) ⇒ Float
Returns the dislikes for a single day.
53 |
# File 'lib/yt/models/video.rb', line 53 has_report :dislikes |
#earnings(options = {}) ⇒ Hash<Date, Float>
Returns the earnings for a range of a days.
41 |
# File 'lib/yt/models/video.rb', line 41 has_report :earnings |
#earnings_on(date) ⇒ Float
Returns the earnings for a single day.
41 |
# File 'lib/yt/models/video.rb', line 41 has_report :earnings |
#exists? ⇒ Boolean
109 110 111 |
# File 'lib/yt/models/video.rb', line 109 def exists? !@id.nil? end |
#impressions(options = {}) ⇒ Hash<Date, Float>
Returns the impressions for a range of a days.
59 |
# File 'lib/yt/models/video.rb', line 59 has_report :impressions |
#impressions_on(date) ⇒ Float
Returns the impressions for a single day.
59 |
# File 'lib/yt/models/video.rb', line 59 has_report :impressions |
#like ⇒ Boolean
131 132 133 134 |
# File 'lib/yt/models/video.rb', line 131 def like .set :like liked? end |
#liked? ⇒ Boolean
120 121 122 |
# File 'lib/yt/models/video.rb', line 120 def liked? . == :like end |
#likes(options = {}) ⇒ Hash<Date, Float>
Returns the likes for a range of a days.
50 |
# File 'lib/yt/models/video.rb', line 50 has_report :likes |
#likes_on(date) ⇒ Float
Returns the likes for a single day.
50 |
# File 'lib/yt/models/video.rb', line 50 has_report :likes |
#shares(options = {}) ⇒ Hash<Date, Float>
Returns the shares for a range of a days.
56 |
# File 'lib/yt/models/video.rb', line 56 has_report :shares |
#shares_on(date) ⇒ Float
Returns the shares for a single day.
56 |
# File 'lib/yt/models/video.rb', line 56 has_report :shares |
#tags ⇒ Array<Yt::Models::Tag>
Returns the list of keyword tags associated with the video. Since YouTube API only returns tags on Videos#list, the memoized (e.g., by calling account.videos or channel.videos), so that the full snippet (with tags) is loaded, rather than the partial one.
90 91 92 93 94 95 |
# File 'lib/yt/models/video.rb', line 90 def unless snippet..any? || snippet. || @auth.nil? @snippet = nil end snippet. end |
#unlike ⇒ Boolean
155 156 157 158 |
# File 'lib/yt/models/video.rb', line 155 def unlike .set :none !liked? end |
#viewer_percentage(filters = {}) ⇒ Float
Returns the percentage of viewer matching the filters.
62 |
# File 'lib/yt/models/video.rb', line 62 has_viewer_percentages |
#viewer_percentages ⇒ Hash<Symbol,Hash<String,Float>>
Returns the viewer percentages. The first-level hash identifies the genres (:female, :male). The second-level hash identifies the age ranges (‘18-24’, ‘25-34’, ‘35-44’, ‘45-54’, ‘55-64’, ‘65-’).
62 |
# File 'lib/yt/models/video.rb', line 62 has_viewer_percentages |
#views(options = {}) ⇒ Hash<Date, Float>
Returns the views for a range of a days.
44 |
# File 'lib/yt/models/video.rb', line 44 has_report :views |
#views_on(date) ⇒ Float
Returns the views for a single day.
44 |
# File 'lib/yt/models/video.rb', line 44 has_report :views |