Module: Ubiquitously::Postable::Post::ClassMethods

Defined in:
lib/ubiquitously/models/service/post/postable.rb

Instance Method Summary collapse

Instance Method Details

#submit_to(url = nil) ⇒ Object



11
12
13
14
# File 'lib/ubiquitously/models/service/post/postable.rb', line 11

def submit_to(url = nil)
  @submit_to = url if url
  @submit_to
end

#submit_url(post) ⇒ Object



16
17
18
19
20
# File 'lib/ubiquitously/models/service/post/postable.rb', line 16

def submit_url(post)
  post.tokenize.inject(submit_to) do |result, token|
    result.gsub(/:#{token.first}/, token.last)
  end
end

#url_permutations(url) ⇒ Object

with and without trailing slash, in case we saved it as one over the other



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# File 'lib/ubiquitously/models/service/post/postable.rb', line 23

def url_permutations(url)
  url, params = url.split("?")
  # without_trailing_slash, with www
  a = url.gsub(/\/$/, "").gsub(/http(s)?:\/\/([^\/]+)/) do |match|
    protocol = "http#{$1.to_s}"
    domain = $2
    domain = "www.#{domain}" if domain.split(".").length < 3 # www.google.com == 3, google.com == 2
    "#{protocol}://#{domain}"
  end
  # with_trailing_slash, with www
  b = "#{a}/"
  # without_trailing_slash, without www
  c = a.gsub(/http(s)?:\/\/www\./, "http#{$1.to_s}://")
  # with_trailing_slash, without www
  d = "#{c}/"

  [a, b, c, d].map { |url| "#{url}?#{params}".gsub(/\?$/, "") }
end