Initial Commit
linter / quality (push) Canceled after 0s
tests / ci (8.3) (push) Canceled after 0s
tests / ci (8.4) (push) Canceled after 0s
tests / ci (8.5) (push) Canceled after 0s

This commit is contained in:
2026-08-28 22:55:32 +10:00
parent d8d4ecbe8a
commit f00405ed24
16 changed files with 1008 additions and 0 deletions
@@ -0,0 +1,71 @@
<?php
namespace App\Console\Commands;
use App\Models\DirectMessage;
use App\Models\DirectThread;
use Illuminate\Console\Attributes\Description;
use Illuminate\Console\Attributes\Signature;
use Illuminate\Console\Command;
#[Signature('direct:scrape-messages')]
#[Description('Scrape Instagram Direct threads and messages via Playwright')]
class ScrapeDirectMessages extends RunsPlaywrightScript
{
protected string $script = 'scrape-messages.spec.js';
protected int $processTimeout = 600;
protected function afterRun(): void
{
$path = base_path('playwright/output/scrape-messages.json');
if (! file_exists($path)) {
$this->warn('No output file found — nothing to upsert.');
return;
}
$data = json_decode(file_get_contents($path), true);
foreach ($data['threads'] ?? [] as $thread) {
DirectThread::updateOrCreate(
['thread_id' => $thread['thread_id']],
[
'thread_key' => $thread['thread_key'],
'thread_title' => $thread['thread_title'],
'is_group' => $thread['is_group'],
'participants' => $thread['participants'],
'last_activity_at' => $thread['last_activity_at'],
'muted' => $thread['muted'],
]
);
}
foreach ($data['messages'] ?? [] as $message) {
DirectMessage::updateOrCreate(
['id' => $message['id']],
[
'thread_id' => $message['thread_id'],
'user_id' => $message['user_id'],
'username' => $message['username'],
'full_name' => $message['full_name'],
'item_type' => $message['content_type'],
'text' => $message['text'],
'timestamp' => $message['timestamp_ms'],
'shared_url' => $message['share']['url'] ?? null,
'shared_preview_image' => $message['share']['preview_image'] ?? null,
'shared_title' => $message['share']['title'] ?? null,
'shared_caption' => $message['share']['caption'] ?? null,
'reactions' => $message['reactions'],
'replied_to_id' => $message['replied_to_id'],
'replied_to_text' => $message['replied_to_text'],
]
);
}
$this->info(sprintf(
'Upserted %d threads and %d messages.',
count($data['threads'] ?? []),
count($data['messages'] ?? [])
));
}
}