mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-02-12 11:12:07 +00:00
Merge pull request #1420 from Shisuiicaro/Feat/Mediafire-Download
Feat: Mediafire Hoster
This commit is contained in:
commit
260fc46963
6 changed files with 54 additions and 1 deletions
|
@ -8,7 +8,7 @@ import {
|
||||||
} from "@main/repository";
|
} from "@main/repository";
|
||||||
import { publishDownloadCompleteNotification } from "../notifications";
|
import { publishDownloadCompleteNotification } from "../notifications";
|
||||||
import type { DownloadProgress } from "@types";
|
import type { DownloadProgress } from "@types";
|
||||||
import { GofileApi, QiwiApi, DatanodesApi } from "../hosters";
|
import { GofileApi, QiwiApi, DatanodesApi, MediafireApi } from "../hosters";
|
||||||
import { PythonRPC } from "../python-rpc";
|
import { PythonRPC } from "../python-rpc";
|
||||||
import {
|
import {
|
||||||
LibtorrentPayload,
|
LibtorrentPayload,
|
||||||
|
@ -287,6 +287,16 @@ export class DownloadManager {
|
||||||
save_path: game.downloadPath!,
|
save_path: game.downloadPath!,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
case Downloader.Mediafire: {
|
||||||
|
const downloadUrl = await MediafireApi.getDownloadUrl(game.uri!);
|
||||||
|
|
||||||
|
return {
|
||||||
|
action: "start",
|
||||||
|
game_id: game.id,
|
||||||
|
url: downloadUrl,
|
||||||
|
save_path: game.downloadPath!,
|
||||||
|
};
|
||||||
|
}
|
||||||
case Downloader.Torrent:
|
case Downloader.Torrent:
|
||||||
return {
|
return {
|
||||||
action: "start",
|
action: "start",
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
export * from "./gofile";
|
export * from "./gofile";
|
||||||
export * from "./qiwi";
|
export * from "./qiwi";
|
||||||
export * from "./datanodes";
|
export * from "./datanodes";
|
||||||
|
export * from "./mediafire";
|
||||||
|
|
39
src/main/services/hosters/mediafire.ts
Normal file
39
src/main/services/hosters/mediafire.ts
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
import axios, { AxiosResponse } from "axios";
|
||||||
|
import { JSDOM } from "jsdom";
|
||||||
|
|
||||||
|
export class MediafireApi {
|
||||||
|
private static readonly session = axios.create();
|
||||||
|
|
||||||
|
public static async getDownloadUrl(mediafireUrl: string): Promise<string> {
|
||||||
|
const response: AxiosResponse<string> = await this.session.get(
|
||||||
|
mediafireUrl,
|
||||||
|
{
|
||||||
|
headers: {
|
||||||
|
"User-Agent":
|
||||||
|
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36",
|
||||||
|
},
|
||||||
|
maxRedirects: 0,
|
||||||
|
validateStatus: (status: number) => status === 200 || status === 302,
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
if (response.status === 302) {
|
||||||
|
const location = response.headers["location"];
|
||||||
|
if (!location) {
|
||||||
|
throw new Error("Missing location header in 302 redirect response");
|
||||||
|
}
|
||||||
|
return location;
|
||||||
|
}
|
||||||
|
|
||||||
|
const dom = new JSDOM(response.data);
|
||||||
|
const downloadButton = dom.window.document.querySelector(
|
||||||
|
"a#downloadButton"
|
||||||
|
) as HTMLAnchorElement;
|
||||||
|
|
||||||
|
if (!downloadButton?.href) {
|
||||||
|
throw new Error("Download button URL not found in page content");
|
||||||
|
}
|
||||||
|
|
||||||
|
return downloadButton.href;
|
||||||
|
}
|
||||||
|
}
|
|
@ -9,6 +9,7 @@ export const DOWNLOADER_NAME = {
|
||||||
[Downloader.PixelDrain]: "PixelDrain",
|
[Downloader.PixelDrain]: "PixelDrain",
|
||||||
[Downloader.Qiwi]: "Qiwi",
|
[Downloader.Qiwi]: "Qiwi",
|
||||||
[Downloader.Datanodes]: "Datanodes",
|
[Downloader.Datanodes]: "Datanodes",
|
||||||
|
[Downloader.Mediafire]: "Mediafire",
|
||||||
};
|
};
|
||||||
|
|
||||||
export const MAX_MINUTES_TO_SHOW_IN_PLAYTIME = 120;
|
export const MAX_MINUTES_TO_SHOW_IN_PLAYTIME = 120;
|
||||||
|
|
|
@ -5,6 +5,7 @@ export enum Downloader {
|
||||||
PixelDrain,
|
PixelDrain,
|
||||||
Qiwi,
|
Qiwi,
|
||||||
Datanodes,
|
Datanodes,
|
||||||
|
Mediafire,
|
||||||
}
|
}
|
||||||
|
|
||||||
export enum DownloadSourceStatus {
|
export enum DownloadSourceStatus {
|
||||||
|
|
|
@ -88,6 +88,7 @@ export const getDownloadersForUri = (uri: string) => {
|
||||||
if (uri.startsWith("https://pixeldrain.com")) return [Downloader.PixelDrain];
|
if (uri.startsWith("https://pixeldrain.com")) return [Downloader.PixelDrain];
|
||||||
if (uri.startsWith("https://qiwi.gg")) return [Downloader.Qiwi];
|
if (uri.startsWith("https://qiwi.gg")) return [Downloader.Qiwi];
|
||||||
if (uri.startsWith("https://datanodes.to")) return [Downloader.Datanodes];
|
if (uri.startsWith("https://datanodes.to")) return [Downloader.Datanodes];
|
||||||
|
if (uri.startsWith("https://www.mediafire.com")) return [Downloader.Mediafire];
|
||||||
|
|
||||||
if (realDebridHosts.some((host) => uri.startsWith(host)))
|
if (realDebridHosts.some((host) => uri.startsWith(host)))
|
||||||
return [Downloader.RealDebrid];
|
return [Downloader.RealDebrid];
|
||||||
|
|
Loading…
Reference in a new issue