a39.ca/netlify/functions/twitch.js

37 lines
1.2 KiB
JavaScript
Raw Normal View History

2023-08-29 02:58:40 +00:00
const twitch = require('twitch-m3u8')
exports.handler = async function (event, context) {
const user = event.queryStringParameters?.user;
if(user)
{
try
{
var playlist = await twitch.getStream(user, true);
return { headers: {"content-type":"application/vnd.apple.mpegurl; charset=utf-8"}, statusCode: 200, body: playlist };
}
catch(err)
{
return { headers: {"content-type":"text/plain"}, statusCode: 404, body: "user "+user+" not found" };
}
}
else
{
const vod = event.queryStringParameters?.vod;
if(vod)
{
try
{
var playlist = await twitch.getVod(vod, true);
return { headers: {"content-type":"application/vnd.apple.mpegurl; charset=utf-8"}, statusCode: 200, body: playlist };
}
catch(err)
{
return { headers: {"content-type":"text/plain"}, statusCode: 404, body: "vod "+vod+" not found" };
}
}
else
{
return { headers: {"content-type":"text/plain"}, statusCode: 404, body: "Usage:\ntwitch?user=<username>\ntwitch?vod=<vodid>" };
}
}
};