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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
<?php
/**
* @see https://github.com/laminas/laminas-view for the canonical source repository
* @copyright https://github.com/laminas/laminas-view/blob/master/COPYRIGHT.md
* @license https://github.com/laminas/laminas-view/blob/master/LICENSE.md New BSD License
*/
namespace Laminas\View\Helper;
use Laminas\View\Exception;
/**
* Helper for retrieving avatars from gravatar.com
*/
class Gravatar extends AbstractHtmlElement
{
/**
* URL to gravatar service
*/
const GRAVATAR_URL = 'http://www.gravatar.com/avatar';
/**
* Secure URL to gravatar service
*/
const GRAVATAR_URL_SECURE = 'https://secure.gravatar.com/avatar';
/**
* Gravatar rating
*/
const RATING_G = 'g';
const RATING_PG = 'pg';
const RATING_R = 'r';
const RATING_X = 'x';
/**
* Default gravatar image value constants
*/
const DEFAULT_404 = '404';
const DEFAULT_MM = 'mm';
const DEFAULT_IDENTICON = 'identicon';
const DEFAULT_MONSTERID = 'monsterid';
const DEFAULT_WAVATAR = 'wavatar';
/**
* Attributes for HTML image tag
*
* @var array
*/
protected $attributes;
/**
* Email Address
*
* @var string
*/
protected $email;
/**
* True or false if the email address passed is already an MD5 hash
*
* @var bool
*/
protected $emailIsHashed;
/**
* Options
*
* @var array
*/
protected $options = [
'img_size' => 80,
'default_img' => self::DEFAULT_MM,
'rating' => self::RATING_G,
'secure' => null,
];
/**
* Returns an avatar from gravatar's service.
*
* $options may include the following:
* - 'img_size' int height of img to return
* - 'default_img' string img to return if email address has not found
* - 'rating' string rating parameter for avatar
* - 'secure' bool load from the SSL or Non-SSL location
*
* @see http://pl.gravatar.com/site/implement/url
* @see http://pl.gravatar.com/site/implement/url More information about gravatar's service.
* @param string|null $email Email address.
* @param null|array $options Options
* @param array $attributes Attributes for image tag (title, alt etc.)
* @return Gravatar
*/
public function __invoke($email = "", $options = [], $attributes = [])
{
if (! empty($email)) {
$this->setEmail($email);
}
if (! empty($options)) {
$this->setOptions($options);
}
if (! empty($attributes)) {
$this->setAttributes($attributes);
}
return $this;
}
/**
* Return valid image tag
*
* @return string
*/
public function __toString()
{
return $this->getImgTag();
}
/**
* Configure state
*
* @param array $options
* @return Gravatar
*/
public function setOptions(array $options)
{
foreach ($options as $key => $value) {
$method = 'set' . str_replace(' ', '', ucwords(str_replace('_', ' ', $key)));
if (method_exists($this, $method)) {
$this->{$method}($value);
}
}
return $this;
}
/**
* Get avatar url (including size, rating and default image options)
*
* @return string
*/
protected function getAvatarUrl()
{
$src = $this->getGravatarUrl()
. '/' . ($this->emailIsHashed ? $this->getEmail() : md5($this->getEmail()))
. '?s=' . $this->getImgSize()
. '&d=' . $this->getDefaultImg()
. '&r=' . $this->getRating();
return $src;
}
/**
* Get URL to gravatar's service.
*
* @return string URL
*/
protected function getGravatarUrl()
{
return ($this->getSecure() === false) ? self::GRAVATAR_URL : self::GRAVATAR_URL_SECURE;
}
/**
* Return valid image tag
*
* @return string
*/
public function getImgTag()
{
$this->setSrcAttribForImg();
$html = '<img'
. $this->htmlAttribs($this->getAttributes())
. $this->getClosingBracket();
return $html;
}
/**
* Set attributes for image tag
*
* Warning! You shouldn't set src attribute for image tag.
* This attribute is overwritten in protected method setSrcAttribForImg().
* This method(_setSrcAttribForImg) is called in public method getImgTag().
*
* @param array $attributes
* @return Gravatar
*/
public function setAttributes(array $attributes)
{
$this->attributes = $attributes;
return $this;
}
/**
* Set attribs for image tag
*
* @param array $attribs
* @return Gravatar
*
* @deprecated Please use Laminas\View\Helper\Gravatar::setAttributes
*/
public function setAttribs(array $attribs)
{
trigger_error(sprintf(
'%s is deprecated; please use %s::setAttributes',
__METHOD__,
__CLASS__
), E_USER_DEPRECATED);
$this->setAttributes($attribs);
return $this;
}
/**
* Get attributes of image
*
* Warning!
* If you set src attribute, you get it, but this value will be overwritten in
* protected method setSrcAttribForImg(). And finally your get other src
* value!
*
* @return array
*/
public function getAttributes()
{
return $this->attributes;
}
/**
* Get attribs of image
*
* Warning!
* If you set src attrib, you get it, but this value will be overwritten in
* protected method setSrcAttribForImg(). And finally your get other src
* value!
*
* @return array
*
* @deprecated Please use Laminas\View\Helper\Gravatar::getAttributes
*/
public function getAttribs()
{
trigger_error(sprintf(
'%s is deprecated; please use %s::getAttributes',
__METHOD__,
__CLASS__
), E_USER_DEPRECATED);
return $this->getAttributes();
}
/**
* Set default img
*
* Can be either an absolute URL to an image, or one of the DEFAULT_* constants
*
* @link http://pl.gravatar.com/site/implement/url More information about default image.
* @param string $defaultImg
* @return Gravatar
*/
public function setDefaultImg($defaultImg)
{
$this->options['default_img'] = urlencode($defaultImg);
return $this;
}
/**
* Get default img
*
* @return string
*/
public function getDefaultImg()
{
return $this->options['default_img'];
}
/**
* Set email address
*
* @param string $email
* @return Gravatar
*/
public function setEmail($email)
{
$this->emailIsHashed = (bool) preg_match('/^[A-Za-z0-9]{32}$/', $email);
$this->email = strtolower(trim($email));
return $this;
}
/**
* Get email address
*
* @return string
*/
public function getEmail()
{
return $this->email;
}
/**
* Set img size in pixels
*
* @param int $imgSize Size of img must be between 1 and 512
* @return Gravatar
*/
public function setImgSize($imgSize)
{
$this->options['img_size'] = (int) $imgSize;
return $this;
}
/**
* Get img size
*
* @return int The img size
*/
public function getImgSize()
{
return $this->options['img_size'];
}
/**
* Set rating value
*
* Must be one of the RATING_* constants
*
* @link http://pl.gravatar.com/site/implement/url More information about rating.
* @param string $rating Value for rating. Allowed values are: g, px, r,x
* @return Gravatar
* @throws Exception\DomainException
*/
public function setRating($rating)
{
switch ($rating) {
case self::RATING_G:
case self::RATING_PG:
case self::RATING_R:
case self::RATING_X:
$this->options['rating'] = $rating;
break;
default:
throw new Exception\DomainException(sprintf(
'The rating value "%s" is not allowed',
$rating
));
}
return $this;
}
/**
* Get rating value
*
* @return string
*/
public function getRating()
{
return $this->options['rating'];
}
/**
* Load from an SSL or No-SSL location?
*
* @param bool $flag
* @return Gravatar
*/
public function setSecure($flag)
{
$this->options['secure'] = ($flag === null) ? null : (bool) $flag;
return $this;
}
/**
* Get an SSL or a No-SSL location
*
* @return bool
*/
public function getSecure()
{
if ($this->options['secure'] === null) {
return (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off');
}
return $this->options['secure'];
}
/**
* Set src attrib for image.
*
* You shouldn't set an own url value!
* It sets value, uses protected method getAvatarUrl.
*
* If already exists, it will be overwritten.
*
* @return void
*/
protected function setSrcAttribForImg()
{
$attributes = $this->getAttributes();
$attributes['src'] = $this->getAvatarUrl();
$this->setAttributes($attributes);
}
}