Skip to content

Commit 42a9cb0

Browse files
authored
Merge pull request #11070 from nanaya/fastimage-log
Better image size error logging
2 parents 86198aa + 47ad5ff commit 42a9cb0

File tree

4 files changed

+27
-16
lines changed

4 files changed

+27
-16
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?php
2+
3+
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0.
4+
// See the LICENCE file in the repository root for full licence text.
5+
6+
declare(strict_types=1);
7+
8+
namespace App\Exceptions;
9+
10+
class FastImagesizeFetchException extends \Exception
11+
{
12+
}

app/Transformers/ContestEntryTransformer.php

+2-13
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
use App\Models\DeletedUser;
1010
use League\Fractal\Resource\Collection;
1111
use League\Fractal\Resource\Item;
12-
use Sentry\State\Scope;
1312

1413
class ContestEntryTransformer extends TransformerAbstract
1514
{
@@ -88,20 +87,10 @@ public function includeArtMeta(ContestEntry $entry)
8887
$thumbnailUrl = $entry->thumbnail();
8988
// suffix urls when contests are made live to ensure image dimensions are forcibly rechecked
9089
if ($entry->contest->visible) {
91-
$urlSuffix = str_contains($thumbnailUrl, '?') ? '&live' : '?live';
90+
$thumbnailUrl .= str_contains($thumbnailUrl, '?') ? '&live' : '?live';
9291
}
9392

94-
$size = fast_imagesize($thumbnailUrl.($urlSuffix ?? ''));
95-
96-
if ($size === null) {
97-
app('sentry')->getClient()->captureMessage(
98-
'Failed fetching image size of contest entry',
99-
null,
100-
(new Scope())
101-
->setExtra('id', $entry->getKey())
102-
->setExtra('url', $thumbnailUrl),
103-
);
104-
}
93+
$size = fast_imagesize($thumbnailUrl, "contest_entry:{$entry->getKey()}");
10594

10695
return $this->primitive([
10796
'width' => $size[0] ?? 0,

app/helpers.php

+12-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0.
44
// See the LICENCE file in the repository root for full licence text.
55

6+
use App\Exceptions\FastImagesizeFetchException;
67
use App\Libraries\Base64Url;
78
use App\Libraries\LocaleMeta;
89
use App\Models\LoginAttempt;
@@ -1338,14 +1339,14 @@ function json_item($model, $transformer, $includes = null)
13381339
return json_collection([$model], $transformer, $includes)[0] ?? null;
13391340
}
13401341

1341-
function fast_imagesize($url)
1342+
function fast_imagesize($url, ?string $logErrorId = null)
13421343
{
13431344
static $oneMonthInSeconds = 30 * 24 * 60 * 60;
13441345

13451346
return null_if_false(Cache::remember(
13461347
"imageSize:{$url}",
13471348
$oneMonthInSeconds,
1348-
function () use ($url) {
1349+
function () use ($logErrorId, $url) {
13491350
$curl = curl_init($url);
13501351
curl_setopt_array($curl, [
13511352
CURLOPT_HTTPHEADER => [
@@ -1358,6 +1359,15 @@ function () use ($url) {
13581359
]);
13591360
$data = curl_exec($curl);
13601361

1362+
$errorCode = curl_errno($curl);
1363+
if ($errorCode !== 0 && $logErrorId !== null) {
1364+
log_error(new FastImagesizeFetchException(), [
1365+
'curl_error_code' => $errorCode,
1366+
'curl_error_message' => curl_error($curl),
1367+
'error_id' => $logErrorId,
1368+
]);
1369+
}
1370+
13611371
// null isn't cached
13621372
return read_image_properties_from_string($data) ?? false;
13631373
},

resources/views/store/products/show.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class="osu-page osu-page--store"
2929
<div class="gallery-previews">
3030
@foreach($product->images() as $i => $image)
3131
@php
32-
$imageSize = fast_imagesize($image[1]);
32+
$imageSize = fast_imagesize($image[1], "store_product:{$product->getKey()}");
3333
@endphp
3434
<a
3535
class="gallery-previews__item js-gallery"

0 commit comments

Comments
 (0)