orbit-basic/app/models/link.rb

40 lines
962 B
Ruby
Raw Normal View History

class Link < Item
2013-10-23 10:28:09 +00:00
field :url, localize: true
2013-10-30 10:53:23 +00:00
2013-10-31 06:09:59 +00:00
validates :url, at_least_one: true, :format => /^(http|https):\/\/(([a-z0-9]+([\-\.]{1}[a-z0-9]+)*\.[a-z]{2,5})|((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?))|localhost(:[0-9]{1,5})?(\/.*)?/i
before_validation :add_http
def link
ApplicationController.helpers.link_to(self.name, self.url)
end
2013-10-23 10:28:09 +00:00
def urls
2013-10-30 10:53:23 +00:00
if self.url_translations.present?
self.url_translations.inject({}) do |result, (key, value)|
result["url-#{key}"] = value
result
end
else
{}
end
2013-10-23 10:28:09 +00:00
end
protected
def add_http
2013-10-23 10:28:09 +00:00
if self.url_translations.present?
2013-10-30 10:53:23 +00:00
self.url_translations = self.url_translations.inject({}) do |translations, (key, value)|
if value.blank? || value[/^(http|https):\/\//]
translations[key] = value
else
translations[key] = 'http://' + value
2013-10-23 10:28:09 +00:00
end
2013-10-30 10:53:23 +00:00
translations
2013-10-23 10:28:09 +00:00
end
end
end
end