location.rb 525 B

12345678910111213141516171819
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. class Whatsapp::Webhook::Message::Location < Whatsapp::Webhook::Message
  3. OSM_MARKER_URL = 'https://www.openstreetmap.org/?mlat=%s&mlon=%s#map=17/%s/%s'.freeze
  4. private
  5. def body
  6. "📍 <a href='#{format(OSM_MARKER_URL, message[:latitude], message[:longitude], message[:latitude], message[:longitude])}' target='_blank'>#{message[:name] || 'Location'}</a>"
  7. end
  8. def content_type
  9. 'text/html'
  10. end
  11. def type
  12. :location
  13. end
  14. end