]> git.mxchange.org Git - friendica.git/blob - src/Console/MoveToAvatarCache.php
Delete invalid photo data
[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                         $valid = true;
90                         echo ++$count . '/' . $total . "\t" . $contact['id'] . "\t" . $contact['url'] . "\t";
91                         $resourceid = Photo::ridFromURI($contact['photo']);
92                         if (empty($resourceid)) {
93                                 echo $this->l10n->t('no resource in photo %s', $contact['photo']) . "\n";
94                                 $valid = false;
95                         }
96
97                         if ($valid) {
98                                 echo '1';
99                                 $photo = Photo::selectFirst([], ['resource-id' => $resourceid], ['order' => ['scale']]);
100                                 if (empty($photo)) {
101                                         echo ' ' . $this->l10n->t('no photo with id %s', $resourceid) . "\n";
102                                         $valid = false;
103                                 }
104                         }
105
106                         if ($valid) {
107                                 echo '2';
108                                 $imgdata = Photo::getImageDataForPhoto($photo);
109                                 if (empty($imgdata)) {
110                                         echo ' ' . $this->l10n->t('no image data for photo with id %s', $resourceid) . "\n";
111                                         $valid = false;
112                                 }
113                         }
114
115                         if ($valid) {
116                                 echo '3';
117                                 $image = new Image($imgdata, Images::getMimeTypeByData($imgdata));
118                                 if (!$image->isValid()) {
119                                         echo ' ' . $this->l10n->t('invalid image for id %s', $resourceid) . "\n";
120                                         $valid = false;
121                                 }
122                         }
123
124                         if ($valid) {
125                                 echo '4';
126                                 $fields = Avatar::storeAvatarByImage($contact, $image);
127                         } else {
128                                 $fields = ['photo' => '', 'thumb' => '', 'micro' => ''];
129                         }
130
131                         echo '5';
132                         Contact::update($fields, ['uri-id' => $contact['uri-id']]);
133                         echo '6';
134                         Photo::delete(['resource-id' => $resourceid]);
135                         echo ' ' . $fields['photo'] . "\n";
136                 }
137
138                 return 0;
139         }
140 }