From c9299b5410a55fa867826e389d16a48479a78504 Mon Sep 17 00:00:00 2001 From: Frankie B Date: Tue, 11 Jun 2024 18:02:01 +0100 Subject: Merge MVC rewrite into master (#21) * Just commit it all * Require auth * crap * Update homepage * Block AI scrapers * Update cache update script * Add dummy file * Remove unnecessary lastfm config var * Use withQueryParameters for LastFM API * Fix embeds * Update example env * Smard --- resources/views/errors/401.blade.php | 9 ++-- resources/views/errors/402.blade.php | 9 ++-- resources/views/errors/403.blade.php | 9 ++-- resources/views/errors/404.blade.php | 31 ++----------- resources/views/errors/418.blade.php | 9 ++-- resources/views/errors/419.blade.php | 9 ++-- resources/views/errors/429.blade.php | 9 ++-- resources/views/errors/500.blade.php | 9 ++-- resources/views/errors/503.blade.php | 9 ++-- resources/views/errors/generic-error.blade.php | 7 ++- resources/views/errors/guestbook-ipban.blade.php | 7 ++- .../views/errors/guestbook-ratelimit.blade.php | 7 ++- resources/views/errors/layout.blade.php | 53 ---------------------- resources/views/errors/minimal.blade.php | 24 ++-------- 14 files changed, 48 insertions(+), 153 deletions(-) delete mode 100644 resources/views/errors/layout.blade.php (limited to 'resources/views/errors') diff --git a/resources/views/errors/401.blade.php b/resources/views/errors/401.blade.php index 5c586db..7c0d081 100644 --- a/resources/views/errors/401.blade.php +++ b/resources/views/errors/401.blade.php @@ -1,5 +1,4 @@ -@extends('errors::minimal') - -@section('title', __('Unauthorized')) -@section('code', '401') -@section('message', __('Unauthorized')) + + 401 + Unauthorized + diff --git a/resources/views/errors/402.blade.php b/resources/views/errors/402.blade.php index 3bc23ef..4048cba 100644 --- a/resources/views/errors/402.blade.php +++ b/resources/views/errors/402.blade.php @@ -1,5 +1,4 @@ -@extends('errors::minimal') - -@section('title', __('Payment Required')) -@section('code', '402') -@section('message', __('Payment Required')) + + 402 + Payment Required + diff --git a/resources/views/errors/403.blade.php b/resources/views/errors/403.blade.php index a5506f0..d661d00 100644 --- a/resources/views/errors/403.blade.php +++ b/resources/views/errors/403.blade.php @@ -1,5 +1,4 @@ -@extends('errors::minimal') - -@section('title', __('Forbidden')) -@section('code', '403') -@section('message', __($exception->getMessage() ?: 'Forbidden')) + + 403 + {{__($exception->getMessage() ?: 'Forbidden')}} + diff --git a/resources/views/errors/404.blade.php b/resources/views/errors/404.blade.php index ebd22b7..812ec99 100644 --- a/resources/views/errors/404.blade.php +++ b/resources/views/errors/404.blade.php @@ -1,27 +1,4 @@ -@extends('errors::minimal') -@section('content') - -

Error 404 | Page not found!

-
-

The page /{{ Request::path() }}/ doesn't exist! Did you mean...

- -

Still haven't found what you were looking for or believe this is a server error? Contact the webmaster!

-
-

Diagnostic Info

-
- - Server:  {{ gethostname() }}
- Your IP: {{ Request::ip() }}
- Epoch:   {{ now()->timestamp }}
- Agent:   Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:122.0) Gecko/20100101 Firefox/122.0
-
-
-

© floppydisk 2021-2024

