From 800f8b9ee333fa703b30e3761124428564456908 Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Sat, 10 Oct 2015 18:36:09 +0200 Subject: Validate presence of contact info when submitting form. --- lib/band.rb | 2 ++ lib/contact.rb | 21 +++++++++++++++++++++ 2 files changed, 23 insertions(+) (limited to 'lib') diff --git a/lib/band.rb b/lib/band.rb index 59e7541..8cd3535 100644 --- a/lib/band.rb +++ b/lib/band.rb @@ -45,6 +45,8 @@ class Band errors << "Bandnavn mangler" end + errors.concat(@contact.validate!) + if @songs.length <= 0 errors << "Du må ha med minst én låt!" end diff --git a/lib/contact.rb b/lib/contact.rb index 0d87012..5e6c475 100644 --- a/lib/contact.rb +++ b/lib/contact.rb @@ -9,4 +9,25 @@ class Contact @email = params['email'] end end + + def validate! + errors = [] + if @name.nil? || @name.strip.empty? + errors << "Du må oppgi en kontaktperson" + end + + if @addr.nil? || @addr.strip.empty? + errors << "Du må oppgi en kontaktadresse" + end + + if @phone.nil? || @phone.strip.empty? + errors << "Du må oppgi et telefonnummer" + end + + if @email.nil? || @email.strip.empty? + errors << "Du må oppgi en epostadresse" + end + + errors + end end -- cgit v1.2.3