Sha256: 7156314242b6241c6983b5975e8b3300ee839d82369b58bc15eebcd19a51c53c
Contents?: true
Size: 930 Bytes
Versions: 5
Compression:
Stored size: 930 Bytes
Contents
# frozen_string_literal: true require_relative 'comment' require_relative 'youtube_api' require_relative 'author' module YoutubeVideo # signle comment on video's comment threads class Comment attr_reader :comment_id, :updated_at, :text_display, :published_at, :author, :time_tags, :like_count def initialize(data: nil) load_data(data) end def self.find(comment_id:) comment_data = YoutubeVideo::YtApi.comment_info(comment_id) new(data: comment_data) end private def load_data(comment_data) @comment_id = comment_data['id'] @like_count = comment_data['likeCount'].to_i @updated_at = comment_data['updateAt'] @text_display = comment_data['textDisplay'] @published_at = comment_data['publishedAt'] @author = YoutubeVideo::Author.new(comment_data) @time_tags = YoutubeVideo::Timetag.find(comment: self) end end end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
YPBT-0.2.12 | lib/YPBT/comment.rb |
YPBT-0.2.11 | lib/YPBT/comment.rb |
YPBT-0.2.10 | lib/YPBT/comment.rb |
YPBT-0.2.4 | lib/YPBT/comment.rb |
YPBT-0.2.2 | lib/YPBT/comment.rb |