Files
Phraseanet/lib/Alchemy/Phrasea/Notification/Emitter.php

73 lines
1.4 KiB
PHP

<?php
/*
* This file is part of Phraseanet
*
* (c) 2005-2016 Alchemy
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Alchemy\Phrasea\Notification;
use Alchemy\Phrasea\Exception\InvalidArgumentException;
use Alchemy\Phrasea\Model\Entities\User;
class Emitter implements EmitterInterface
{
/**
* @var string
*/
private $name;
/**
* @var string
*/
private $email;
/**
* @param string $name
* @param string $email
*/
public function __construct($name, $email)
{
if (!\Swift_Validate::email($email)) {
throw new InvalidArgumentException(sprintf('Invalid e-mail address (%s)', $email));
}
$this->name = $name;
$this->email = $email;
}
/**
* {@inheritdoc}
*/
public function getName()
{
return $this->name;
}
/**
* {@inheritdoc}
*/
public function getEmail()
{
return $this->email;
}
/**
* Creates an Emitter given a User
*
* @param User $user
*
* @return Emitter
*
* @throws InvalidArgumentException In case no valid email is found for user
*/
public static function fromUser(User $user)
{
return new static($user->getDisplayName(), $user->getEmail());
}
}