Tagged Questions
0
votes
1answer
31 views
Is this a bug in Rails validations or am I doing something wrong?
This involves validations on a join table, validating the activerecord on either side of the join against each other. It seems to not behave as expected, allowing a violation of the validation.
I ...
0
votes
2answers
24 views
Auto generate models on creation of other models in Ruby on Rails
I have a model called Video that has many statuses. I want to create a status of each kind and add it to @video.statuses in the def create of VideosController.
In VideosController, I have:
def ...
0
votes
0answers
19 views
ActiveRecord: different custom validators for a model, depending on action
I wish for my records to the validated differently depending on the context (controller action) in which they are used.
Certainly, I can make a custom function and therein manually add values to the ...
0
votes
2answers
36 views
Write rule in Cancan or model validation?
Update: After reading the answers, I think I should rephrase my question (as question 3)
From time to time I get confused as to where I should write a some conditional check: in Cancan ability or in ...
1
vote
1answer
26 views
Reordering Uniquely Ordered Models in ActiveRecord Association
I have List model that has many items. Those items have a priority that is unique in the scope of the list.
class List < ActiveRecord::Base
has_many :items
accepts_nested_attributes_for :items
...
0
votes
1answer
24 views
rails - can't build a record with uploaded file
I am trying to build a profile object like so:
@user.profiles.build(params[:profile])
When build is called, it runs the validations for Profile but the issue occurs when there is an image uploaded ...
1
vote
1answer
62 views
Why ActiveRecord automatically validates has_many association
Following models are given:
class Question < ActiveRecord::Base
has_many :answers
end
class Answers < ActiveRecord::Base
belongs_to: question
validates :comment, presence: true
end
...
0
votes
2answers
70 views
password confirmation is not working in rails 3
I have to give a registration facility to a store. There the user have to enter name, password,confirm password. But when I am trying to enter a different password for confirmation, it isn't showing ...
0
votes
2answers
47 views
Limit number of siblings in belongs_to ActiveRecord?
How would you validate the number of children that belong to a parent object?
For example, if I have a question object that accepts nested attributes for answers:
class Question < ...
0
votes
1answer
17 views
Validating fields based on variables that may change
I'm trying to validate a date of birth field that has to be in a certain range:
validates :year_of_birth, :inclusion => { :in => 1900..Date.today.year - 5 }
Although for this case it wouldn't ...
0
votes
0answers
88 views
undefined method `each' for “1”:String
Im getting a weird string error when trying to assign attributes on a Rails model:
# POST /apartments
# POST /apartments.xml
def create
@apartment = Apartment.new(params[:apartment])
Params
...
0
votes
0answers
97 views
Rails validate between datetime
I'm building a reservation system with Ruby on Rails 3. Some code snippets:
Reservation model
class Reservation < ActiveRecord::Base
attr_accessible :begin, :end
belongs_to :user
has_many ...
0
votes
0answers
44 views
Rails model cross field validation
In Ruby on Rails application, I am trying to validate a field based on a method which takes as parameter another attribute of the record.
Here is the scenario:
In the Product model, I want to accept ...
0
votes
1answer
135 views
Yii : how to get an array of ids from a table
Let's say I have a model with 2 tables : Owner (int: id) and Car (int: id, int:owner_id).
I'm trying to build a validation rule on Car in order to avoid non existing owner_ids to be bound to the ...
0
votes
0answers
39 views
Why does calling .dup disable activerecord validation? [duplicate]
Possible Duplicate:
Validation ignored when cloning a newly created record
I am seeing weird issues in my tests where I can actually commit bad data to my database.
I've distilled the ...
0
votes
1answer
76 views
Rails path helper for invalid model object
I have a form for creating a model (named Image) and the list for all entities of this model on the same view. The model is associated in a one-to-many relation with a second model called Deck (one ...
0
votes
2answers
161 views
Rails: validating a field is present only if another is present
I have a model where there are two fields that can technically be null. The field names are :is_activated and :activated_at. :activated_at is only required if :is_activated is set to true. It does not ...
0
votes
3answers
90 views
Using validates_with with ruby and mongoid
I'm new to ruby and mongoid. I need to use validates_with and below is the code I have
class ValidatorClass < ActiveModel::Validator
def validate(record)
if record.name == ""
...
1
vote
2answers
74 views
Validate on inclusion within array of options OR be nil
I have a model where I'd like to restrict input for a field to either be nil or fall within a specified array of values. I can get the inclusion part working, but the allow_nil: true bit doesn't seem ...
1
vote
1answer
63 views
Rails conditional validation based on a given Model
I didn't define the problem correctly the first time. I tried to make a simple example and failed. Let's try again :)
I have an Address Model that validates the street, city, state, and zip ...
4
votes
1answer
83 views
Is it really needed to validate foreign keys?
I am using Ruby on Rails v3.2.2 and, after post my previous question, I would like to know and understand if (or not) to explicitly validate foreign keys related to ActiveRecord::Associations is ...
2
votes
1answer
271 views
Trouble with accepts_nested_attributes_for on validating foreign key
I am using Ruby on Rails v3.2.2. I would like to solve the issue related to the validation of a foreign key when using accepts_nested_attributes_for and validates_associated RoR methods. That is, I ...
0
votes
3answers
49 views
validates combination of attributes
I have two attributes (hours and days) in my model (auction). I have business logic on the combination of hours and days. For example
auction duration = days*24 + hours
I also have some basic ...
2
votes
1answer
45 views
Rails 3: create_association fails validation and deletes previous associated record
Let's assume I have two models.
class User < ActiveRecord::Base
has_one :blog
end
class Blog < ActiveRecord::Base
belongs_to :user
validates_presence_of :user
validates_uniqueness_of ...
8
votes
1answer
284 views
Rails invalid datetime on model results in nil
I have a model with a datetime attribute. I am trying to validate incoming JSON which would update the model. But ActiveRecord seems to be setting the value of the attribute to nil if it is an invalid ...
2
votes
1answer
82 views
Validate presence before custom validation
validates :place_id, :title, :level, :start_at, :end_at, :presence => true
validate :event_takes_place_in_one_day, :event_is_not_in_past
def event_takes_place_in_one_day
binding.pry
...
5
votes
1answer
114 views
Where to put validations when following a DCI design?
I'm following DCI to structure the behavior of a new Rails application, but I have some doubts about where to put the validations.
Traditionally, if you're going to manage your data using ...
0
votes
2answers
125 views
Rails model validation of has_many relationship count
In my Rails app I have Card and Pack models, and a many to many relationship between them. I want to validate that a pack is created with exactly 3 cards in it. The pack is being associated with ...
0
votes
2answers
260 views
Rails Pass A Parameter To Conditional Validation
I'm importing heaps of student data from an spreadsheet document. Each row of student data will represent a new user, however, the possibility of importing an already existing student exists and I ...
0
votes
2answers
53 views
Edge case for accepts_nested_attributes and validation
I have an Account model that accepts nested attributes for a user model. An Account has_many users. So a user cannot exist without an account. I wrote this validation:
# users.rb
validates ...
0
votes
1answer
117 views
Rails 3 Validation that only gets triggered once to simulate a warning on new records
I was wondering what the best implementation for displaying a warning for a particular field being sent to the database.
To give you an example, somebody provides data which is considered valid, but ...
0
votes
3answers
86 views
How do I display validation errors in Rails 3?
I have the following code:
validates :username,:password, :presence => {:message => 'fields must not be blank'}
but I can't get the error message when the field is blank.
0
votes
1answer
169 views
Rails i18n specific error validation formats
So you can change an error message in en.yml with something like the following:
en:
activerecord:
errors:
models:
foo:
attributes:
amount:
...
0
votes
0answers
187 views
Rails 3 with composed_of model and validation get error “NoMethodError: undefined method `marked_for_destruction?'”
I have tried to add custom validation as is written in Rails 3 with composed_of model and validation but i got strange error: "NoMethodError: undefined method `marked_for_destruction?' for Money"
And ...
0
votes
1answer
117 views
ActiveRecord validations not working with custom attribute assignment method
I'm working on a Rails app with two-factor authentication. The User model in this app has an attribute, two_factor_phone_number. I have the model validating that this attribute is present before the ...
0
votes
0answers
91 views
Using number_with_delimiter in internationalized error messages
We are using Rails3 with internationalized validation messages, but the number format isn't being internationalized.
For example:
we want : "... is too long (maximum is 1,200 characters)"
we get : ...
0
votes
1answer
137 views
How to localize ActiveRecord messages in general?
I'm trying
ru:
activerecord:
errors:
format: "%{message}"
with no effect, but
ru:
activerecord:
errors:
messages:
record_invalid: "Неверные значения: %{errors}"
...
0
votes
2answers
60 views
Why doesn't custom validation work in RoR 3
Here is my code for the Photo model class:
class Photo < ActiveRecord::Base
belongs_to :user
belongs_to :organization
validate :user_id_or_organization_id_cant_be_blank
...
def ...
0
votes
1answer
118 views
Rails validation message is treating percentage signs and double periods oddly
Using Rails 2.3.4, Ruby 1.8.7.
I have an ActiveRecord validation where I want to include the user's input in the error message. The simplified version of I'm doing something like this:
...
0
votes
1answer
122 views
In Ruby on Rails models, why is presence validated on associations but uniqueness validated on foreign keys
I have a model with a foreign key. Even though there's a database constraint preventing a duplicate user_id from entering SomeClass's table, I'm repeating (pre-empting, really) that validation in the ...
1
vote
1answer
43 views
Trigger rails/active_record conditional validation without conditionals
I have a model that has three specific states: draft, submitted and published.
Each of these states has specific validation rules. E.g. the name of the model is only required in submitted and ...
0
votes
3answers
297 views
Validate only if phone number is not empty
I can validate the phone_number for uniqueness like this in the model :
validates :phone_number, :uniqueness => true
The problem is that none of the users in the database have a phone number, ...
0
votes
1answer
122 views
time type field getting bad default datetime if it is invalid
Terrible title, but this is what I have:
Loading development environment (Rails 3.2.8)
1.9.3p194 :001 > Product
=> Product(id: integer, name: string, date: datetime, created_at: datetime, ...
0
votes
1answer
154 views
Check mysql connection to remote host
I have model to store database connection parameters (host, database name, username, password) and filling it by form. Before create or update I need to check if connection be good with entered ...
0
votes
1answer
194 views
Rails 3: Mongoid validation issue
Using Mongoid, I am trying to validate the :code input on the submission form to make sure they are using a proper code that is already stored in the database. There are about 2000+ codes so a helper ...
0
votes
0answers
89 views
Rails doesn't validate create_model or build_model (has_one association)
I've got User has_one Shop. Rails is not validating when I tried create_shop or build_shop, neither in the browser nor the rails console.
My code:
class Shop < ActiveRecord::Base
...
0
votes
2answers
274 views
Rails validate :if with checkboxes
I am working with a form having 2 checkboxes: option_one and option_two.
I don't want to allow submission of the form if option_two is checked and option_one is not.
In other words if somebody ...
1
vote
1answer
232 views
ActiveRecord limit associations count with nested_form gem and accept_nested_attributes, allow_destroy => true
I want to limit my association to two (one of every scope). I tried:
has_many :associations
has_many :associations_with_first_scope, :class_name => 'Association', :conditions => {...}
has_many ...
1
vote
1answer
844 views
Yii “required” validation failing: $model->attributes returns correct data, but $model->requiredAttribute is empty?
I have a model that extends CActiveRecord that has the following rules() method:
/**
* @return array validation rules for model attributes.
*/
public function rules()
{
return array(
...
2
votes
1answer
113 views
Is it possible to combine with_options and :if for conditional validations?
I'm trying to use with_options to group my conditional validations together for admin users.
The second validation for username uniqueness ends up overriding the with_options condition.
Is there a ...



