Skip to content

Commit

Permalink
feat(youtube/comments): support creator replies
Browse files Browse the repository at this point in the history
  • Loading branch information
FineFindus committed Sep 25, 2023
1 parent 917554a commit dd7b2d9
Show file tree
Hide file tree
Showing 5 changed files with 80 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ public class CommentsInfoItem extends InfoItem {
private int replyCount;
@Nullable
private Page replies;
private boolean creatorReply;

public static final int NO_LIKE_COUNT = -1;
public static final int NO_STREAM_POSITION = -1;
Expand Down Expand Up @@ -172,4 +173,13 @@ public void setReplies(@Nullable final Page replies) {
public Page getReplies() {
return this.replies;
}

public void setCreatorReply(final boolean creatorReply) {
this.creatorReply = creatorReply;
}

public boolean hasCreatorReply() {
return creatorReply;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -134,4 +134,12 @@ default int getReplyCount() throws ParsingException {
default Page getReplies() throws ParsingException {
return null;
}

/**
* Whether the comment was replied to by the creator.
*/
@Nullable
default boolean hasCreatorReply() throws ParsingException {
return false;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,13 @@ public CommentsInfoItem extract(final CommentsInfoItemExtractor extractor)
addError(e);
}

try {
resultItem.setCreatorReply(extractor.hasCreatorReply());
} catch (final Exception e) {
addError(e);
}


return resultItem;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -277,4 +277,16 @@ public Page getReplies() {
return null;
}
}

@Override
public boolean hasCreatorReply() throws ParsingException {
try {
final JsonObject commentRepliesRenderer = JsonUtils.getObject(json,
"replies.commentRepliesRenderer");
return commentRepliesRenderer.has("viewRepliesCreatorThumbnail");
} catch (final Exception e) {
return false;
}
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,49 @@ public void testCommentsCount() throws IOException, ExtractionException {
}
}

public static class CreatorReply {
private final static String url = "https://www.youtube.com/watch?v=bem4adjGKjE";
private static YoutubeCommentsExtractor extractor;

@BeforeAll
public static void setUp() throws Exception {
YoutubeTestsUtils.ensureStateless();
NewPipe.init(DownloaderFactory.getDownloader(RESOURCE_PATH + "creatorReply"));
extractor = (YoutubeCommentsExtractor) YouTube
.getCommentsExtractor(url);
extractor.fetchPage();
}

@Test
void testGetCommentsAllData() throws IOException, ExtractionException {
final InfoItemsPage<CommentsInfoItem> comments = extractor.getInitialPage();

DefaultTests.defaultTestListOfItems(YouTube, comments.getItems(), comments.getErrors());

boolean creatorReply = false;

for (final CommentsInfoItem c : comments.getItems()) {
assertFalse(Utils.isBlank(c.getUploaderUrl()));
assertFalse(Utils.isBlank(c.getUploaderName()));
YoutubeTestsUtils.testImages(c.getUploaderAvatars());
assertFalse(Utils.isBlank(c.getCommentId()));
assertFalse(Utils.isBlank(c.getName()));
assertFalse(Utils.isBlank(c.getTextualUploadDate()));
assertNotNull(c.getUploadDate());
YoutubeTestsUtils.testImages(c.getThumbnails());
assertFalse(Utils.isBlank(c.getUrl()));
assertTrue(c.getLikeCount() >= 0);
assertFalse(Utils.isBlank(c.getCommentText().getContent()));
if (c.hasCreatorReply()) {
creatorReply = true;
}
}
assertTrue(creatorReply, "No comments was replied to by creator");

}
}


public static class FormattingTest {

private final static String url = "https://www.youtube.com/watch?v=zYpyS2HaZHM";
Expand Down

0 comments on commit dd7b2d9

Please sign in to comment.