youtubei
Version:
Simple package to get information from youtube such as videos, playlists, channels, video information & comments, related videos, up next video, and more!
33 lines (32 loc) • 2.28 kB
JavaScript
import { Thumbnails } from "../../common";
var BaseChannelParser = /** @class */ (function () {
function BaseChannelParser() {
}
BaseChannelParser.loadBaseChannel = function (target, data) {
var channelId = data.channelId, title = data.title, thumbnail = data.thumbnail, subscriberCountText = data.subscriberCountText;
target.id = channelId;
target.name = title.simpleText;
target.thumbnails = new Thumbnails().load(thumbnail.thumbnails);
target.subscriberCount = subscriberCountText === null || subscriberCountText === void 0 ? void 0 : subscriberCountText.simpleText;
return target;
};
/** Parse tab data from request, tab name is ignored if it's a continuation data */
BaseChannelParser.parseTabData = function (name, data) {
var _a, _b, _c, _d, _e;
var tab = (_a = data.contents) === null || _a === void 0 ? void 0 : _a.twoColumnBrowseResultsRenderer.tabs.find(function (t) {
var _a;
return (((_a = t.tabRenderer) === null || _a === void 0 ? void 0 : _a.endpoint.browseEndpoint.params) ===
BaseChannelParser.TAB_TYPE_PARAMS[name]);
});
return (((_d = (_c = (_b = tab === null || tab === void 0 ? void 0 : tab.tabRenderer.content.sectionListRenderer) === null || _b === void 0 ? void 0 : _b.contents) === null || _c === void 0 ? void 0 : _c[0].itemSectionRenderer.contents[0].gridRenderer) === null || _d === void 0 ? void 0 : _d.items) || (tab === null || tab === void 0 ? void 0 : tab.tabRenderer.content.richGridRenderer.contents.map(function (c) { var _a; return ((_a = c.richItemRenderer) === null || _a === void 0 ? void 0 : _a.content) || c; })) || ((_e = data.onResponseReceivedActions) === null || _e === void 0 ? void 0 : _e[0].appendContinuationItemsAction.continuationItems.map(function (c) { var _a; return ((_a = c.richItemRenderer) === null || _a === void 0 ? void 0 : _a.content) || c; })) ||
[]);
};
BaseChannelParser.TAB_TYPE_PARAMS = {
videos: "EgZ2aWRlb3PyBgQKAjoA",
shorts: "EgZzaG9ydHPyBgUKA5oBAA%3D%3D",
live: "EgdzdHJlYW1z8gYECgJ6AA%3D%3D",
playlists: "EglwbGF5bGlzdHPyBgQKAkIA",
};
return BaseChannelParser;
}());
export { BaseChannelParser };