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.

24 lines
637 B

8 years ago
8 years ago
  1. module ApplicationHelper
  2. include RoutingHelper
  3. def unique_tag(date, id, type)
  4. "tag:#{LOCAL_DOMAIN},#{date.strftime('%Y-%m-%d')}:objectId=#{id}:objectType=#{type}"
  5. end
  6. def unique_tag_to_local_id(tag, expected_type)
  7. Regexp.new("objectId=([\d]+):objectType=#{expected_type}").match(tag)
  8. return match[1] unless match.nil?
  9. end
  10. def subscription_url(account)
  11. add_base_url_prefix subscriptions_path(id: account.id, format: '')
  12. end
  13. def salmon_url(account)
  14. add_base_url_prefix salmon_path(id: account.id, format: '')
  15. end
  16. def add_base_url_prefix(suffix)
  17. File.join(root_url, "api", suffix)
  18. end
  19. end