diff --git a/DailymotionConfig.json b/DailymotionConfig.json index 4a33bf0fda20b2961474a3ea78f0a3132da424d6..2d8233ea74ac3a71abe82e233332ecf458a86017 100644 --- a/DailymotionConfig.json +++ b/DailymotionConfig.json @@ -7,7 +7,7 @@ "sourceUrl": "https://plugins.grayjay.app/Dailymotion/DailymotionConfig.json", "scriptUrl": "./DailymotionScript.js", "repositoryUrl": "https://futo.org", - "version": 21, + "version": 22, "iconUrl": "./DailymotionIcon.png", "id": "9c87e8db-e75d-48f4-afe5-2d203d4b95c5", "scriptSignature": "", @@ -21,9 +21,11 @@ "allowUrls": [ "dailymotion.com", "*.dailymotion.com", + ".dailymotion.com", "graphql.api.dailymotion.com", "vod.cf.dmcdn.net", "*.dmcdn.net", + ".dmcdn.net", "api-2-0.spot.im" ], "authentication": { diff --git a/build/DailymotionConfig.json b/build/DailymotionConfig.json index 4a33bf0fda20b2961474a3ea78f0a3132da424d6..2d8233ea74ac3a71abe82e233332ecf458a86017 100644 --- a/build/DailymotionConfig.json +++ b/build/DailymotionConfig.json @@ -7,7 +7,7 @@ "sourceUrl": "https://plugins.grayjay.app/Dailymotion/DailymotionConfig.json", "scriptUrl": "./DailymotionScript.js", "repositoryUrl": "https://futo.org", - "version": 21, + "version": 22, "iconUrl": "./DailymotionIcon.png", "id": "9c87e8db-e75d-48f4-afe5-2d203d4b95c5", "scriptSignature": "", @@ -21,9 +21,11 @@ "allowUrls": [ "dailymotion.com", "*.dailymotion.com", + ".dailymotion.com", "graphql.api.dailymotion.com", "vod.cf.dmcdn.net", "*.dmcdn.net", + ".dmcdn.net", "api-2-0.spot.im" ], "authentication": { diff --git a/build/DailymotionScript.js b/build/DailymotionScript.js index a93c62ef8337806601feaa5be73e65d02266a669..5793e61fab958a3765c6e93adcbf3a8be00c82e4 100644 --- a/build/DailymotionScript.js +++ b/build/DailymotionScript.js @@ -17,9 +17,6 @@ const REGEX_VIDEO_PLAYLIST_URL = /^https:\/\/(?:www\.)?dailymotion\.com\/playlis const REGEX_INITIAL_DATA_API_AUTH_1 = /(?<=window\.__LOADABLE_LOADED_CHUNKS__=.*)\b[a-f0-9]{20}\b|\b[a-f0-9]{40}\b/g; const createAuthRegexByTextLength = (length) => new RegExp(`\\b\\w+\\s*=\\s*"([a-zA-Z0-9]{${length}})"`); const USER_AGENT = 'Mozilla/5.0 (Linux; Android 12) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.230 Mobile Safari/537.36'; -// Those are used even for not logged users to make requests on the graphql api. -const FALLBACK_CLIENT_ID = 'f1a362d288c1b98099c7'; -const FALLBACK_CLIENT_SECRET = 'eea605b96e01c796ff369935357eca920c5da4c5'; const FALLBACK_SPOT_ID = 'sp_vWPN1lBu'; const PLATFORM = 'Dailymotion'; const PLATFORM_CLAIMTYPE = 27; @@ -1396,12 +1393,7 @@ function extractClientCredentials(httpClient) { if (!detailsRequestHtml.isOk) { throw new ScriptException('Failed to fetch page to extract auth details'); } - const result = [ - { - clientId: FALLBACK_CLIENT_ID, - secret: FALLBACK_CLIENT_SECRET, - }, - ]; + const result = []; const match = detailsRequestHtml.body.match(REGEX_INITIAL_DATA_API_AUTH_1); if (match?.length === 2 && match[0] && match[1]) { result.unshift({ diff --git a/src/constants.ts b/src/constants.ts index 4ed25c0a7a2b163d170a8fcb65a9b5af1cbd3a23..c4715f303a32061eea4ac67c0e77b9d105a4b3cf 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -43,11 +43,7 @@ export const createAuthRegexByTextLength = (length: number) => export const USER_AGENT = 'Mozilla/5.0 (Linux; Android 12) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.230 Mobile Safari/537.36'; -// Those are used even for not logged users to make requests on the graphql api. -export const FALLBACK_CLIENT_ID = 'f1a362d288c1b98099c7'; -export const FALLBACK_CLIENT_SECRET = 'eea605b96e01c796ff369935357eca920c5da4c5'; export const FALLBACK_SPOT_ID = 'sp_vWPN1lBu'; - export const PLATFORM = 'Dailymotion'; export const PLATFORM_CLAIMTYPE = 27; diff --git a/src/extraction.ts b/src/extraction.ts index 14f221dbe8307e5ecb5bd3e4652b4f1564e47373..68c1af913716b01c2f7ef1e8564c0031b3eb0f8e 100644 --- a/src/extraction.ts +++ b/src/extraction.ts @@ -3,8 +3,6 @@ import { BASE_URL, BASE_URL_API_AUTH, createAuthRegexByTextLength, - FALLBACK_CLIENT_ID, - FALLBACK_CLIENT_SECRET, REGEX_INITIAL_DATA_API_AUTH_1, USER_AGENT, } from './constants'; @@ -65,12 +63,7 @@ export function extractClientCredentials(httpClient: IHttp) { throw new ScriptException('Failed to fetch page to extract auth details'); } - const result = [ - { - clientId: FALLBACK_CLIENT_ID, - secret: FALLBACK_CLIENT_SECRET, - }, - ]; + const result = []; const match = detailsRequestHtml.body.match(REGEX_INITIAL_DATA_API_AUTH_1);