jonnybarnes.uk/app/Providers/AppServiceProvider.php

146 lines
4.6 KiB
PHP
Raw Normal View History

2016-05-19 15:01:28 +01:00
<?php
namespace App\Providers;
2017-12-19 16:00:42 +00:00
use App\Models\Note;
2019-10-27 16:29:15 +00:00
use App\Observers\NoteObserver;
use Codebird\Codebird;
use GuzzleHttp\Client;
use GuzzleHttp\Middleware;
use Illuminate\Database\Eloquent\Model;
2020-02-23 17:12:17 +00:00
use Illuminate\Pagination\LengthAwarePaginator;
use Illuminate\Support\Collection;
2016-05-19 15:01:28 +01:00
use Illuminate\Support\ServiceProvider;
2019-10-27 16:29:15 +00:00
use Laravel\Dusk\DuskServiceProvider;
use Lcobucci\JWT\Configuration;
use Lcobucci\JWT\Signer\Hmac\Sha256;
use Lcobucci\JWT\Signer\Key\InMemory;
use Lcobucci\JWT\Validation\Constraint\SignedWith;
use Symfony\Component\HtmlSanitizer\HtmlSanitizer;
use Symfony\Component\HtmlSanitizer\HtmlSanitizerConfig;
2016-05-19 15:01:28 +01:00
class AppServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*/
2023-02-18 09:34:57 +00:00
public function boot(): void
2016-05-19 15:01:28 +01:00
{
Note::observe(NoteObserver::class);
Responsive images Squashed commit of the following: commit 4f62b48b77b0b34f2f556083e2271f46d5bd023e Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Sat Sep 16 11:38:26 2017 +0100 Update changelog commit 2c41451b24839dfa9a37e6f92bc542cef999aaa9 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Sat Sep 16 11:38:14 2017 +0100 run migrations in deploy script commit 2b1c3af725d366479399afcd8059e9abebade9ee Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 23:38:08 2017 +0100 Modified CSS for note img links commit fcd6217da3443e28764ed7a810620b54d04b223e Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 23:19:42 2017 +0100 Add responsive image markup commit d900d8067dbf36180fd1bdaca7d34421ba85a413 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 23:19:24 2017 +0100 Fix issues with logic commit c03d18c5e02c041092ce401f2a814e2a4f8e6fad Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 20:33:39 2017 +0100 Use new column name commit 21d40eab48f9f038cf8ea82880b58d68ecdf0549 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 20:33:12 2017 +0100 Use text column type to give future leeway with how we do this commit abb3b3b1e14a8de58cac8dffcc06d3b8bb06119d Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 19:36:29 2017 +0100 Some tests of the new job commit 0b11093df16a8c0047520322185706bbdc52c0c4 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 19:36:13 2017 +0100 This job creates smaller resolution images commit 93449ad2b367bea33e84ec94486125467eaf0394 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 19:35:52 2017 +0100 Save the media directly to S3, then dispatch the image processing job commit fff232607c18a6681ea4414b6e54c006614f4e5e Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 19:35:06 2017 +0100 Store the image library’s preferences commit 0b908b99a79f8a1294d2c59cd731c18538ffb6ce Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 19:33:28 2017 +0100 Configure the ligrary to use imagick commit ed13e55e0ce1c0e94860259bf0b1d97a433c89b1 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 19:32:55 2017 +0100 Add the intervention/image package
2017-09-16 11:39:36 +01:00
// configure Intervention/Image
$this->app->bind('Intervention\Image\ImageManager', function () {
2023-12-17 13:56:10 +00:00
return \Intervention\Image\ImageManager::withDriver(config('image.driver'));
Responsive images Squashed commit of the following: commit 4f62b48b77b0b34f2f556083e2271f46d5bd023e Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Sat Sep 16 11:38:26 2017 +0100 Update changelog commit 2c41451b24839dfa9a37e6f92bc542cef999aaa9 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Sat Sep 16 11:38:14 2017 +0100 run migrations in deploy script commit 2b1c3af725d366479399afcd8059e9abebade9ee Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 23:38:08 2017 +0100 Modified CSS for note img links commit fcd6217da3443e28764ed7a810620b54d04b223e Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 23:19:42 2017 +0100 Add responsive image markup commit d900d8067dbf36180fd1bdaca7d34421ba85a413 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 23:19:24 2017 +0100 Fix issues with logic commit c03d18c5e02c041092ce401f2a814e2a4f8e6fad Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 20:33:39 2017 +0100 Use new column name commit 21d40eab48f9f038cf8ea82880b58d68ecdf0549 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 20:33:12 2017 +0100 Use text column type to give future leeway with how we do this commit abb3b3b1e14a8de58cac8dffcc06d3b8bb06119d Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 19:36:29 2017 +0100 Some tests of the new job commit 0b11093df16a8c0047520322185706bbdc52c0c4 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 19:36:13 2017 +0100 This job creates smaller resolution images commit 93449ad2b367bea33e84ec94486125467eaf0394 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 19:35:52 2017 +0100 Save the media directly to S3, then dispatch the image processing job commit fff232607c18a6681ea4414b6e54c006614f4e5e Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 19:35:06 2017 +0100 Store the image library’s preferences commit 0b908b99a79f8a1294d2c59cd731c18538ffb6ce Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 19:33:28 2017 +0100 Configure the ligrary to use imagick commit ed13e55e0ce1c0e94860259bf0b1d97a433c89b1 Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Sep 15 19:32:55 2017 +0100 Add the intervention/image package
2017-09-16 11:39:36 +01:00
});
// Bind the Codebird client
2022-05-14 17:44:14 +01:00
// Codebird gets mocked in tests
// @codeCoverageIgnoreStart
$this->app->bind('Codebird\Codebird', function () {
Codebird::setConsumerKey(
env('TWITTER_CONSUMER_KEY'),
env('TWITTER_CONSUMER_SECRET')
);
$cb = Codebird::getInstance();
$cb->setToken(
env('TWITTER_ACCESS_TOKEN'),
env('TWITTER_ACCESS_TOKEN_SECRET')
);
return $cb;
});
2022-05-14 17:44:14 +01:00
// @codeCoverageIgnoreEnd
2020-02-23 17:12:17 +00:00
/**
* Paginate a standard Laravel Collection.
*
2022-07-09 10:08:26 +01:00
* @param int $perPage
* @param int $total
* @param int $page
* @param string $pageName
2020-02-23 17:12:17 +00:00
* @return array
*/
Collection::macro('paginate', function ($perPage, $total = null, $page = null, $pageName = 'page') {
$page = $page ?: LengthAwarePaginator::resolveCurrentPage($pageName);
return new LengthAwarePaginator(
$this->forPage($page, $perPage),
$total ?: $this->count(),
$perPage,
$page,
[
'path' => LengthAwarePaginator::resolveCurrentPath(),
'pageName' => $pageName,
]
);
});
// Configure JWT builder
$this->app->bind('Lcobucci\JWT\Configuration', function () {
$key = InMemory::plainText(config('app.key'));
$config = Configuration::forSymmetricSigner(new Sha256(), $key);
$config->setValidationConstraints(new SignedWith(new Sha256(), $key));
return $config;
});
// Configure HtmlSanitizer
$this->app->bind(HtmlSanitizer::class, function () {
return new HtmlSanitizer(
(new HtmlSanitizerConfig())
->allowSafeElements()
->forceAttribute('a', 'rel', 'noopener nofollow')
);
});
// Configure Guzzle
$this->app->bind('RetryGuzzle', function () {
$handlerStack = \GuzzleHttp\HandlerStack::create();
$handlerStack->push(Middleware::retry(
function ($retries, $request, $response, $exception) {
// Limit the number of retries to 5
if ($retries >= 5) {
return false;
}
// Retry connection exceptions
if ($exception instanceof \GuzzleHttp\Exception\ConnectException) {
return true;
}
// Retry on server errors
if ($response && $response->getStatusCode() >= 500) {
return true;
}
// Finally for CloudConvert, retry if status is not final
return json_decode($response, false, 512, JSON_THROW_ON_ERROR)->data->status !== 'finished';
},
function () {
// Retry after 1 second
return 1000;
}
));
return new Client(['handler' => $handlerStack]);
});
// Turn on Eloquent strict mode when developing
Model::shouldBeStrict(! $this->app->isProduction());
2016-05-19 15:01:28 +01:00
}
/**
* Register any application services.
*/
2023-02-18 09:34:57 +00:00
public function register(): void
2016-05-19 15:01:28 +01:00
{
if ($this->app->environment('local', 'testing')) {
$this->app->register(DuskServiceProvider::class);
}
2016-05-19 15:01:28 +01:00
}
}