No commit activity in last 3 years
No release in over 3 years
It provides validation of URIs (URLs) to ActiveModel records and ActionControllers in Rails 3.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0
>= 0
~> 2

Runtime

 Project Readme

Vidibus::ValidateUri Build Status

It provides validation of URIs (URLs) to ActiveModel records and ActionControllers in Rails 3 and 4.

This gem is part of Vidibus, an open source toolset for building distributed (video) applications.

Installation

Add gem "vidibus-validate_uri" to your Gemfile. Then call bundle install on your console.

Usage

To validate an URI in your ActiveModel record, simply add the uri validator to the field you want to validate as URI:

class Model
  include Mongoid::Document
  field :some_uri
  validates :some_uri, :uri => true
end

To validate an URI in any model, include ActiveModel::Validations:

class Model
  include ActiveModel::Validations
  attr_accessor :uri
  validates :some_uri, :uri => true
end

Just in case you'll need it, a method valid_uri? is available to controllers that inherit from ActionController::Base. Use it like this:

valid_uri?("something") # => false

Validation options

To restrict validation to a certain protocol, provide a :protocol option:

validates :some_uri, :uri => {:protocol => :rtmp}
validates :some_uri, :uri => {:protocol => [:rtsp, :rtmp]}

To check if the uri is accessible over the network, provide an :accessible option:

validates :some_uri, :uri => {:accessible => true}

Just like for any other ActiveModel validation, you may allow blank values by providing an :allow_blank option:

validates :some_uri, :uri => {:allow_blank => true}

You may provide those validation options to the valid_uri? method as well:

valid_uri?(your_uri, :accessible => true)
valid_uri?(your_uri, :protocol => :rtmp)
valid_uri?(your_uri, :protocol => [:rtsp, :rtmp])

Copyright

© 2010-2013 Andre Pankratz. See LICENSE for details.