about summary refs log tree commit diff
path: root/app/helpers
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-02-24 00:57:47 +0100
committerEugen Rochko <eugen@zeonfederated.com>2016-02-24 00:57:47 +0100
commit79baf2fd996c8b69333cf991f4ccf93f0965a744 (patch)
treecbea035e448b5e374a6275e99d4673deba8ef0de /app/helpers
parentee73d35eea024894e851d807132c3f21a133152d (diff)
Process favourites, reblogs and replies from Salmon
Diffstat (limited to 'app/helpers')
-rw-r--r--app/helpers/application_helper.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb
index ed7b59165..36e31929e 100644
--- a/app/helpers/application_helper.rb
+++ b/app/helpers/application_helper.rb
@@ -5,6 +5,11 @@ module ApplicationHelper
     "tag:#{LOCAL_DOMAIN},#{date.strftime('%Y-%m-%d')}:objectId=#{id}:objectType=#{type}"
   end
 
+  def unique_tag_to_local_id(tag, expected_type)
+    Regexp.new("objectId=([\d]+):objectType=#{expected_type}").match(tag)
+    return match[1] unless match.nil?
+  end
+
   def subscription_url(account)
     add_base_url_prefix subscriptions_path(id: account.id, format: '')
   end