Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using this regex in my model to validate an URL submitted by the user. I don't want to force the user to type the http part, but would like to add it myself if it's not there.

validates :url, :format =>{ :with => /^((http|https):\/\/)?[a-z0-9]+([-.]{1}[a-z0-9]+).[a-z]{2,5}(:[0-9]{1,5})?(\/.)?$/ix, :message => " is not valid" }

Any idea how I could do that? I have very little experience with validation and regex..

share|improve this question

4 Answers

up vote 15 down vote accepted

Use a before filter to add it if it is not there:

before_validation :smart_add_url_protocol

protected

def smart_add_url_protocol
  unless self.url[/^http:\/\//] || self.url[/^https:\/\//]
    self.url = 'http://' + self.url
  end
end

Leave the validation you have in, that way if they make a typo they can correct the protocol.

share|improve this answer
unless self.url[/^http?s:\/\//] wasn't quite working for me. I had to do unless self.url[/^http:\/\//] || self.url[/^https:\/\//] – Tony Beninate Apr 20 '12 at 19:59
the right regex is /^https?:\/\// – fbernier Jul 5 '12 at 3:48
Corrected, thanks. – Douglas F Shearer Jul 8 '12 at 10:53
I think the comma after the before_validation method is comma right? – sq1020 Mar 31 at 18:57
Fixed, thankyou! – Douglas F Shearer Apr 1 at 17:48

Don't do this with a regex, use URI.parse to pull it apart and then see if there is a scheme on the URL:

u = URI.parse('/pancakes')
if(!u.scheme)
    # prepend http:// and try again
elsif(%w{http https}.include?(u.scheme))
    # you're okay
else
    # you've been give some other kind of
    # URL and might want to complain about it
end

Using the URI library for this also makes it easy to clean up any stray nonsense (such as userinfo) that someone might try to put into a URL.

share|improve this answer
We use Addressable for exactly this. It's a little weird if there's no scheme in the URL, however, since it considers the host to be the path. – d11wtq Oct 26 '11 at 21:33

I wouldn't try to do that in the validation, since it's not really part of the validation.

Have the validation optionally check for it; if they screw it up it'll be a validation error, which is good.

Consider using a callback (after_create, after_validation, whatever) to prepend a protocol if there isn't one there already.

(I voted up the other answers; I think they're both better than mine. But here's another option :)

share|improve this answer

Based on mu's answer, here's the code I'm using in my model. This runs when :link is saved without the need for model filters. Super is required to call the default save method.

def link=(_link)
    u=URI.parse(_link)

    if (!u.scheme)
        link = "http://" + _link
    else
        link = _link
    end
    super(link)
end
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.