1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
<?php
if (! class_exists ( 'PostmanEmailAddress' )) {
class PostmanEmailAddress {
private $name;
private $email;
public function __construct($email, $name = null) {
// Break $recipient into name and address parts if in the format "Foo <bar@baz.com>"
if (preg_match ( '/(.*)<(.+)>/', $email, $matches )) {
if (count ( $matches ) == 3) {
$name = $matches [1];
$email = $matches [2];
}
}
$this->setEmail ( trim ( $email ) );
$this->setName ( trim ( $name ) );
}
public static function copy(PostmanEmailAddress $orig) {
return new PostmanEmailAddress ( $orig->getEmail (), $orig->getName () );
}
public function getName() {
return $this->name;
}
public function getEmail() {
return $this->email;
}
public function format() {
$name = $this->getName ();
if (! empty ( $name )) {
return sprintf ( '%s <%s>', $this->getName (), $this->getEmail () );
} else {
return sprintf ( '%s', $this->getEmail () );
}
}
public function setName($name) {
$this->name = $name;
}
public function setEmail($email) {
$this->email = $email;
}
/**
* Validate the email address
*
* @throws Exception
*/
public function validate($desc = '') {
if (! PostmanUtils::validateEmail ( $this->email )) {
if (empty ( $desc )) {
/* Translators: Where %s is the email address */
$message = sprintf ( 'Invalid e-mail address "%s"', $this->email );
} else {
/* Translators: Where (1) is the header name (eg. To) and (2) is the email address */
$message = sprintf ( 'Invalid "%1$s" e-mail address "%2$s"', $desc, $this->email );
}
$logger = new PostmanLogger ( get_class ( $this ) );
$logger->warn ( $message );
throw new Exception ( $message );
}
}
/**
* Accept a String of addresses or an array and return an array
*
* @param unknown $recipientList
* @param unknown $recipients
*/
public static function convertToArray($emails) {
assert ( ! empty ( $emails ) );
if (! is_array ( $emails )) {
// http://tiku.io/questions/955963/splitting-comma-separated-email-addresses-in-a-string-with-commas-in-quotes-in-p
$t = str_getcsv ( $emails );
$emails = array ();
foreach ( $t as $k => $v ) {
if (strpos ( $v, ',' ) !== false) {
$t [$k] = '"' . str_replace ( ' <', '" <', $v );
}
$tokenizedEmail = trim ( $t [$k] );
array_push ( $emails, $tokenizedEmail );
}
}
return $emails;
}
public function log(PostmanLogger $log, $desc) {
$message = $desc . ' email=' . $this->getEmail ();
if (! empty ( $this->name )) {
$message .= ' name=' . $this->getName ();
}
$log->debug ( $message );
}
}
}
|