torrentpier-lts/library/Zend/Mail/Address.php

95 lines
2.3 KiB
PHP
Raw Normal View History

<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
2023-04-01 09:03:34 +03:00
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
namespace Zend\Mail;
2023-04-01 09:03:34 +03:00
use Zend\Validator\EmailAddress as EmailAddressValidator;
use Zend\Validator\Hostname;
class Address implements Address\AddressInterface
{
protected $email;
protected $name;
/**
* Constructor
*
* @param string $email
* @param null|string $name
* @throws Exception\InvalidArgumentException
* @return Address
*/
public function __construct($email, $name = null)
{
2023-04-01 09:03:34 +03:00
$emailAddressValidator = new EmailAddressValidator(Hostname::ALLOW_LOCAL);
if (! is_string($email) || empty($email)) {
throw new Exception\InvalidArgumentException('Email must be a valid email address');
}
if (preg_match("/[\r\n]/", $email)) {
throw new Exception\InvalidArgumentException('CRLF injection detected');
}
if (! $emailAddressValidator->isValid($email)) {
$invalidMessages = $emailAddressValidator->getMessages();
throw new Exception\InvalidArgumentException(array_shift($invalidMessages));
}
2023-04-01 09:03:34 +03:00
if (null !== $name) {
if (! is_string($name)) {
throw new Exception\InvalidArgumentException('Name must be a string');
}
if (preg_match("/[\r\n]/", $name)) {
throw new Exception\InvalidArgumentException('CRLF injection detected');
}
$this->name = $name;
}
$this->email = $email;
}
/**
* Retrieve email
*
* @return string
*/
public function getEmail()
{
return $this->email;
}
/**
* Retrieve name
*
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* String representation of address
*
* @return string
*/
public function toString()
{
$string = '<' . $this->getEmail() . '>';
$name = $this->getName();
if (null === $name) {
return $string;
}
2023-04-01 09:03:34 +03:00
return $name . ' ' . $string;
}
}