Skip to content

Commit e35d679

Browse files
authored
Merge branch 'master' into kudosu-rankings-country
2 parents 48f9f91 + 40d38e3 commit e35d679

File tree

5 files changed

+41
-34
lines changed

5 files changed

+41
-34
lines changed

app/Exceptions/Handler.php

+11-26
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
namespace App\Exceptions;
77

88
use App\Libraries\SessionVerification;
9-
use Auth;
109
use Illuminate\Auth\Access\AuthorizationException as LaravelAuthorizationException;
1110
use Illuminate\Auth\AuthenticationException;
1211
use Illuminate\Database\Eloquent\ModelNotFoundException;
@@ -34,6 +33,7 @@ class Handler extends ExceptionHandler
3433
ModelNotFoundException::class,
3534
TokenMismatchException::class,
3635
\Illuminate\Validation\ValidationException::class,
36+
\Laravel\Octane\Exceptions\DdException::class,
3737
\Symfony\Component\HttpKernel\Exception\HttpException::class,
3838

3939
// local
@@ -90,6 +90,15 @@ private static function isOAuthSessionException(Throwable $e): bool
9090
&& $e->getMessage() === 'Authorization request was not present in the session.';
9191
}
9292

93+
private static function reportWithSentry(Throwable $e): void
94+
{
95+
$ref = log_error_sentry($e, ['http_code' => (string) static::statusCode($e)]);
96+
97+
if ($ref !== null) {
98+
\Request::instance()->attributes->set('ref', $ref);
99+
}
100+
}
101+
93102
private static function unwrapViewException(Throwable $e): Throwable
94103
{
95104
if ($e instanceof ViewException) {
@@ -121,10 +130,7 @@ public function report(Throwable $e)
121130
return;
122131
}
123132

124-
// Fallback in case error happening before config is initialised
125-
if ($GLOBALS['cfg']['sentry']['dsn'] ?? false) {
126-
$this->reportWithSentry($e);
127-
}
133+
static::reportWithSentry($e);
128134

129135
parent::report($e);
130136
}
@@ -196,25 +202,4 @@ protected function unauthenticated($request, AuthenticationException $exception)
196202

197203
return ext_view('users.login', null, null, 401);
198204
}
199-
200-
private function reportWithSentry($e)
201-
{
202-
if (Auth::check()) {
203-
$userContext = [
204-
'id' => Auth::user()->user_id,
205-
'username' => Auth::user()->username_clean,
206-
];
207-
} else {
208-
$userContext = [
209-
'id' => null,
210-
];
211-
}
212-
213-
app('sentry')->configureScope(function ($scope) use ($e, $userContext) {
214-
$scope->setUser($userContext);
215-
$scope->setTag('http_code', (string) static::statusCode($e));
216-
});
217-
218-
request()->attributes->set('ref', app('sentry')->captureException($e));
219-
}
220205
}

app/Http/Controllers/RankingController.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -264,11 +264,11 @@ public function kudosu()
264264

265265
public function spotlight($mode)
266266
{
267-
$chartId = $this->params['spotlight'] ?? null;
267+
$chartId = get_int($this->params['spotlight'] ?? null);
268268

269269
$spotlights = Spotlight::orderBy('chart_id', 'desc')->get();
270270
if ($chartId === null) {
271-
$spotlight = $spotlights->first();
271+
$spotlight = $spotlights->first() ?? abort(404);
272272
} else {
273273
$spotlight = Spotlight::findOrFail($chartId);
274274
}

app/helpers.php

+26-4
Original file line numberDiff line numberDiff line change
@@ -468,13 +468,35 @@ function json_time(?DateTime $time): ?string
468468
return $time === null ? null : $time->format(DateTime::ATOM);
469469
}
470470

471-
function log_error($exception)
471+
function log_error($exception, ?array $sentryTags = null): void
472472
{
473473
Log::error($exception);
474+
log_error_sentry($exception, $sentryTags);
475+
}
474476

475-
if ($GLOBALS['cfg']['sentry']['dsn']) {
476-
Sentry::captureException($exception);
477+
function log_error_sentry(Throwable $exception, ?array $tags = null): ?string
478+
{
479+
// Fallback in case error happening before config is initialised
480+
if (!($GLOBALS['cfg']['sentry']['dsn'] ?? false)) {
481+
return null;
477482
}
483+
484+
return Sentry\withScope(function ($scope) use ($exception, $tags) {
485+
$currentUser = Auth::user();
486+
$userContext = $currentUser === null
487+
? ['id' => null]
488+
: [
489+
'id' => $currentUser->getKey(),
490+
'username' => $currentUser->username,
491+
];
492+
493+
$scope->setUser($userContext);
494+
foreach ($tags ?? [] as $key => $value) {
495+
$scope->setTag($key, $value);
496+
}
497+
498+
return Sentry\captureException($exception);
499+
});
478500
}
479501

480502
function logout()
@@ -1110,11 +1132,11 @@ function nav_links()
11101132
];
11111133
$links['rankings'] = [
11121134
'rankings.type.performance' => route('rankings', ['mode' => $defaultMode, 'type' => 'performance']),
1113-
'rankings.type.charts' => route('rankings', ['mode' => $defaultMode, 'type' => 'charts']),
11141135
'rankings.type.score' => route('rankings', ['mode' => $defaultMode, 'type' => 'score']),
11151136
'rankings.type.country' => route('rankings', ['mode' => $defaultMode, 'type' => 'country']),
11161137
'rankings.type.multiplayer' => route('multiplayer.rooms.show', ['room' => 'latest']),
11171138
'rankings.type.seasons' => route('seasons.show', ['season' => 'latest']),
1139+
'rankings.type.charts' => route('rankings', ['mode' => $defaultMode, 'type' => 'charts']),
11181140
'layout.menu.rankings.kudosu' => route('rankings.kudosu'),
11191141
];
11201142
$links['community'] = [

resources/lang/en/rankings.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
],
2525

2626
'type' => [
27-
'charts' => 'spotlights',
27+
'charts' => 'spotlights (old)',
2828
'country' => 'country',
2929
'kudosu' => 'kudosu',
3030
'multiplayer' => 'multiplayer',

resources/views/rankings/index.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
];
2525
2626
$links = [];
27-
foreach (['performance', 'charts', 'score', 'country', 'multiplayer', 'seasons', 'kudosu'] as $tab) {
27+
foreach (['performance', 'score', 'country', 'multiplayer', 'seasons', 'charts', 'kudosu'] as $tab) {
2828
$links[] = [
2929
'active' => $tab === $type,
3030
'title' => osu_trans("rankings.type.{$tab}"),

0 commit comments

Comments
 (0)