trypost/app/Http/Controllers/Auth/ThreadsController.php

175 lines
6.6 KiB
PHP
Raw Normal View History

2026-01-15 17:24:39 +00:00
<?php
declare(strict_types=1);
2026-01-15 17:24:39 +00:00
namespace App\Http\Controllers\Auth;
use App\Enums\SocialAccount\Platform as SocialPlatform;
use App\Enums\SocialAccount\Status;
use App\Exceptions\SocialAccount\NetworkAlreadyConnectedException;
2026-01-15 17:24:39 +00:00
use App\Models\Workspace;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Http;
use Illuminate\Support\Facades\Log;
use Illuminate\View\View;
2026-01-15 17:24:39 +00:00
use Inertia\Inertia;
use Symfony\Component\HttpFoundation\Response;
class ThreadsController extends SocialController
{
protected SocialPlatform $platform = SocialPlatform::Threads;
protected array $scopes = [
'threads_basic',
'threads_content_publish',
2026-04-02 20:57:06 +00:00
'threads_manage_insights',
2026-01-15 17:24:39 +00:00
];
public function connect(Request $request): Response|RedirectResponse
2026-01-15 17:24:39 +00:00
{
$this->ensurePlatformEnabled();
$workspace = $request->user()->currentWorkspace;
if (! $workspace) {
return redirect()->route('app.workspaces.create');
}
2026-01-15 17:24:39 +00:00
$this->authorize('manageAccounts', $workspace);
session([
'social_connect_workspace' => $workspace->id,
'social_reconnect_id' => null,
]);
2026-01-15 17:24:39 +00:00
$state = bin2hex(random_bytes(16));
session(['threads_oauth_state' => $state]);
$params = http_build_query([
'client_id' => config('services.threads.client_id'),
'redirect_uri' => config('services.threads.redirect'),
'scope' => implode(',', $this->scopes),
'response_type' => 'code',
'state' => $state,
]);
return Inertia::location("https://threads.net/oauth/authorize?{$params}");
}
public function callback(Request $request): View
2026-01-15 17:24:39 +00:00
{
$workspaceId = session('social_connect_workspace');
$savedState = session('threads_oauth_state');
if (! $workspaceId) {
session()->forget(['threads_oauth_state', 'social_reconnect_id']);
return $this->popupCallback(false, __('accounts.popup_callback.session_expired'), $this->platform->value);
2026-01-15 17:24:39 +00:00
}
if ($request->state !== $savedState) {
session()->forget(['threads_oauth_state', 'social_reconnect_id']);
return $this->popupCallback(false, __('accounts.popup_callback.invalid_state'), $this->platform->value);
2026-01-15 17:24:39 +00:00
}
$workspace = Workspace::find($workspaceId);
if (! $workspace || ! $request->user()->can('manageAccounts', $workspace)) {
session()->forget(['threads_oauth_state', 'social_reconnect_id']);
return $this->popupCallback(false, __('accounts.popup_callback.workspace_not_found'), $this->platform->value);
2026-01-15 17:24:39 +00:00
}
try {
// Exchange code for short-lived token
$tokenResponse = Http::asForm()->post(config('trypost.platforms.threads.auth_api').'/oauth/access_token', [
2026-01-15 17:24:39 +00:00
'client_id' => config('services.threads.client_id'),
'client_secret' => config('services.threads.client_secret'),
'grant_type' => 'authorization_code',
'redirect_uri' => config('services.threads.redirect'),
'code' => $request->code,
]);
if ($tokenResponse->failed()) {
Log::error('Threads token exchange failed', [
'status' => $tokenResponse->status(),
'body' => $tokenResponse->body(),
]);
throw new \Exception('Failed to exchange token');
}
$tokenData = $tokenResponse->json();
$shortLivedToken = $tokenData['access_token'];
$userId = $tokenData['user_id'];
// Exchange for long-lived token
$longLivedResponse = Http::get(config('trypost.platforms.threads.auth_api').'/access_token', [
2026-01-15 17:24:39 +00:00
'grant_type' => 'th_exchange_token',
'client_secret' => config('services.threads.client_secret'),
'access_token' => $shortLivedToken,
]);
$longLivedToken = $shortLivedToken;
$expiresIn = null;
if ($longLivedResponse->successful()) {
$longLivedData = $longLivedResponse->json();
$longLivedToken = $longLivedData['access_token'] ?? $shortLivedToken;
$expiresIn = $longLivedData['expires_in'] ?? null;
}
// Fetch user profile
$profileResponse = Http::get(config('trypost.platforms.threads.graph_api')."/{$userId}", [
2026-01-15 17:24:39 +00:00
'access_token' => $longLivedToken,
'fields' => 'id,username,name,threads_profile_picture_url',
]);
if ($profileResponse->failed()) {
Log::error('Threads profile fetch failed', [
'body' => $profileResponse->body(),
]);
throw new \Exception('Failed to fetch profile');
}
$profile = $profileResponse->json();
$avatarPath = uploadFromUrl(data_get($profile, 'threads_profile_picture_url', null));
2026-01-15 17:24:39 +00:00
$workspace->socialAccounts()->updateOrCreate(
[
'platform' => $this->platform->value,
'platform_user_id' => data_get($profile, 'id'),
],
[
'username' => data_get($profile, 'username'),
'display_name' => data_get($profile, 'name', data_get($profile, 'username')),
'avatar_url' => $avatarPath,
'access_token' => $longLivedToken,
'refresh_token' => null,
'token_expires_at' => $expiresIn ? now()->addSeconds($expiresIn) : null,
'scopes' => $this->scopes,
'status' => Status::Connected,
'error_message' => null,
'disconnected_at' => null,
],
);
2026-01-15 17:24:39 +00:00
session()->forget(['threads_oauth_state', 'social_reconnect_id']);
2026-01-15 17:24:39 +00:00
return $this->popupCallback(true, __('accounts.popup_callback.connected'), $this->platform->value);
} catch (NetworkAlreadyConnectedException) {
return $this->popupCallback(false, __('accounts.popup_callback.network_taken'), $this->platform->value);
2026-01-15 17:24:39 +00:00
} catch (\Exception $e) {
Log::error('Threads OAuth Error', [
'error' => $e->getMessage(),
'trace' => $e->getTraceAsString(),
]);
session()->forget(['threads_oauth_state', 'social_reconnect_id']);
return $this->popupCallback(false, __('accounts.popup_callback.error_connecting'), $this->platform->value);
2026-01-15 17:24:39 +00:00
}
}
}