@@ -47,13 +47,36 @@ protected function renderFileWithCache(array $file, $mimetype)
47
47
{
48
48
$ etag = md5 ($ file ['path ' ]);
49
49
50
+ if ($ this ->request ->getHeader ('If-None-Match ' ) === '" ' .$ etag .'" ' ) {
51
+ $ this ->response ->status (304 );
52
+ } else {
53
+ try {
54
+ $ this ->response ->withContentType ($ mimetype );
55
+ $ this ->response ->withCache (5 * 86400 , $ etag );
56
+ $ this ->response ->send ();
57
+ $ this ->objectStorage ->output ($ file ['path ' ]);
58
+ } catch (ObjectStorageException $ e ) {
59
+ $ this ->logger ->error ($ e ->getMessage ());
60
+ }
61
+ }
62
+ }
63
+
64
+ /**
65
+ * Output file without cache
66
+ *
67
+ * @param array $file
68
+ * @param $mimetype
69
+ */
70
+ protected function renderFileWithoutCache (array $ file , $ mimetype )
71
+ {
72
+ $ etag = md5 ($ file ['path ' ]);
73
+
50
74
if ($ this ->request ->getHeader ('If-None-Match ' ) === '" ' .$ etag .'" ' ) {
51
75
$ this ->response ->status (304 );
52
76
} else {
53
77
try {
54
78
$ this ->response ->withContentType ($ mimetype );
55
79
$ this ->response ->withOutCache ();
56
- // $this->response->withCache(5 * 86400, $etag);
57
80
$ this ->response ->send ();
58
81
$ this ->objectStorage ->output ($ file ['path ' ]);
59
82
} catch (ObjectStorageException $ e ) {
@@ -84,23 +107,59 @@ public function logo()
84
107
{
85
108
if ($ this ->logoexists ()) {
86
109
$ file = $ this ->customizerFileModel ->getByType (1 );
87
- $ this ->renderFileWithCache ($ file , $ this ->helper ->file ->getImageMimeType ($ file ['name ' ]));
110
+ if ($ this ->configModel ->get ('enable_cache ' , '' ) == 'checked ' ) {
111
+ $ this ->renderFileWithCache ($ file , $ this ->helper ->file ->getImageMimeType ($ file ['name ' ]));
112
+ } else {
113
+ $ this ->renderFileWithoutCache ($ file , $ this ->helper ->file ->getImageMimeType ($ file ['name ' ]));
114
+ }
115
+ }
116
+ }
117
+
118
+ public function logo_setting ()
119
+ {
120
+ if ($ this ->logoexists ()) {
121
+ $ file = $ this ->customizerFileModel ->getByType (1 );
122
+ $ this ->renderFileWithoutCache ($ file , $ this ->helper ->file ->getImageMimeType ($ file ['name ' ]));
88
123
}
89
124
}
90
125
91
126
public function loginlogo ()
92
127
{
93
128
if ($ this ->loginlogoexists ()) {
94
129
$ file = $ this ->customizerFileModel ->getByType (3 );
95
- $ this ->renderFileWithCache ($ file , $ this ->helper ->file ->getImageMimeType ($ file ['name ' ]));
130
+ if ($ this ->configModel ->get ('enable_cache ' , '' ) == 'checked ' ) {
131
+ $ this ->renderFileWithCache ($ file , $ this ->helper ->file ->getImageMimeType ($ file ['name ' ]));
132
+ } else {
133
+ $ this ->renderFileWithoutCache ($ file , $ this ->helper ->file ->getImageMimeType ($ file ['name ' ]));
134
+ }
135
+ }
136
+ }
137
+
138
+ public function loginlogo_setting ()
139
+ {
140
+ if ($ this ->loginlogoexists ()) {
141
+ $ file = $ this ->customizerFileModel ->getByType (3 );
142
+ $ this ->renderFileWithoutCache ($ file , $ this ->helper ->file ->getImageMimeType ($ file ['name ' ]));
96
143
}
97
144
}
98
145
99
146
public function icon ()
100
147
{
101
148
if ($ this ->iconexists ()) {
102
149
$ file = $ this ->customizerFileModel ->getByType (2 );
103
- $ this ->renderFileWithCache ($ file , $ this ->helper ->file ->getImageMimeType ($ file ['name ' ]));
150
+ if ($ this ->configModel ->get ('enable_cache ' , '' ) == 'checked ' ) {
151
+ $ this ->renderFileWithCache ($ file , $ this ->helper ->file ->getImageMimeType ($ file ['name ' ]));
152
+ } else {
153
+ $ this ->renderFileWithoutCache ($ file , $ this ->helper ->file ->getImageMimeType ($ file ['name ' ]));
154
+ }
155
+ }
156
+ }
157
+
158
+ public function icon_setting ()
159
+ {
160
+ if ($ this ->iconexists ()) {
161
+ $ file = $ this ->customizerFileModel ->getByType (2 );
162
+ $ this ->renderFileWithoutCache ($ file , $ this ->helper ->file ->getImageMimeType ($ file ['name ' ]));
104
163
}
105
164
}
106
165
@@ -142,7 +201,11 @@ public function iconexists()
142
201
public function image ()
143
202
{
144
203
$ file = $ this ->customizerFileModel ->getById ($ this ->request ->getIntegerParam ('file_id ' ));
145
- $ this ->renderFileWithCache ($ file , $ this ->helper ->file ->getImageMimeType ($ file ['name ' ]));
204
+ if ($ this ->configModel ->get ('enable_cache ' , '' ) == 'checked ' ) {
205
+ $ this ->renderFileWithCache ($ file , $ this ->helper ->file ->getImageMimeType ($ file ['name ' ]));
206
+ } else {
207
+ $ this ->renderFileWithoutCache ($ file , $ this ->helper ->file ->getImageMimeType ($ file ['name ' ]));
208
+ }
146
209
}
147
210
148
211
/**
0 commit comments