Merge remote-tracking branch 'parent/main' into upstream-20240123
This commit is contained in:
commit
50ae2d9439
320 changed files with 2587 additions and 2817 deletions
|
@ -46,7 +46,7 @@ class LinkDetailsExtractor
|
|||
end
|
||||
|
||||
def image
|
||||
obj = first_of_value(json['image'])
|
||||
obj = first_of_hash(json['image'])
|
||||
|
||||
return obj['url'] if obj.is_a?(Hash)
|
||||
|
||||
|
@ -85,15 +85,15 @@ class LinkDetailsExtractor
|
|||
private
|
||||
|
||||
def author
|
||||
first_of_value(json['author']) || {}
|
||||
first_of_hash(json['author']) || {}
|
||||
end
|
||||
|
||||
def publisher
|
||||
first_of_value(json['publisher']) || {}
|
||||
first_of_hash(json['publisher']) || {}
|
||||
end
|
||||
|
||||
def first_of_value(arr)
|
||||
arr.is_a?(Array) ? arr.first : arr
|
||||
def first_of_hash(arr)
|
||||
arr.is_a?(Array) ? arr.flatten.find { |item| item.is_a?(Hash) } : arr
|
||||
end
|
||||
|
||||
def root_array(root)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue