0
votes
1answer
70 views

Multiple Database Users per function

We are exploring how SQL inject risks can be limited by only allowing key functions to perform duties within our rails application. I am the security officier, not a full time rails person. The ...
3
votes
2answers
148 views

How to validate URLs for ATOM and RSS feeds

I have a field in my form which is supposed to accept ATOM and RSS feeds as input, how do I write validation code in my model which validate that only feeds have been provided as input.
0
votes
1answer
41 views

How to enforce uniqueness of column on nested attributes:

Lets say I had the following setup class User < ActiveRecord::Base has_many :address accepts_nested_attributes_for :address, allow_destroy: true end class Address < ActiveRecord::Base ...
0
votes
1answer
98 views

validates_confirmation_of :message doesn't appear

subsriber.rb class Subscriber < ActiveRecord::Base validates_confirmation_of :email, :message => "Your emails don't match!" end I have this in my rails app. When I create a new record ...
0
votes
3answers
119 views

There is a common practice to reject “malicious” user-input to a rails application

I am using Ruby on Rails 3.1.0 and I would like to know what is a common practice to prevent to store "malicious" values in the database. For example, I have a database table column means to store ...
0
votes
2answers
313 views

Client-Side Validation for Rails 2

Are there any client-side validation gems similar to client_side_validations (https://github.com/bcardarella/client_side_validations) for Rails 2.x?
1
vote
3answers
174 views

How to access associated table attributes in validation before they are saved in Ruby on Rails

I want to be able to skip validation if a certain attribute is set to false, say status, problem is this model has many nested attributes to them, and they need to skip validation too if status is ...
1
vote
2answers
806 views

*_attributes=() fails validation for nested attribute

Original title: before_validation on update - not handling error properly I'm trying to figure out how to handle the validation of a nested object, especially on the update. My parent class that ...
2
votes
4answers
276 views

Rails: How to set different “:message” for each one of the possible errors?

I use this validation: validates_numericality_of :price, :greater_than_or_equal_to => 0, :less_than => 1000000 How could I set a different :message for each one of the following cases ? ...
1
vote
2answers
218 views

How to prevent Rails from changing the content of the input field when validation fails?

I have a decimal price field in my product model, and a simple validation: class Price < ActiveRecord::Base ... validates_numericality_of :price ... end If I type by mistake 33.0p, it ...
1
vote
2answers
1k views

Rails: Why “format” (regex) validation fails?

I have the following validation of product's price: class Product < ActiveRecord::Base ... PRICE_REGEX = /^([1-9]\d{0,5}|0)(\.\d{1,2})?$/ validates :price, :presence => true, ...
1
vote
2answers
230 views

Data transformation after successful validation

I'm having a bit of a problem normalizing a UPC string code so that I can store it in the same format in the database. I'm using the ean gem to check if the string is good (which is working fine), ...
2
votes
1answer
710 views

Using unless in rails uniqueness validation

I am just starting out in Rails, and trying to develop a simple application. I need to validate three values submitted to the application - each must meet the same validation criteria. The ...
0
votes
1answer
768 views

Rails Form Validations for Multi-Model Forms

I am trying to build a Rails app with multiple models in a single form, and multiple forms on a single page. To make that work (according to my limited knowledge), I have to drop out of the scaffold ...
0
votes
1answer
249 views

Validating an input based on what is entered in another input - Rails

I have a form that has a group of 3 text_fields. I need two of them filled to make calculations. quantity must always be filled. If price is blank, then cost must be filled, or vice versa. I tried ...
0
votes
2answers
1k views

Rails Validation | add class to surrounding <div>

Rails question. The default behavior for error validation is to fieldWithError-styled div around the input field like the following <div class="type-text" id="pre_negotiation_value_div"> ...
-2
votes
1answer
72 views

compare operators

How do I Create a webpage using JavaScript that takes a number from the user and compares it against three ranges of numbers, unsing 3 functions, checklow(), checkmedium() and checkhigh()?