-@endsection + + 404 + Page not found! + diff --git a/resources/views/errors/418.blade.php b/resources/views/errors/418.blade.php index 412ea92..7ced586 100644 --- a/resources/views/errors/418.blade.php +++ b/resources/views/errors/418.blade.php @@ -1,5 +1,4 @@ -@extends('errors::minimal') - -@section('title', __('I\'m a teapot')) -@section('code', '418') -@section('message', __('I\'m a teapot')) + + 418 + I'm a teapot + diff --git a/resources/views/errors/419.blade.php b/resources/views/errors/419.blade.php index c09216e..7008bd8 100644 --- a/resources/views/errors/419.blade.php +++ b/resources/views/errors/419.blade.php @@ -1,5 +1,4 @@ -@extends('errors::minimal') - -@section('title', __('Page Expired')) -@section('code', '419') -@section('message', __('Page Expired')) + + 419 + Page Expired + diff --git a/resources/views/errors/429.blade.php b/resources/views/errors/429.blade.php index f01b07b..9ff195b 100644 --- a/resources/views/errors/429.blade.php +++ b/resources/views/errors/429.blade.php @@ -1,5 +1,4 @@ -@extends('errors::minimal') - -@section('title', __('Too Many Requests')) -@section('code', '429') -@section('message', __('Too Many Requests')) + + 429 + Too Many Requests + diff --git a/resources/views/errors/500.blade.php b/resources/views/errors/500.blade.php index d9e95d9..d2c28c5 100644 --- a/resources/views/errors/500.blade.php +++ b/resources/views/errors/500.blade.php @@ -1,5 +1,4 @@ -@extends('errors::minimal') - -@section('title', __('Server Error')) -@section('code', '500') -@section('message', __('Server Error')) + + 500 + Server Error + diff --git a/resources/views/errors/503.blade.php b/resources/views/errors/503.blade.php index c5a9dde..708c4d9 100644 --- a/resources/views/errors/503.blade.php +++ b/resources/views/errors/503.blade.php @@ -1,5 +1,4 @@ -@extends('errors::minimal') - -@section('title', __('Service Unavailable')) -@section('code', '503') -@section('message', __('Service Unavailable')) + + 503 + Service Unavailable + diff --git a/resources/views/errors/generic-error.blade.php b/resources/views/errors/generic-error.blade.php index 6f08ea5..0082093 100644 --- a/resources/views/errors/generic-error.blade.php +++ b/resources/views/errors/generic-error.blade.php @@ -1,9 +1,8 @@ -@extends('layouts.minimal') -@section('title', 'Error 401: Unauthorized User!') -@section('content') + + Error 401: Unauthorized User!

{{ $error }}


@if(isset($description))

{{ $description }}

@endif -@stop +
diff --git a/resources/views/errors/guestbook-ipban.blade.php b/resources/views/errors/guestbook-ipban.blade.php index 386d22a..5072e35 100644 --- a/resources/views/errors/guestbook-ipban.blade.php +++ b/resources/views/errors/guestbook-ipban.blade.php @@ -1,6 +1,5 @@ -@extends('layouts.minimal') -@section('title', 'Error 403: IP Blocked!') -@section('content') + + Error 403: IP Blocked!

Error 403: IP Blocked!


Your IP has been banned from submitting to the guestbook.

@@ -9,4 +8,4 @@ @endif
Click here to go back to the guestbook. -@stop +
diff --git a/resources/views/errors/guestbook-ratelimit.blade.php b/resources/views/errors/guestbook-ratelimit.blade.php index 7fecd97..cb24d9e 100644 --- a/resources/views/errors/guestbook-ratelimit.blade.php +++ b/resources/views/errors/guestbook-ratelimit.blade.php @@ -1,10 +1,9 @@ -@extends('layouts.minimal') -@section('title', 'Error 429: Overclocking Detected!') -@section('content') + + Error 429: Overclocking Detected!

Error 429: Overclocking Detected!


Whoa there! Your submissions are going at warp speed.

Remember you can only submit an entry once every hour!


Click here to go back to the guestbook. -@stop +
diff --git a/resources/views/errors/layout.blade.php b/resources/views/errors/layout.blade.php deleted file mode 100644 index 019c2cd..0000000 --- a/resources/views/errors/layout.blade.php +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - @yield('title') - - - - - -
-
-
- @yield('message') -
-
-
- - diff --git a/resources/views/errors/minimal.blade.php b/resources/views/errors/minimal.blade.php index e15c833..4ae6830 100644 --- a/resources/views/errors/minimal.blade.php +++ b/resources/views/errors/minimal.blade.php @@ -1,21 +1,3 @@ -@extends('layouts.minimal') -@section('content') -

Error @yield('code') | @yield('message')

-
-

Here, have a cat...

-

-

If you believe this is a server error, contact the webmaster

-
-

Diagnostic Info

-
- - Server:  {{ gethostname() }}
- Your IP: {{ Request::ip() }}
- Root:    {!! url('') !!}
- Path:    /{{ Request::path() }}/
- Epoch:   {{ now()->timestamp }}
- Agent:   Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:122.0) Gecko/20100101 Firefox/122.0
-
-
-

© floppydisk 2021-2024

-@endsection + + + -- cgit v1.2.3-54-g00ecf