GeoRSS aggregator and Layar augmented reality server
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

68 lines
1.6 KiB

  1. module PostsHelper
  2. def post_to_poi(post, subscription)
  3. # http://layar.com/documentation/browser/api/getpois-response/
  4. res = {
  5. :id => post.id,
  6. :imageURL => "%s%s/assets/layar-icons/tal-logo-100.png" % [ request.protocol, request.env['HTTP_HOST'] ],
  7. :anchor => {
  8. :geolocation => {
  9. :lat => post.lat,
  10. :lon => post.lon,
  11. :alt => 0
  12. }
  13. },
  14. :text => {
  15. :title => decode_entities(post.title),
  16. :description => clean_description(post.summary),
  17. :footnote => "From #{post.feed_title}"
  18. },
  19. :actions => [
  20. {
  21. :label => "Read more...",
  22. :uri => post.url,
  23. :contentType => "text/html",
  24. :method => "GET",
  25. :activityType => 1
  26. },
  27. ]
  28. }
  29. unless subscription.icon_url.blank?
  30. res[:object] = {
  31. :contentType => "image/vnd.layar.generic",
  32. :url => subscription.icon_url,
  33. :reducedURL => subscription.icon_url,
  34. :size => 60
  35. }
  36. # http://layar.com/documentation/browser/api/getpois-response/hotspots/
  37. res[:transform] = {
  38. :rotate => {
  39. :rel => true,
  40. :axis => { :x => 0, :y => 0, :z => 1 },
  41. :angle => 0
  42. },
  43. :translate => { :x => 0, :y => -0.075, :z => 0 },
  44. :scale => 1.0
  45. }
  46. end
  47. res
  48. end
  49. def decode_entities(s)
  50. HTMLEntities.new.decode s
  51. end
  52. def clean_description(s)
  53. if s.nil?
  54. return ""
  55. end
  56. if s.size > 137
  57. s = s[0..136] + '...'
  58. end
  59. decode_entities(s.gsub(/<.+?>/, ''))
  60. end
  61. end