randydev commited on
Commit
572c75e
·
verified ·
1 Parent(s): 679ee1f

Create sfilemobi-dl.js

Browse files
Files changed (1) hide show
  1. lib/sfilemobi/sfilemobi-dl.js +52 -0
lib/sfilemobi/sfilemobi-dl.js ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import got from 'got';
2
+ import * as cheerio from 'cheerio';
3
+ import { DEFAULT_HEADERS } from '../constant.js';
4
+ import { SfilemobidlArgsSchema, SfilemobidlSchema } from '../types/sfilemobi-dl-v1.js';
5
+
6
+ export default async function sfilemobi(url) {
7
+ SfilemobidlArgsSchema.parse([url]); // Ensure valid argument
8
+
9
+ const data = await got(url, {
10
+ headers: {
11
+ ...DEFAULT_HEADERS
12
+ }
13
+ }).text();
14
+
15
+ const $ = cheerio.load(data);
16
+
17
+ const dlUrl = $('#download').attr('href') || null;
18
+ const filename = $('div.intro-container > img').attr('alt') || $('div.intro-container > h1').text() || null;
19
+ const icon = $('div.intro-container > img').attr('src') || null;
20
+
21
+ const typeMatch = icon ? /\/smallicon\/(.*?)\.svg/.exec(icon) : null;
22
+ const type = typeMatch ? typeMatch[1] : null;
23
+
24
+ const $list = $('div.list');
25
+ const mimetype = $list.eq(0).text().split('-')[1]?.trim() || null;
26
+ const uploaded = $list.eq(2).text().split('Uploaded:')[1]?.trim() || null;
27
+
28
+ const $upload = $list.eq(1).find('a');
29
+ const uploadby = $upload.eq(0).text() || null;
30
+ const uploadbyUrl = $upload.eq(0).attr('href') || null;
31
+ const uploadon = $upload.eq(1).text() || null;
32
+ const uploadonUrl = $upload.eq(1).attr('href') || null;
33
+
34
+ const downloadsText = $list.eq(3).text().split('Downloads:')[1];
35
+ const downloads = downloadsText ? parseInt(downloadsText) : null;
36
+
37
+ const result = {
38
+ url: dlUrl,
39
+ filename,
40
+ icon,
41
+ type,
42
+ mimetype,
43
+ uploaded,
44
+ uploadby,
45
+ uploadbyUrl,
46
+ uploadon,
47
+ uploadonUrl,
48
+ downloads
49
+ };
50
+
51
+ return SfilemobidlSchema.parse(result);
52
+ }