FIX: increase host_must_be_valid regex for .technology TLD

.technology is 11 chars long and wasn't being matched previously
This commit is contained in:
jloh 2017-04-15 21:06:51 +10:00
parent 7389831961
commit 5f47603b07
No known key found for this signature in database
GPG Key ID: F05DB2D2374AA095
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ class EmbeddableHost < ActiveRecord::Base
private
def host_must_be_valid
if host !~ /\A[a-z0-9]+([\-\.]{1}[a-z0-9]+)*\.[a-z]{2,7}(:[0-9]{1,5})?(\/.*)?\Z/i &&
if host !~ /\A[a-z0-9]+([\-\.]{1}[a-z0-9]+)*\.[a-z]{2,10}(:[0-9]{1,5})?(\/.*)?\Z/i &&
host !~ /\A(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})(:[0-9]{1,5})?(\/.*)?\Z/ &&
host !~ /\A([a-z0-9]+([\-\.]{1}[a-z0-9]+)*\.)?localhost(\:[0-9]{1,5})?(\/.*)?\Z/i
errors.add(:host, I18n.t('errors.messages.invalid'))