]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Gravatar/GravatarPlugin.php
Merge remote-tracking branch 'upstream/master'
[quix0rs-gnu-social.git] / plugins / Gravatar / GravatarPlugin.php
1 <?php
2 /*
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2009,2011 StatusNet, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 /**
21  * @package GravatarPlugin
22  * @maintainer Eric Helgeson <erichelgeson@gmail.com>
23  */
24
25 if (!defined('STATUSNET') && !defined('LACONICA')) {
26     // This check helps protect against security problems;
27     // your code file can't be executed directly from the web.
28     exit(1);
29 }
30
31 class GravatarPlugin extends Plugin
32 {
33     function onEndProfileGetAvatar(Profile $profile, $size, &$avatar)
34     {
35         if (empty($avatar)) {
36             try {
37                 $user = $profile->getUser();
38                 if (!empty($user->email)) {
39                     // Fake one!
40                     $avatar = new Avatar();
41                     $avatar->width = $avatar->height = $size;
42                     $avatar->url = $this->gravatar_url($user->email, $size);
43                     return false;
44                 }
45             } catch (NoSuchUserException $e) {
46                 return true;
47             }
48         }
49
50         return true;
51     }
52
53     function gravatar_url($email, $size)
54     {
55         $url = 'https://secure.gravatar.com/avatar.php?gravatar_id=' .
56                 md5(strtolower($email)) .
57                 '&default=' . urlencode(Avatar::defaultImage($size)) .
58                 '&size=' . $size;
59             return $url;
60     }
61
62     function onPluginVersion(array &$versions)
63     {
64         $versions[] = array('name' => 'Gravatar',
65                             'version' => GNUSOCIAL_VERSION,
66                             'author' => 'Eric Helgeson, Evan Prodromou',
67                             'homepage' => 'http://status.net/wiki/Plugin:Gravatar',
68                             'rawdescription' =>
69                             // TRANS: Plugin decsription.
70                             _m('The Gravatar plugin allows users to use their <a href="http://www.gravatar.com/">Gravatar</a> with StatusNet.'));
71
72         return true;
73     }
74 }