Skip to content

Commit c7d60e5

Browse files
authored
Merge pull request #11040 from nanaya/singletons
Put singletons in single directory
2 parents 1b94e15 + a2c7f73 commit c7d60e5

18 files changed

+37
-47
lines changed

app/Http/Middleware/LegacyInterOpAuth.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
namespace App\Http\Middleware;
77

8-
use App\Libraries\OsuAuthorize;
8+
use App\Singletons\OsuAuthorize;
99
use Carbon\Carbon;
1010
use Closure;
1111

app/Providers/AppServiceProvider.php

+15-28
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,11 @@
66
namespace App\Providers;
77

88
use App\Hashing\OsuHashManager;
9-
use App\Libraries\AssetsManifest;
10-
use App\Libraries\ChatFilters;
11-
use App\Libraries\CleanHTML;
12-
use App\Libraries\Countries;
13-
use App\Libraries\Groups;
14-
use App\Libraries\Ip2Asn;
15-
use App\Libraries\LayoutCache;
16-
use App\Libraries\LocalCacheManager;
17-
use App\Libraries\Medals;
18-
use App\Libraries\Mods;
199
use App\Libraries\MorphMap;
20-
use App\Libraries\OsuAuthorize;
2110
use App\Libraries\OsuCookieJar;
2211
use App\Libraries\OsuMessageSelector;
2312
use App\Libraries\RateLimiter;
24-
use App\Libraries\RouteSection;
25-
use App\Libraries\Smilies;
26-
use App\Libraries\User\ScorePins;
13+
use App\Singletons;
2714
use Datadog;
2815
use Illuminate\Database\Eloquent\Relations\Relation;
2916
use Illuminate\Http\Request;
@@ -39,23 +26,23 @@
3926
class AppServiceProvider extends ServiceProvider
4027
{
4128
const LOCAL_CACHE_SINGLETONS = [
42-
'chat-filters' => ChatFilters::class,
43-
'countries' => Countries::class,
44-
'groups' => Groups::class,
45-
'layout-cache' => LayoutCache::class,
46-
'medals' => Medals::class,
47-
'smilies' => Smilies::class,
29+
'chat-filters' => Singletons\ChatFilters::class,
30+
'countries' => Singletons\Countries::class,
31+
'groups' => Singletons\Groups::class,
32+
'layout-cache' => Singletons\LayoutCache::class,
33+
'medals' => Singletons\Medals::class,
34+
'smilies' => Singletons\Smilies::class,
4835
];
4936

5037
const SINGLETONS = [
51-
'OsuAuthorize' => OsuAuthorize::class,
52-
'assets-manifest' => AssetsManifest::class,
53-
'clean-html' => CleanHTML::class,
54-
'ip2asn' => Ip2Asn::class,
55-
'local-cache-manager' => LocalCacheManager::class,
56-
'mods' => Mods::class,
57-
'route-section' => RouteSection::class,
58-
'score-pins' => ScorePins::class,
38+
'OsuAuthorize' => Singletons\OsuAuthorize::class,
39+
'assets-manifest' => Singletons\AssetsManifest::class,
40+
'clean-html' => Singletons\CleanHTML::class,
41+
'ip2asn' => Singletons\Ip2Asn::class,
42+
'local-cache-manager' => Singletons\LocalCacheManager::class,
43+
'mods' => Singletons\Mods::class,
44+
'route-section' => Singletons\RouteSection::class,
45+
'score-pins' => Singletons\UserScorePins::class,
5946
];
6047

6148
/**

app/Libraries/AssetsManifest.php app/Singletons/AssetsManifest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
declare(strict_types=1);
77

8-
namespace App\Libraries;
8+
namespace App\Singletons;
99

1010
use Exception;
1111
use Illuminate\Support\HtmlString;

app/Libraries/ChatFilters.php app/Singletons/ChatFilters.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +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-
namespace App\Libraries;
6+
namespace App\Singletons;
77

88
use App\Models\ChatFilter;
99
use App\Traits\Memoizes;

app/Libraries/CleanHTML.php app/Singletons/CleanHTML.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +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-
namespace App\Libraries;
6+
namespace App\Singletons;
77

88
use HTMLPurifier;
99
use HTMLPurifier_Config;

app/Libraries/Countries.php app/Singletons/Countries.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
declare(strict_types=1);
77

8-
namespace App\Libraries;
8+
namespace App\Singletons;
99

1010
use App\Models\Country;
1111
use App\Traits\Memoizes;

app/Libraries/Groups.php app/Singletons/Groups.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +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-
namespace App\Libraries;
6+
namespace App\Singletons;
77

88
use App\Models\Group;
99
use App\Traits\Memoizes;

app/Libraries/Ip2Asn.php app/Singletons/Ip2Asn.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@
55

66
declare(strict_types=1);
77

8-
namespace App\Libraries;
8+
namespace App\Singletons;
99

1010
use App\Enums\Ip;
11+
use App\Libraries\Ip2AsnUpdater;
1112
use Exception;
1213
use WeakMap;
1314

app/Libraries/LayoutCache.php app/Singletons/LayoutCache.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
declare(strict_types=1);
77

8-
namespace App\Libraries;
8+
namespace App\Singletons;
99

1010
use App\Traits\Memoizes;
1111

app/Libraries/LocalCacheManager.php app/Singletons/LocalCacheManager.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
declare(strict_types=1);
77

8-
namespace App\Libraries;
8+
namespace App\Singletons;
99

1010
class LocalCacheManager
1111
{

app/Libraries/Medals.php app/Singletons/Medals.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
declare(strict_types=1);
77

8-
namespace App\Libraries;
8+
namespace App\Singletons;
99

1010
use App\Models\Achievement;
1111
use App\Traits\Memoizes;

app/Libraries/Mods.php app/Singletons/Mods.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
declare(strict_types=1);
77

8-
namespace App\Libraries;
8+
namespace App\Singletons;
99

1010
use App\Exceptions\InvariantException;
1111
use Ds\Set;

app/Libraries/OsuAuthorize.php app/Singletons/OsuAuthorize.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@
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-
namespace App\Libraries;
6+
namespace App\Singletons;
77

88
use App\Exceptions\AuthorizationCheckException;
9+
use App\Libraries\AuthorizationResult;
10+
use App\Libraries\Commentable;
911
use App\Models\Beatmap;
1012
use App\Models\BeatmapDiscussion;
1113
use App\Models\BeatmapDiscussionPost;

app/Libraries/RouteSection.php app/Singletons/RouteSection.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +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-
namespace App\Libraries;
6+
namespace App\Singletons;
77

88
class RouteSection
99
{

app/Libraries/Smilies.php app/Singletons/Smilies.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
declare(strict_types=1);
77

8-
namespace App\Libraries;
8+
namespace App\Singletons;
99

1010
use App\Models\Smiley;
1111
use App\Traits\Memoizes;

app/Libraries/User/ScorePins.php app/Singletons/UserScorePins.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55

66
declare(strict_types=1);
77

8-
namespace App\Libraries\User;
8+
namespace App\Singletons;
99

1010
use App\Libraries\MorphMap;
1111
use App\Models\Beatmap;
1212
use App\Models\Score;
1313
use App\Models\ScorePin;
1414
use App\Models\Solo;
1515

16-
class ScorePins
16+
class UserScorePins
1717
{
1818
const REQUEST_ATTRIBUTE_KEY_PREFIX = 'current_user_score_pins:';
1919

tests/Libraries/Ip2AsnTest.php tests/Singletons/Ip2AsnTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
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-
namespace Tests\Libraries;
6+
namespace Tests\Singletons;
77

8-
use App\Libraries\Ip2Asn;
8+
use App\Singletons\Ip2Asn;
99
use Tests\TestCase;
1010

1111
class Ip2AsnTest extends TestCase

tests/Libraries/ModsTest.php tests/Singletons/ModsTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +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-
namespace Tests\Libraries;
6+
namespace Tests\Singletons;
77

88
use App\Enums\Ruleset;
99
use App\Exceptions\InvariantException;

0 commit comments

Comments
 (0)