File size: 3,589 Bytes
5bab120
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
import HLSParser from "hls-parser";
import { env } from "../../config.js";

let _token;

function getExp(token) {
    return JSON.parse(
        Buffer.from(token.split('.')[1], 'base64')
    ).exp * 1000;
}

const getToken = async () => {
    if (_token && getExp(_token) > new Date().getTime()) {
        return _token;
    }

    const req = await fetch('https://graphql.api.dailymotion.com/oauth/token', {
        method: 'POST',
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded; charset=utf-8',
            'User-Agent': 'dailymotion/240213162706 CFNetwork/1492.0.1 Darwin/23.3.0',
            'Authorization': 'Basic MGQyZDgyNjQwOWFmOWU3MmRiNWQ6ODcxNmJmYTVjYmEwMmUwMGJkYTVmYTg1NTliNDIwMzQ3NzIyYWMzYQ=='
        },
        body: 'traffic_segment=&grant_type=client_credentials'
    }).then(r => r.json()).catch(() => {});

    if (req.access_token) {
        return _token = req.access_token;
    }
}

export default async function({ id }) {
    const token = await getToken();
    if (!token) return { error: "fetch.fail" };

    const req = await fetch('https://graphql.api.dailymotion.com/',
        {
            method: 'POST',
            headers: {
                'User-Agent': 'dailymotion/240213162706 CFNetwork/1492.0.1 Darwin/23.3.0',
                Authorization: `Bearer ${token}`,
                'Content-Type': 'application/json',
                'X-DM-AppInfo-Version': '7.16.0_240213162706',
                'X-DM-AppInfo-Type': 'iosapp',
                'X-DM-AppInfo-Id': 'com.dailymotion.dailymotion'
            },
            body: JSON.stringify({
                operationName: "Media",
                query: `
                    query Media($xid: String!, $password: String) {
                        media(xid: $xid, password: $password) {
                        __typename
                            ... on Video {
                                xid
                                hlsURL
                                duration
                                title
                                channel {
                                    displayName
                                }
                            }
                        }
                    }
                `,
                variables: { xid: id }
            })
        }
    ).then(r => r.status === 200 && r.json()).catch(() => {});

    const media = req?.data?.media;

    if (media?.__typename !== 'Video' || !media.hlsURL) {
        return { error: "fetch.empty" }
    }

    if (media.duration > env.durationLimit) {
        return { error: "content.too_long" };
    }

    const manifest = await fetch(media.hlsURL).then(r => r.text()).catch(() => {});
    if (!manifest) return { error: "fetch.fail" };

    const bestQuality = HLSParser.parse(manifest).variants
                        .filter(v => v.codecs.includes('avc1'))
                        .reduce((a, b) => a.bandwidth > b.bandwidth ? a : b);
    if (!bestQuality) return { error: "fetch.empty" }

    const fileMetadata = {
        title: media.title,
        artist: media.channel.displayName
    }

    return {
        urls: bestQuality.uri,
        isM3U8: true,
        filenameAttributes: {
            service: 'dailymotion',
            id: media.xid,
            title: fileMetadata.title,
            author: fileMetadata.artist,
            resolution: `${bestQuality.resolution.width}x${bestQuality.resolution.height}`,
            qualityLabel: `${bestQuality.resolution.height}p`,
            extension: 'mp4'
        },
        fileMetadata
    }
}