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.

28 lines
721 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. matches = Regexp.new("objectId=([\\d]+):objectType=#{expected_type}").match(tag)
  8. return matches[1] unless matches.nil?
  9. end
  10. def local_id?(id)
  11. id.start_with?("tag:#{LOCAL_DOMAIN}")
  12. end
  13. def subscription_url(account)
  14. add_base_url_prefix subscriptions_path(id: account.id, format: '')
  15. end
  16. def salmon_url(account)
  17. add_base_url_prefix salmon_path(id: account.id, format: '')
  18. end
  19. def add_base_url_prefix(suffix)
  20. File.join(root_url, "api", suffix)
  21. end
  22. end