2025-01-19 01:13:59 +08:00
|
|
|
module ApplicationHelper
|
2025-01-23 19:02:52 +08:00
|
|
|
def weather_art_schema(weather_art)
|
|
|
|
{
|
|
|
|
"@context": "https://schema.org",
|
|
|
|
"@type": "ImageObject",
|
|
|
|
"name": "#{weather_art.city.name} Weather Art",
|
|
|
|
"description": weather_art.description,
|
|
|
|
"datePublished": weather_art.created_at.iso8601,
|
|
|
|
"contentUrl": url_for(weather_art.image),
|
|
|
|
"author": {
|
|
|
|
"@type": "Organization",
|
|
|
|
"name": "TodayAIWeather"
|
|
|
|
},
|
|
|
|
"locationCreated": {
|
|
|
|
"@type": "Place",
|
|
|
|
"name": weather_art.city.name,
|
|
|
|
"address": {
|
|
|
|
"@type": "PostalAddress",
|
|
|
|
"addressCountry": weather_art.city.country.name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}.to_json.html_safe if weather_art.image.attached?
|
|
|
|
end
|
2025-01-19 01:13:59 +08:00
|
|
|
end
|