]> git.mxchange.org Git - friendica-addons.git/blob - catavatar/catavatar.php
7a2bdc2eaf9623e5b15db868972f323a809dff45
[friendica-addons.git] / catavatar / catavatar.php
1 <?php
2 /**
3  * Name: Cat Avatar Generator
4  * Description: Generate a default avatar based on David Revoy's cat-avatar-generator https://framagit.org/Deevad/cat-avatar-generator
5  * Version: 1.1
6  * Author: Fabio <https://kirgroup.com/profile/fabrixxm>
7  */
8
9 use Friendica\App;
10 use Friendica\Core\Hook;
11 use Friendica\Core\Logger;
12 use Friendica\Core\Renderer;
13 use Friendica\Core\Worker;
14 use Friendica\Database\DBA;
15 use Friendica\DI;
16 use Friendica\Model\Contact;
17 use Friendica\Model\Photo;
18 use Friendica\Model\Profile;
19 use Friendica\Network\HTTPException\NotFoundException;
20
21 define("CATAVATAR_SIZE", 256);
22
23 /**
24  * Installs the addon hook
25  */
26 function catavatar_install()
27 {
28         Hook::register('avatar_lookup', __FILE__, 'catavatar_lookup');
29         Hook::register('addon_settings', __FILE__, 'catavatar_addon_settings');
30         Hook::register('addon_settings_post', __FILE__, 'catavatar_addon_settings_post');
31
32         Logger::notice('registered catavatar');
33 }
34
35 /**
36  * Cat avatar user settings page
37  */
38 function catavatar_addon_settings(App $a, array &$data)
39 {
40         if (!local_user()) {
41                 return;
42         }
43
44         $t    = Renderer::getMarkupTemplate('settings.tpl', 'addon/catavatar/');
45         $html = Renderer::replaceMacros($t, [
46                 '$uncache'      => time(),
47                 '$uid'          => local_user(),
48                 '$setrandomize' => DI::l10n()->t('Set default profile avatar or randomize the cat.'),
49         ]);
50
51         $data = [
52                 'addon'  => 'catavar',
53                 'title'  => DI::l10n()->t('Cat Avatar Settings'),
54                 'html'   => $html,
55                 'submit' => [
56                         'catavatar-usecat'   => DI::l10n()->t('Use Cat as Avatar'),
57                         'catavatar-morecat'  => DI::l10n()->t('Another random Cat!'),
58                         'catavatar-emailcat' => DI::pConfig()->get(local_user(), 'catavatar', 'seed', false) ? DI::l10n()->t('Reset to email Cat') : null,
59                 ],
60         ];
61 }
62
63 /**
64  * Cat avatar user settings POST handle
65  */
66 function catavatar_addon_settings_post(App $a, &$s)
67 {
68         if (!local_user()) {
69                 return;
70         }
71
72         if (!empty($_POST['catavatar-usecat'])) {
73                 $url = DI::baseUrl()->get() . '/catavatar/' . local_user() . '?ts=' . time();
74
75                 $self = DBA::selectFirst('contact', ['id'], ['uid' => local_user(), 'self' => true]);
76                 if (!DBA::isResult($self)) {
77                         DI::sysmsg()->addNotice(DI::l10n()->t("The cat hadn't found itself."));
78                         return;
79                 }
80
81                 Photo::importProfilePhoto($url, local_user(), $self['id']);
82
83                 $condition = ['uid' => local_user(), 'contact-id' => $self['id']];
84                 $photo = DBA::selectFirst('photo', ['resource-id'], $condition);
85                 if (!DBA::isResult($photo)) {
86                         DI::sysmsg()->addNotice(DI::l10n()->t('There was an error, the cat ran away.'));
87                         return;
88                 }
89
90                 DBA::update('photo', ['profile' => false], ['profile' => true, 'uid' => local_user()]);
91
92                 $fields = ['profile' => true, 'album' => DI::l10n()->t('Profile Photos'), 'contact-id' => 0];
93                 DBA::update('photo', $fields, ['uid' => local_user(), 'resource-id' => $photo['resource-id']]);
94
95                 Photo::importProfilePhoto($url, local_user(), $self['id']);
96
97                 Contact::updateSelfFromUserID(local_user(), true);
98
99                 // Update global directory in background
100                 Profile::publishUpdate(local_user());
101
102                 DI::sysmsg()->addInfo(DI::l10n()->t('Meow!'));
103                 return;
104         }
105
106         if (!empty($_POST['catavatar-morecat'])) {
107                 DI::pConfig()->set(local_user(), 'catavatar', 'seed', time());
108         }
109
110         if (!empty($_POST['catavatar-emailcat'])) {
111                 DI::pConfig()->delete(local_user(), 'catavatar', 'seed');
112         }
113 }
114
115 /**
116  * Returns the URL to the cat avatar
117  *
118  * @param $a array
119  * @param &$b array
120  */
121 function catavatar_lookup(App $a, array &$b)
122 {
123         $user = DBA::selectFirst('user', ['uid'], ['email' => $b['email']]);
124         if (DBA::isResult($user)) {
125                 $url = DI::baseUrl()->get() . '/catavatar/' . $user['uid'];
126         } else {
127                 $url = DI::baseUrl()->get() . '/catavatar/' . md5(trim(strtolower($b['email'])));
128         }
129
130         switch($b['size']) {
131                 case 300: $url .= "/4"; break;
132                 case 80: $url .= "/5"; break;
133                 case 48: $url .= "/6"; break;
134         }
135
136         $b['url'] = $url;
137         $b['success'] = true;
138 }
139
140 /**
141  * This is a statement rather than an actual function definition. The simple
142  * existence of this method is checked to figure out if the addon offers a
143  * module.
144  */
145 function catavatar_module() {}
146
147 /**
148  * Returns image for user id
149  *
150  * @throws NotFoundException
151  *
152  */
153 function catavatar_content(App $a)
154 {
155         if (DI::args()->getArgc() < 2 || DI::args()->getArgc() > 3) {
156                 throw new NotFoundException(); // this should be catched on index and show default "not found" page.
157         }
158
159         if (is_numeric(DI::args()->getArgv()[1])) {
160                 $uid = intval(DI::args()->getArgv()[1]);
161                 $condition = ['uid' => $uid,
162                                 'account_expired' => false, 'account_removed' => false];
163                 $user = DBA::selectFirst('user', ['email'], $condition);
164
165                 if ($user === false) {
166                         throw new NotFoundException();
167                 }
168
169                 $seed = DI::pConfig()->get($uid, "catavatar", "seed", md5(trim(strtolower($user['email']))));
170         } elseif (!empty(DI::args()->getArgv()[1])) {
171                 $seed = DI::args()->getArgv()[1];
172         } else {
173                 throw new NotFoundException();
174         }
175
176         $size = 0;
177         if (DI::args()->getArgc() == 3) {
178                 $size = intval(DI::args()->getArgv()[2]);
179         }
180
181         // ...Or start generation
182         ob_start();
183
184         // render the picture:
185         build_cat($seed, $size);
186
187         ob_end_flush();
188
189         exit();
190 }
191
192 /**
193  * ====================
194  * CAT-AVATAR-GENERATOR
195  * ====================
196  *
197  * @authors: Andreas Gohr, David Revoy
198  *
199  * This PHP is licensed under the short and simple permissive:
200  * [MIT License](https://en.wikipedia.org/wiki/MIT_License)
201  *
202 **/
203
204 function build_cat($seed = '', $size = 0)
205 {
206         // init random seed
207         if ($seed) {
208                 srand(hexdec(substr(md5($seed), 0, 6)));
209         }
210
211         // throw the dice for body parts
212         $parts = array(
213                 'body' => rand(1, 15),
214                 'fur' => rand(1, 10),
215                 'eyes' => rand(1, 15),
216                 'mouth' => rand(1, 10),
217                 'accessorie' => rand(1, 20)
218         );
219
220         // create backgound
221         $cat = @imagecreatetruecolor(CATAVATAR_SIZE, CATAVATAR_SIZE)
222                 or die("GD image create failed");
223         $white = imagecolorallocate($cat, 255, 255, 255);
224         imagefill($cat, 0, 0, $white);
225
226         // add parts
227         foreach ($parts as $part => $num) {
228                 $file = dirname(__FILE__) . '/avatars/' . $part . '_' . $num . '.png';
229
230                 $im = @imagecreatefrompng($file);
231                 if (!$im) {
232                         die('Failed to load ' . $file);
233                 }
234                 imageSaveAlpha($im, true);
235                 imagecopy($cat, $im, 0, 0, 0, 0, CATAVATAR_SIZE, CATAVATAR_SIZE);
236                 imagedestroy($im);
237         }
238
239         // scale image
240         if ($size > 3 && $size < 7) {
241                 switch ($size) {
242                         case 4:
243                                 $size = 300;
244                                 break;
245                         case 5:
246                                 $size = 80;
247                                 break;
248                         case 6:
249                                 $size = 48;
250                                 break;
251                 }
252
253                 $dest = imagecreatetruecolor($size, $size);
254                 imagealphablending($dest, false);
255                 imagesavealpha($dest, true);
256                 imagecopyresampled($dest, $cat, 0, 0, 0, 0, $size, $size, CATAVATAR_SIZE, CATAVATAR_SIZE);
257                 imagedestroy($cat);
258                 $cat = $dest;
259         }
260
261         // restore random seed
262         if ($seed) {
263                 srand();
264         }
265
266         header('Pragma: public');
267         header('Cache-Control: max-age=86400');
268         header('Expires: ' . gmdate('D, d M Y H:i:s \G\M\T', time() + 86400));
269         header('Content-Type: image/jpg');
270         imagejpeg($cat, NULL, 90);
271         imagedestroy($cat);
272 }