1
+ //Dependencies
2
+ const Axios = require ( "axios" )
3
+ const Fs = require ( "fs" )
4
+
5
+ //Variables
6
+ const Self_Args = process . argv . slice ( 2 )
7
+
8
+ var Self = {
9
+ grab_index : 0 ,
10
+ max : 0 ,
11
+ results : [ ]
12
+ }
13
+
14
+ //Functions
15
+ async function Grab ( account_type ) {
16
+ try {
17
+ if ( Self . grab_index === Self . max ) {
18
+ console . log ( `Finished grabbing ${ Self . max } ${ account_type } accounts.` )
19
+ console . log ( `Saving the results to ${ Self_Args [ 2 ] } ` )
20
+ Fs . writeFileSync ( Self_Args [ 2 ] , Self . results . join ( "\n" ) , "utf8" )
21
+ console . log ( `Results successfully saved to ${ Self_Args [ 2 ] } ` )
22
+ process . exit ( )
23
+ }
24
+
25
+ console . log ( `Grabbing ${ account_type } account. Index: ${ Self . grab_index } ` )
26
+
27
+ var response = await Axios ( {
28
+ method : "GET" ,
29
+ url : `https://opengen.dpkghub.com/api/generate.php?type=${ account_type } `
30
+ } )
31
+
32
+ response = response . data
33
+
34
+ if ( Self . results . indexOf ( response ) !== - 1 ) {
35
+ console . log ( `Unable to grab ${ account_type } account, due to duplicate/error. Index: ${ Self . grab_index } ` )
36
+ console . log ( "Retrying..." )
37
+ return Grab ( account_type )
38
+ }
39
+
40
+ Self . results . push ( response )
41
+
42
+ Self . grab_index ++
43
+ return Grab ( account_type )
44
+ } catch {
45
+ console . log ( `Unable to grab ${ account_type } account, due to duplicate/error. Index: ${ Self . grab_index } ` )
46
+ console . log ( "Retrying..." )
47
+ return Grab ( account_type )
48
+ }
49
+ }
50
+
51
+ //Main
52
+ if ( ! Self_Args . length ) {
53
+ console . log ( "Account types: Netflix, Spotify, NordVPN & Disney(Disney plus)." )
54
+ console . log ( "node index.js <account_type> <amount> <output>" )
55
+ process . exit ( )
56
+ }
57
+
58
+ if ( isNaN ( Self_Args [ 1 ] ) ) {
59
+ console . log ( "amount is not a number." )
60
+ process . exit ( )
61
+ }
62
+
63
+ if ( ! Self_Args [ 2 ] ) {
64
+ console . log ( "Invalid output." )
65
+ process . exit ( )
66
+ }
67
+
68
+ Self_Args [ 0 ] = Self_Args [ 0 ] . toLowerCase ( )
69
+ Self . max = parseInt ( Self_Args [ 1 ] )
70
+
71
+ switch ( Self_Args [ 0 ] ) {
72
+ case "netflix" :
73
+ Grab ( "Netflix" )
74
+ break
75
+ case "spotify" :
76
+ Grab ( "Spotify" )
77
+ break
78
+ case "nordvpn" :
79
+ Grab ( "NordVPN" )
80
+ break
81
+ case "disney" :
82
+ Grab ( "Disney" )
83
+ break
84
+ default :
85
+ console . log ( "Invalid account_type." )
86
+ break
87
+ }
0 commit comments