]> git.mxchange.org Git - friendica.git/blob - src/Console/MoveToAvatarCache.php
Use correct placeholder
[friendica.git] / src / Console / MoveToAvatarCache.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Console;
23
24 use Friendica\App\BaseURL;
25 use Friendica\Contact\Avatar;
26 use Friendica\Core\L10n;
27 use Friendica\Model\Contact;
28 use Friendica\Model\Photo;
29 use Friendica\Util\Images;
30 use Friendica\Object\Image;
31
32 /**
33  * tool to move cached avatars to the avatar file cache.
34  */
35 class MoveToAvatarCache extends \Asika\SimpleConsole\Console
36 {
37         protected $helpOptions = ['h', 'help', '?'];
38
39         /**
40          * @var $dba Friendica\Database\Database
41          */
42         private $dba;
43
44         /**
45          * @var $baseurl Friendica\App\BaseURL
46          */
47         private $baseurl;
48
49         /**
50          * @var L10n
51          */
52         private $l10n;
53
54         protected function getHelp()
55         {
56                 $help = <<<HELP
57 console movetoavatarcache - Move all cached avatars to the file based avatar cache
58 Synopsis
59         bin/console movetoavatarcache
60
61 Description
62         bin/console movetoavatarcache
63                 Move all cached avatars to the file based avatar cache
64
65 Options
66         -h|--help|-? Show help information
67 HELP;
68                 return $help;
69         }
70
71         public function __construct(\Friendica\Database\Database $dba, BaseURL $baseurl, L10n $l10n, array $argv = null)
72         {
73                 parent::__construct($argv);
74
75                 $this->dba     = $dba;
76                 $this->baseurl = $baseurl;
77                 $this->l10n    = $l10n;
78         }
79
80         protected function doExecute()
81         {
82                 $condition = ["`avatar` != ? AND `photo` LIKE ? AND `uid` = ? AND `uri-id` != ? AND NOT `uri-id` IS NULL",
83                         '', $this->baseurl->get() . '/photo/%', 0, 0];
84
85                 $count    = 0;
86                 $total    = $this->dba->count('contact', $condition);
87                 $contacts = $this->dba->select('contact', ['id', 'avatar', 'photo', 'uri-id', 'url', 'avatar'], $condition, ['order' => ['id']]);
88                 while ($contact = $this->dba->fetch($contacts)) {
89                         echo ++$count . '/' . $total . "\t" . $contact['id'] . "\t" . $contact['url'] . "\t";
90                         $resourceid = Photo::ridFromURI($contact['photo']);
91                         if (empty($resourceid)) {
92                                 echo $this->l10n->t('no resource in photo %s', $contact['photo']) . "\n";
93                                 continue;
94                         }
95                         echo '1';
96                         $photo = Photo::selectFirst([], ['resource-id' => $resourceid], ['order' => ['scale']]);
97                         if (empty($photo)) {
98                                 echo ' ' . $this->l10n->t('no photo with id %s', $resourceid) . "\n";
99                                 continue;
100                         }
101
102                         echo '2';
103                         $imgdata = Photo::getImageDataForPhoto($photo);
104                         if (empty($imgdata)) {
105                                 echo ' ' . $this->l10n->t('no image data for photo with id %s', $resourceid) . "\n";
106                                 continue;
107                         }
108                         echo '3';
109                         $image = new Image($imgdata, Images::getMimeTypeByData($imgdata));
110                         if (!$image->isValid()) {
111                                 echo ' ' . $this->l10n->t('invalid image for id %s', $resourceid) . "\n";
112                                 continue;
113                         }
114
115                         echo '4';
116                         $fields = Avatar::storeAvatarByImage($contact, $image);
117                         echo '5';
118                         Contact::update($fields, ['uri-id' => $contact['uri-id']]);
119                         echo '6';
120                         Photo::delete(['resource-id' => $resourceid]);
121                         echo ' ' . $fields['photo'] . "\n";
122                 }
123
124                 return 0;
125         }
126 }