]> git.mxchange.org Git - friendica.git/blob - src/Module/Photo.php
Merge pull request #8156 from MrPetovan/task/7817-custom-fields-part-2
[friendica.git] / src / Module / Photo.php
1 <?php
2 /**
3  * @file src/Module/Photo.php
4  */
5
6 namespace Friendica\Module;
7
8 use Friendica\BaseModule;
9 use Friendica\Core\Logger;
10 use Friendica\Core\System;
11 use Friendica\DI;
12 use Friendica\Model\Photo as MPhoto;
13
14 /**
15  * Photo Module
16  */
17 class Photo extends BaseModule
18 {
19         /**
20          * Module initializer
21          *
22          * Fetch a photo or an avatar, in optional size, check for permissions and
23          * return the image
24          */
25         public static function init(array $parameters = [])
26         {
27                 $a = DI::app();
28                 // @TODO: Replace with parameter from router
29                 if ($a->argc <= 1 || $a->argc > 4) {
30                         throw new \Friendica\Network\HTTPException\BadRequestException();
31                 }
32
33                 if (isset($_SERVER["HTTP_IF_MODIFIED_SINCE"])) {
34                         header("HTTP/1.1 304 Not Modified");
35                         header("Last-Modified: " . gmdate("D, d M Y H:i:s", time()) . " GMT");
36                         if (!empty($_SERVER["HTTP_IF_NONE_MATCH"])) {
37                                 header("Etag: " . $_SERVER["HTTP_IF_NONE_MATCH"]);
38                         }
39                         header("Expires: " . gmdate("D, d M Y H:i:s", time() + (31536000)) . " GMT");
40                         header("Cache-Control: max-age=31536000");
41                         if (function_exists("header_remove")) {
42                                 header_remove("Last-Modified");
43                                 header_remove("Expires");
44                                 header_remove("Cache-Control");
45                         }
46                         exit;
47                 }
48
49                 $customsize = 0;
50                 $photo = false;
51                 // @TODO: Replace with parameter from router
52                 switch($a->argc) {
53                         case 4:
54                                 $customsize = intval($a->argv[2]);
55                                 $uid = MPhoto::stripExtension($a->argv[3]);
56                                 $photo = self::getAvatar($uid, $a->argv[1]);
57                                 break;
58                         case 3:
59                                 $uid = MPhoto::stripExtension($a->argv[2]);
60                                 $photo = self::getAvatar($uid, $a->argv[1]);
61                                 break;
62                         case 2:
63                                 $photoid = MPhoto::stripExtension($a->argv[1]);
64                                 $scale = 0;
65                                 if (substr($photoid, -2, 1) == "-") {
66                                         $scale = intval(substr($photoid, -1, 1));
67                                         $photoid = substr($photoid, 0, -2);
68                                 }
69                                 $photo = MPhoto::getPhoto($photoid, $scale);
70                                 if ($photo === false) {
71                                         $photo = MPhoto::createPhotoForSystemResource("images/nosign.jpg");
72                                 }
73                                 break;
74                 }
75
76                 if ($photo === false) {
77                         System::httpExit('404', 'Not Found');
78                 }
79
80                 $cacheable = ($photo["allow_cid"] . $photo["allow_gid"] . $photo["deny_cid"] . $photo["deny_gid"] === "") && (isset($photo["cacheable"]) ? $photo["cacheable"] : true);
81
82                 $img = MPhoto::getImageForPhoto($photo);
83
84                 if (is_null($img) || !$img->isValid()) {
85                         Logger::log("Invalid photo with id {$photo["id"]}.");
86                         throw new \Friendica\Network\HTTPException\InternalServerErrorException(DI::l10n()->t('Invalid photo with id %s.', $photo["id"]));
87                 }
88
89                 // if customsize is set and image is not a gif, resize it
90                 if ($img->getType() !== "image/gif" && $customsize > 0 && $customsize < 501) {
91                         $img->scaleToSquare($customsize);
92                 }
93
94                 if (function_exists("header_remove")) {
95                         header_remove("Pragma");
96                         header_remove("pragma");
97                 }
98
99                 header("Content-type: " . $img->getType());
100
101                 if (!$cacheable) {
102                         // it is a private photo that they have no permission to view.
103                         // tell the browser not to cache it, in case they authenticate
104                         // and subsequently have permission to see it
105                         header("Cache-Control: no-store, no-cache, must-revalidate");
106                 } else {
107                         $md5 = md5($img->asString());
108                         header("Last-Modified: " . gmdate("D, d M Y H:i:s", time()) . " GMT");
109                         header("Etag: \"{$md5}\"");
110                         header("Expires: " . gmdate("D, d M Y H:i:s", time() + (31536000)) . " GMT");
111                         header("Cache-Control: max-age=31536000");
112                 }
113
114                 echo $img->asString();
115
116                 exit();
117         }
118
119         private static function getAvatar($uid, $type="avatar")
120         {
121
122                 switch($type) {
123                 case "profile":
124                 case "custom":
125                         $scale = 4;
126                         $default = "images/person-300.jpg";
127                         break;
128                 case "micro":
129                         $scale = 6;
130                         $default = "images/person-48.jpg";
131                         break;
132                 case "avatar":
133                 default:
134                         $scale = 5;
135                         $default = "images/person-80.jpg";
136                 }
137
138                 $photo = MPhoto::selectFirst([], ["scale" => $scale, "uid" => $uid, "profile" => 1]);
139                 if ($photo === false) {
140                         $photo = MPhoto::createPhotoForSystemResource($default);
141                 }
142                 return $photo;
143         }
144
145 }