File size: 3,088 Bytes
bd4728b
 
 
 
 
 
 
 
a1cc085
56b7405
1317cc7
bb54e94
 
2e5844f
450b31c
7419a59
b7d82f2
dcb8008
 
753c17f
 
574078f
 
30e6e8c
 
db5e877
88a2b59
7044aed
bbdeedd
30e6e8c
dcb8008
06fafda
bd4728b
867e092
fa71a92
 
 
 
 
 
 
 
867e092
 
2ec3b15
41df619
 
2ec3b15
 
 
41df619
2ec3b15
41df619
 
2ec3b15
41df619
2ec3b15
41df619
 
 
 
 
574078f
753c17f
 
 
 
 
 
 
 
 
 
 
 
c820e1f
7013a33
 
 
 
 
c820e1f
753c17f
 
 
 
574078f
 
88a2b59
 
 
 
 
44fd832
 
 
 
 
bd4728b
 
 
 
 
 
 
 
450b31c
 
 
 
10d94c4
450b31c
db5e877
bbdeedd
11a2924
 
1317cc7
30e6e8c
bb54e94
b3405fe
7419a59
867e092
 
574078f
753c17f
88a2b59
b48aba8
41df619
bd4728b
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
import { facebookdl } from '../lib/facebook/facebook.js';
import { savefrom } from '../lib/savefrom/savefrom.js';
import { mediafiredl } from '../lib/mediafire/mediafire.js';
import { snapsave } from '../lib/snapsave/snapsave.js';
import { tiktokdl } from '../lib/tiktok/tiktok.js';
import { youtubedl } from '../lib/youtube/youtube.js';
import { sfilemobi } from '../lib/sfilemobi/sfilemobi-dl.js';
import { sfilemobiSearch } from '../lib/sfilemobi/sfilemobisearch.js';
import axios from 'axios';
import { TiktokDownloader, XnxxDownloader } from '../lib/scrapper.js';
import { twitterdl } from '../lib/twitter/twitter.js';
import xnxx from "xnxx-dl";
import gifted from 'gifted-dls';
import { capcutdl } from '../lib/@randydev/capcut.js';
import { PinterestDownloader } from '../lib/@randydev/pinterest.js';
import { TeraboxDownloader, TeraboxV2Downloader } from '../lib/@randydev/terabox.js';

import * as igdlv2 from "instagram-url-direct";
import * as xpro from 'xnxx-scraper';
import * as happykntl from 'happy-dl';

import { igdl } from 'ruhend-scraper'

import { 
  TwitterDownloader,
  InstagramDownloader,
  PinterestDL,
  CreatorOriginal,
  SeachTiktok,
} from '../lib/scrapper.js';

import { trbtoken, trburl } from '../config.js';

async function InstagramDLV2(url) {
  try {
    const data = await igdlv2.instagramGetUrl(url);
    console.log(data);
    return data;
  } catch(err) {
    console.error(err);
    return null;
  }
}


async function TelegramUseLog(user_id, api_key, text_log) {
  const options = {
    method: "GET",
    url: "https://randydev-meta-ai.hf.space/user/tg/send_message",
    params: { user_id, api_key, text_log }
  };

  try {
    const response = await axios.request(options);
    return response.status === 200;
  } catch (error) {
    console.error("Telegram log failed:", error.message);
    return null;
  }
}


async function InstagramDLV3(url) {
  try {
    const data = await igdl(url);
    console.log(data);
    return data;
  } catch(err) {
    console.error(err);
    return null;
  }
}

async function InstagramDLV4(url) {
  try {
    const data = await happykntl.default.instagramDownloader(url);
    if (typeof data === "object") {
      console.log(data);
      data.developer = "xtdevs";
      return data;
    }
    // return {"message": "ok"};
  } catch(err) {
    console.error(err);
    return null;
  }
}

async function XsearchDownloaderV2(q) {
  const data = await xpro.default.search(q);
  return CreatorOriginal(data);
}

async function XInfoDownloaderV2(url) {
  const data = await xpro.default.info(url);
  return CreatorOriginal(data);
}

export {
  facebookdl,
  savefrom,
  mediafiredl,
  snapsave,
  tiktokdl,
  youtubedl,
  sfilemobi,
  gifted,
  xnxx,
  capcutdl,
  trbtoken,
  trburl,
  twitterdl,
  PinterestDL,
  SeachTiktok,
  sfilemobiSearch,
  XnxxDownloader,
  TiktokDownloader,
  TwitterDownloader,
  InstagramDownloader,
  TeraboxDownloader,
  TeraboxV2Downloader,
  PinterestDownloader,
  InstagramDLV2,
  InstagramDLV3,
  InstagramDLV4,
  XsearchDownloaderV2,
  XInfoDownloaderV2,
  TelegramUseLog,
};