Opened 14 years ago
Last modified 14 years ago
#13744 closed
URLValidator doesnt add "http://" to the beginning of url string if user forgets to write it — at Initial Version
Reported by: | michaelhjulskov | Owned by: | nobody |
---|---|---|---|
Component: | Forms | Version: | 1.2-alpha |
Severity: | Keywords: | URLValidator | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
from django.forms.fields import URLField
from django.core.validators import URLValidator
class MyURLValidator(URLValidator):
regex = re.compile(
r'(?:https?:)?' # http:// or https://
r'(?:(?:[A-Z0-9](?:[A-Z0-9-]{0,61}[A-Z0-9])?\.)+[A-Z]{2,6}\.?|' #domain...
r'localhost|' #localhost...
r'\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})' # ...or ip
r'(?::\d+)?' # optional port
r'(?:/?|/\S+)$', re.IGNORECASE)
class MyURLField(URLField):
def init(self, max_length=None, min_length=None, verify_exists=False, validator_user_agent=validators.URL_VALIDATOR_USER_AGENT, *args, kwargs):
super(MyURLField, self).init(max_length, min_length, *args, kwargs)
self.validators.append(MyURLValidator(verify_exists=verify_exists, validator_user_agent=validator_user_agent))