Refactor Trakt configuration to use config file and dependency injection

This commit is contained in:
Dan Jones 2025-11-16 20:45:27 -06:00
commit caa1f0e442
5 changed files with 32 additions and 19 deletions

View file

@ -5,16 +5,16 @@ declare(strict_types=1);
namespace App\Commands;
use App\Services\Trakt;
use Illuminate\Contracts\Config\Repository;
class TraktLogin extends Command
{
protected $signature = 'trakt:login';
protected $description = 'Login and get new token.';
public function handle(Trakt $trakt): int
public function handle(Trakt $trakt, Repository $config): int
{
$data = [
'client_id' => env('TRAKT_APP_ID'),
'client_id' => $config->get('trakt.app_id'),
];
$resp = $trakt->requestNoAuth()->post('/oauth/device/code', $data);
@ -33,8 +33,8 @@ class TraktLogin extends Command
$this->line("TRAKT_DEVICE_RESP='" . json_encode($body) . "'");
$data = [
'client_id' => env('TRAKT_APP_ID'),
'client_secret' => env('TRAKT_APP_SECRET'),
'client_id' => $config->get('trakt.app_id'),
'client_secret' => $config->get('trakt.app_secret'),
'code' => $body['device_code'],
];