randydev commited on
Commit
5f8811c
·
verified ·
1 Parent(s): 150135c

Update lib/scrapper.js

Browse files
Files changed (1) hide show
  1. lib/scrapper.js +9 -3
lib/scrapper.js CHANGED
@@ -2,7 +2,7 @@ import axios from 'axios';
2
  import * as cheerio from 'cheerio';
3
  import * as config from '../config.js';
4
  import xnxx from "xnxx-dl";
5
- // import { savefrom } from '@bochilteam/scraper';
6
  import { GptModelOld } from '../models.js';
7
 
8
  const ParametersUrl = function (parameters) {
@@ -13,7 +13,7 @@ const ParametersUrl = function (parameters) {
13
 
14
  const AuthorOriginal = function (response) {
15
  if (typeof response.data === "object") {
16
- response.data.author = "xtdevs";
17
  return response.data;
18
  } else {
19
  console.log("the return value was not a json object");
@@ -21,6 +21,11 @@ const AuthorOriginal = function (response) {
21
  }
22
  };
23
 
 
 
 
 
 
24
  const XnxxDownloader = async (query) => {
25
  try {
26
  if (!query) {
@@ -210,5 +215,6 @@ export {
210
  Copilot2Trip,
211
  ParametersUrl,
212
  TiktokDownloader,
213
- XnxxDownloader
 
214
  };
 
2
  import * as cheerio from 'cheerio';
3
  import * as config from '../config.js';
4
  import xnxx from "xnxx-dl";
5
+ import gifted from 'gifted-dls';
6
  import { GptModelOld } from '../models.js';
7
 
8
  const ParametersUrl = function (parameters) {
 
13
 
14
  const AuthorOriginal = function (response) {
15
  if (typeof response.data === "object") {
16
+ response.data.author = "xtdevs" || response.data.creator == "xtdevs";
17
  return response.data;
18
  } else {
19
  console.log("the return value was not a json object");
 
21
  }
22
  };
23
 
24
+ const TwitterDownloader = async (url) => {
25
+ data = await gifted.giftedtwitter(url);
26
+ return AuthorOriginal(data);
27
+ };
28
+
29
  const XnxxDownloader = async (query) => {
30
  try {
31
  if (!query) {
 
215
  Copilot2Trip,
216
  ParametersUrl,
217
  TiktokDownloader,
218
+ XnxxDownloader,
219
+ TwitterDownloader
220
  };