3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# File 'app/models/c80_feedback_form/message_feedback_validator.rb', line 3
def validate(record)
unless record.errors.present?
puts "<MessageFeedbackValidator.validate> record = #{record}"
mark_please_used = false
unless record.name.present?
record.errors[:name] = 'Укажите, пожалуйста, Ваше имя'
mark_please_used = true
end
if record.email_or_phone.present?
if record.email_or_phone[/([a-z0-9_.-]+)@([a-z0-9-]+)\.[a-z.]+/].present?
else
if record.email_or_phone[/^((8|\+7)[\- ]?)?(\(?\d{3}\)?[\- ]?)?[\d\- ]{7,10}$/].present?
else
if mark_please_used
t2 = 'Номер телефона или email введены неверно'
else
t2 = 'Пожалуйста, укажите корректный номер телефона или email'
mark_please_used = true
end
record.errors[:email_or_phone] = t2
end
end
else
if mark_please_used
t1 = 'Укажите или номер телефона или email'
else
t1 = 'Укажите, пожалуйста, или номер телефона или email'
mark_please_used = true
end
record.errors[:email_or_phone] = t1
end
unless record..present?
record.errors[:comment] = 'Сообщение не может быть пустым'
end
unless record.kapcha.blank?
record.errors[:kapcha] = 'fail'
end
end
end
|