[ 'name' => 'Channel', 'type' => 'text', 'required' => true, 'exampleValue' => 'criticalrole', 'title' => 'Lowercase channel name as seen in channel URL' ], 'type' => [ 'name' => 'Type', 'type' => 'list', 'values' => [ 'All' => 'all', 'Archive' => 'archive', 'Highlights' => 'highlight', 'Uploads' => 'upload', 'Past Premieres' => 'past_premiere', 'Premiere Uploads' => 'premiere_upload' ], 'defaultValue' => 'archive' ] ]]; const BROADCAST_TYPES = [ 'all' => [ 'ARCHIVE', 'HIGHLIGHT', 'UPLOAD', 'PAST_PREMIERE', 'PREMIERE_UPLOAD' ], 'archive' => 'ARCHIVE', 'highlight' => 'HIGHLIGHT', 'upload' => 'UPLOAD', 'past_premiere' => 'PAST_PREMIERE', 'premiere_upload' => 'PREMIERE_UPLOAD' ]; public function collectData() { $query = <<<'EOD' query VODList($channel: String!, $types: [BroadcastType!]) { user(login: $channel) { displayName videos(types: $types, sort: TIME) { edges { node { id title publishedAt lengthSeconds viewCount thumbnailURLs(width: 640, height: 360) previewThumbnailURL(width: 640, height: 360) description tags contentTags { isLanguageTag localizedName } game { displayName } moments(momentRequestType: VIDEO_CHAPTER_MARKERS) { edges { node { description positionMilliseconds } } } } } } } } EOD; $variables = [ 'channel' => $this->getInput('channel'), 'types' => self::BROADCAST_TYPES[$this->getInput('type')] ]; $data = $this->apiRequest($query, $variables); $user = $data->user; foreach ($user->videos->edges as $edge) { $video = $edge->node; $url = 'https://www.twitch.tv/videos/' . $video->id; $item = [ 'uri' => $url, 'title' => $video->title, 'timestamp' => $video->publishedAt, 'author' => $user->displayName, ]; // Add categories for tags and played game $item['categories'] = $video->tags; if (!is_null($video->game)) { $item['categories'][] = $video->game->displayName; } foreach ($video->contentTags as $tag) { if (!$tag->isLanguageTag) { $item['categories'][] = $tag->localizedName; } } // Add enclosures for thumbnails from a few points in the video // Thumbnail list has duplicate entries sometimes so remove those $item['enclosures'] = array_unique($video->thumbnailURLs); /* * Content format example: * * [Preview Image] * * Some optional video description. * * Duration: 1:23:45 * Views: 123 * * Played games: * * 00:00:00 Game 1 * * 00:12:34 Game 2 * */ $item['content'] = '
' . $video->description // in markdown format . '
Duration: '
. $this->formatTimestampTime($video->lengthSeconds)
. '
Views: '
. $video->viewCount
. '
Played games: