89 lines
2.9 KiB
JavaScript
89 lines
2.9 KiB
JavaScript
const got = require('@/utils/got');
|
|
const { parseDate } = require('@/utils/parse-date');
|
|
|
|
// https://github.com/streamlink/streamlink/blob/master/src/streamlink/plugins/twitch.py#L286
|
|
const TWITCH_CLIENT_ID = 'kimne78kx3ncx6brgo4mv6wki5h1ko';
|
|
|
|
module.exports = async (ctx) => {
|
|
const { login } = ctx.params;
|
|
|
|
const response = await got({
|
|
method: 'post',
|
|
url: 'https://gql.twitch.tv/gql',
|
|
headers: {
|
|
Referer: 'https://player.twitch.tv',
|
|
'Client-ID': TWITCH_CLIENT_ID,
|
|
},
|
|
json: [
|
|
{
|
|
operationName: 'ChannelShell',
|
|
extensions: {
|
|
persistedQuery: {
|
|
version: 1,
|
|
sha256Hash: 'c3ea5a669ec074a58df5c11ce3c27093fa38534c94286dc14b68a25d5adcbf55',
|
|
},
|
|
},
|
|
variables: {
|
|
login,
|
|
lcpVideosEnabled: false,
|
|
},
|
|
},
|
|
{
|
|
operationName: 'StreamMetadata',
|
|
extensions: {
|
|
persistedQuery: {
|
|
version: 1,
|
|
sha256Hash: '059c4653b788f5bdb2f5a2d2a24b0ddc3831a15079001a3d927556a96fb0517f',
|
|
},
|
|
},
|
|
variables: {
|
|
channelLogin: login,
|
|
},
|
|
},
|
|
{
|
|
operationName: 'RealtimeStreamTagList',
|
|
extensions: {
|
|
persistedQuery: {
|
|
version: 1,
|
|
sha256Hash: 'a4747cac9d8e8bf6cf80969f6da6363ca1bdbd80fe136797e71504eb404313fd',
|
|
},
|
|
},
|
|
variables: {
|
|
channelLogin: login,
|
|
},
|
|
},
|
|
],
|
|
});
|
|
|
|
const channelShellData = response.data[0].data;
|
|
const streamMetadataData = response.data[1].data;
|
|
const realtimeStreamTagListData = response.data[2].data;
|
|
|
|
if (!channelShellData.userOrError.id) {
|
|
throw Error(channelShellData.userOrError.__typename);
|
|
}
|
|
|
|
const displayName = channelShellData.userOrError.displayName;
|
|
|
|
const liveItem = [];
|
|
|
|
if (streamMetadataData.user.stream) {
|
|
liveItem.push({
|
|
title: streamMetadataData.user.lastBroadcast.title,
|
|
author: displayName,
|
|
category: realtimeStreamTagListData.user.stream.freeformTags.map((item) => item.name),
|
|
description: `<img style="max-width: 100%;" src="https://static-cdn.jtvnw.net/previews-ttv/live_user_${login}.jpg">`,
|
|
pubDate: parseDate(streamMetadataData.user.stream.createdAt),
|
|
guid: streamMetadataData.user.stream.id,
|
|
link: `https://www.twitch.tv/${login}`,
|
|
});
|
|
}
|
|
|
|
ctx.state.data = {
|
|
title: `Twitch - ${displayName} - Live`,
|
|
link: `https://www.twitch.tv/${login}`,
|
|
item: liveItem,
|
|
allowEmpty: true,
|
|
};
|
|
};
|