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.

219 lines
6.1 KiB

8 years ago
8 years ago
8 years ago
  1. module AtomBuilderHelper
  2. def stream_updated_at
  3. @account.stream_entries.last ? (@account.updated_at > @account.stream_entries.last.created_at ? @account.updated_at : @account.stream_entries.last.created_at) : @account.updated_at
  4. end
  5. def entry(xml, is_root = false, &block)
  6. if is_root
  7. root_tag(xml, :entry, &block)
  8. else
  9. xml.entry(&block)
  10. end
  11. end
  12. def feed(xml, &block)
  13. root_tag(xml, :feed, &block)
  14. end
  15. def unique_id(xml, date, id, type)
  16. xml.id_ unique_tag(date, id, type)
  17. end
  18. def simple_id(xml, id)
  19. xml.id_ id
  20. end
  21. def published_at(xml, date)
  22. xml.published date.iso8601
  23. end
  24. def updated_at(xml, date)
  25. xml.updated date.iso8601
  26. end
  27. def verb(xml, verb)
  28. xml['activity'].send('verb', "http://activitystrea.ms/schema/1.0/#{verb}")
  29. end
  30. def content(xml, content)
  31. xml.content({ type: 'html' }, content) unless content.blank?
  32. end
  33. def title(xml, title)
  34. xml.title strip_tags(title || '').truncate(80)
  35. end
  36. def author(xml, &block)
  37. xml.author(&block)
  38. end
  39. def target(xml, &block)
  40. xml['activity'].object(&block)
  41. end
  42. def object_type(xml, type)
  43. xml['activity'].send('object-type', "http://activitystrea.ms/schema/1.0/#{type}")
  44. end
  45. def uri(xml, uri)
  46. xml.uri uri
  47. end
  48. def name(xml, name)
  49. xml.name name
  50. end
  51. def summary(xml, summary)
  52. xml.summary(summary) unless summary.blank?
  53. end
  54. def subtitle(xml, subtitle)
  55. xml.subtitle(subtitle) unless subtitle.blank?
  56. end
  57. def link_alternate(xml, url)
  58. xml.link(rel: 'alternate', type: 'text/html', href: url)
  59. end
  60. def link_self(xml, url)
  61. xml.link(rel: 'self', type: 'application/atom+xml', href: url)
  62. end
  63. def link_hub(xml, url)
  64. xml.link(rel: 'hub', href: url)
  65. end
  66. def link_salmon(xml, url)
  67. xml.link(rel: 'salmon', href: url)
  68. end
  69. def portable_contact(xml, account)
  70. xml['poco'].preferredUsername account.username
  71. xml['poco'].displayName(account.display_name) unless account.display_name.blank?
  72. xml['poco'].note(account.note) unless account.note.blank?
  73. end
  74. def in_reply_to(xml, uri, url)
  75. xml['thr'].send('in-reply-to', { ref: uri, href: url, type: 'text/html' })
  76. end
  77. def uri_for_target(target)
  78. if target.local?
  79. if target.object_type == :person
  80. account_url(target)
  81. else
  82. unique_tag(target.stream_entry.created_at, target.stream_entry.activity_id, target.stream_entry.activity_type)
  83. end
  84. else
  85. target.uri
  86. end
  87. end
  88. def url_for_target(target)
  89. if target.local?
  90. if target.object_type == :person
  91. account_url(target)
  92. else
  93. account_stream_entry_url(target.account, target.stream_entry)
  94. end
  95. else
  96. target.url
  97. end
  98. end
  99. def link_mention(xml, account)
  100. xml.link(rel: 'mentioned', href: uri_for_target(account))
  101. end
  102. def link_avatar(xml, account)
  103. single_link_avatar(xml, account, :large, 300)
  104. single_link_avatar(xml, account, :medium, 96)
  105. single_link_avatar(xml, account, :small, 48)
  106. end
  107. def logo(xml, url)
  108. xml.logo url
  109. end
  110. def email(xml, email)
  111. xml.email email
  112. end
  113. def conditionally_formatted(activity)
  114. if activity.is_a?(Status)
  115. content_for_status(activity.reblog? ? activity.reblog : activity)
  116. elsif activity.nil?
  117. nil
  118. else
  119. activity.content
  120. end
  121. end
  122. def include_author(xml, account)
  123. object_type xml, :person
  124. uri xml, url_for_target(account)
  125. name xml, account.username
  126. email xml, account.local? ? "#{account.acct}@#{Rails.configuration.x.local_domain}" : account.acct
  127. summary xml, account.note
  128. link_alternate xml, url_for_target(account)
  129. link_avatar xml, account
  130. portable_contact xml, account
  131. end
  132. def include_entry(xml, stream_entry)
  133. unique_id xml, stream_entry.created_at, stream_entry.activity_id, stream_entry.activity_type
  134. published_at xml, stream_entry.created_at
  135. updated_at xml, stream_entry.updated_at
  136. title xml, stream_entry.title
  137. content xml, conditionally_formatted(stream_entry.activity)
  138. verb xml, stream_entry.verb
  139. link_self xml, account_stream_entry_url(stream_entry.account, stream_entry, format: 'atom')
  140. link_alternate xml, account_stream_entry_url(stream_entry.account, stream_entry)
  141. # Comments need thread element
  142. if stream_entry.threaded?
  143. in_reply_to xml, uri_for_target(stream_entry.thread), url_for_target(stream_entry.thread)
  144. end
  145. if stream_entry.targeted?
  146. target(xml) do
  147. if stream_entry.target.object_type == :person
  148. include_author xml, stream_entry.target
  149. else
  150. object_type xml, stream_entry.target.object_type
  151. simple_id xml, uri_for_target(stream_entry.target)
  152. title xml, stream_entry.target.title
  153. link_alternate xml, url_for_target(stream_entry.target)
  154. end
  155. # Statuses have content and author
  156. if [:note, :comment].include? stream_entry.target.object_type
  157. content xml, conditionally_formatted(stream_entry.target)
  158. verb xml, stream_entry.target.verb
  159. published_at xml, stream_entry.target.created_at
  160. updated_at xml, stream_entry.target.updated_at
  161. author(xml) do
  162. include_author xml, stream_entry.target.account
  163. end
  164. end
  165. end
  166. else
  167. object_type xml, stream_entry.object_type
  168. end
  169. stream_entry.mentions.each do |mentioned|
  170. link_mention xml, mentioned
  171. end
  172. end
  173. private
  174. def root_tag(xml, tag, &block)
  175. xml.send(tag, { :xmlns => 'http://www.w3.org/2005/Atom', 'xmlns:thr' => 'http://purl.org/syndication/thread/1.0', 'xmlns:activity' => 'http://activitystrea.ms/spec/1.0/', 'xmlns:poco' => 'http://portablecontacts.net/spec/1.0', 'xmlns:media' => 'http://purl.org/syndication/atommedia' }, &block)
  176. end
  177. def single_link_avatar(xml, account, size, px)
  178. xml.link('rel' => 'avatar', 'type' => account.avatar_content_type, 'media:width' => px, 'media:height' =>px, 'href' => full_asset_url(account.avatar.url(size, false)))
  179. end
  180. end