mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-01 09:22:39 +00:00
b252fa79c0
This commit fixes the style issues introduced in 38b0de7
according to the output
from prettier.
Details: https://deepsource.io/gh/VueTubeApp/VueTube/transform/9d827cbf-455d-44d1-b340-8f6b1836b896/
71 lines
1.8 KiB
JavaScript
71 lines
1.8 KiB
JavaScript
// To centralize certain values and URLs as for easier debugging and refactoring
|
|
|
|
const url = {
|
|
YT_URL: "https://www.youtube.com",
|
|
YT_MOBILE: "https://m.youtube.com",
|
|
YT_MUSIC_URL: "https://music.youtube.com",
|
|
YT_BASE_API: "https://www.youtube.com/youtubei/v1",
|
|
YT_SUGGESTIONS: "https://suggestqueries.google.com/complete",
|
|
VT_GITHUB: "https://api.github.com/repos/Frontesque/VueTube",
|
|
};
|
|
|
|
const ytApiVal = {
|
|
VERSION: "16.25",
|
|
CLIENTNAME: "ANDROID",
|
|
VERSION_WEB: "2.20220411.09.00",
|
|
CLIENT_WEB_M: 2,
|
|
CLIENT_WEB_D: 1,
|
|
};
|
|
|
|
const filesystem = {
|
|
plugins: "plugins",
|
|
};
|
|
|
|
module.exports = {
|
|
URLS: url,
|
|
YT_API_VALUES: ytApiVal,
|
|
fs: filesystem,
|
|
LOGGER_NAMES: {
|
|
search: "Search",
|
|
autoComplete: "AutoComplete",
|
|
watch: "Watch",
|
|
recommendations: "Recommendations",
|
|
init: "Initialize",
|
|
innertube: "Innertube",
|
|
channel: "Channel",
|
|
},
|
|
|
|
INNERTUBE_HEADER: (info) => {
|
|
let headers = {
|
|
accept: "*/*",
|
|
"user-agent": info.userAgent,
|
|
"accept-language": `${info.hl}-${info.gl},${info.hl};q=0.9`,
|
|
"content-type": "application/json",
|
|
"x-goog-authuser": 0,
|
|
"x-goog-visitor-id": info.visitorData || "",
|
|
"x-youtube-client-name": ytApiVal.CLIENTNAME,
|
|
"x-youtube-client-version": ytApiVal.VERSION,
|
|
};
|
|
return headers;
|
|
},
|
|
|
|
INNERTUBE_CLIENT: (info) => {
|
|
let client = {
|
|
gl: info.gl,
|
|
hl: info.hl,
|
|
deviceMake: info.deviceMake,
|
|
deviceModel: info.deviceModel,
|
|
userAgent: info.userAgent,
|
|
clientName: ytApiVal.CLIENTNAME,
|
|
clientVersion: ytApiVal.VERSION,
|
|
osName: info.osName,
|
|
osVersion: info.osVersion,
|
|
platform: "MOBILE",
|
|
originalUrl: info.originalUrl,
|
|
configInfo: info.configInfo,
|
|
remoteHost: info.remoteHost,
|
|
visitorData: info.visitorData,
|
|
};
|
|
return client;
|
|
},
|
|
};
|