2024-11-10 13:12:42 +00:00
|
|
|
def get_random_image(photos)
|
|
|
|
random_photo = photos.sample
|
|
|
|
|
|
|
|
conn = Faraday.new(url: 'https://commons.wikimedia.org/w/api.php') do |faraday|
|
|
|
|
faraday.adapter Faraday.default_adapter # Use the default adapter (Net::HTTP)
|
|
|
|
end
|
|
|
|
|
|
|
|
params = {
|
|
|
|
action: 'query',
|
|
|
|
prop: 'imageinfo',
|
|
|
|
titles: "#{random_photo}", # Specify the category title
|
|
|
|
iiprop: 'url|user|extmetadata',
|
|
|
|
format: 'json' # Request response in JSON format
|
|
|
|
}
|
|
|
|
|
|
|
|
response = conn.get do |req|
|
|
|
|
req.params = params
|
|
|
|
end
|
|
|
|
|
|
|
|
data = JSON.parse(response.body)
|
|
|
|
info = data['query']['pages'].values.first
|
|
|
|
user = info['imageinfo'].first['user']
|
2024-11-10 13:51:30 +00:00
|
|
|
user_url = info['imageinfo'].first['extmetadata']['Artist']['value']
|
2024-11-10 13:12:42 +00:00
|
|
|
url = info['imageinfo'].first['url']
|
|
|
|
license = info['imageinfo'].first['extmetadata']['LicenseShortName']['value']
|
2024-11-10 13:51:30 +00:00
|
|
|
license_url = info['imageinfo'].first['extmetadata']['LicenseUrl']['value']
|
2024-11-10 13:12:42 +00:00
|
|
|
desc = info['imageinfo'].first['extmetadata']['ImageDescription']['value']
|
|
|
|
|
2024-11-10 13:51:30 +00:00
|
|
|
return {:user => user, :url => url, :license => license, :desc => desc, :license_url => license_url, :user_url => user_url}
|
2024-11-10 13:12:42 +00:00
|
|
|
end
|