@@ -26,12 +26,14 @@ export class HTMLParser extends ParserClass {
26
26
}
27
27
28
28
private static async request ( url : string , timeout : number , instructions : Instructions ) : Promise < AxiosResponse > {
29
- return new Promise ( ( resolve ) => {
29
+ return new Promise ( ( resolve , reject ) => {
30
30
31
31
let config : AxiosConfig = {
32
32
method : 'get' ,
33
33
url,
34
34
timeout,
35
+ responseType : 'arraybuffer' ,
36
+ responseEncoding : 'binary'
35
37
}
36
38
37
39
if ( instructions [ "ignoreCertificates" ] ) config . httpsAgent = httpsAgent
@@ -57,7 +59,16 @@ export class HTMLParser extends ParserClass {
57
59
private static attributes ( location : cheerio . Cheerio ,
58
60
dataStoredAt : string ,
59
61
attributesArr : Array < string > ) : Array < Object > | null {
60
-
62
+ //Search into same element if Instructions(Find = null) and class is the same
63
+ if ( ! dataStoredAt || dataStoredAt . length <= 0 ) {
64
+ return attributesArr . filter ( item => location . attr ( item ) ) . map ( item => {
65
+ return {
66
+ attribute : item , //attribute
67
+ value : ( location . attr ( item ) ) ? location . attr ( item ) : "" , //value_of__requested_attribute
68
+ text : ( location . text ( ) ) ? location . text ( ) : "" , //tag value
69
+ }
70
+ } )
71
+ }
61
72
return attributesArr . filter ( item => location . find ( dataStoredAt ) . attr ( item ) ) . map ( item => {
62
73
return {
63
74
attribute : item , //attribute
@@ -165,7 +176,7 @@ export class HTMLParser extends ParserClass {
165
176
166
177
await HTMLParser . request ( url , instructions . getSource ( ) . timeout , instructions )
167
178
. then ( ( response : AxiosResponse ) => {
168
- const cheerioLoad : cheerio . Root = cheerio . load ( response . data )
179
+ const cheerioLoad : cheerio . Root = cheerio . load ( instructions . textDecoder . decode ( response . data ) )
169
180
170
181
// for each article.
171
182
cheerioLoad ( `${ instructions . elementSelector } ` ) . each ( ( index , element ) => {
@@ -178,7 +189,7 @@ export class HTMLParser extends ParserClass {
178
189
179
190
// for each option. The options provided by instructions.
180
191
for ( let item in options ) {
181
- if ( options . hasOwnProperty ( item ) && ! options [ item ] . find && ! options [ item ] . multiple ) {
192
+ if ( options . hasOwnProperty ( item ) && ! options [ item ] . find && ! options [ item ] . multiple && ! options [ item ] . attributes ) {
182
193
articleData [ item ] = cheerioLoad ( element ) . find ( options [ item ] . class ) . text ( )
183
194
} else if ( options . hasOwnProperty ( item ) ) {
184
195
if ( ! options [ item ] . attributes )
0 commit comments