Update APIv2 speed

This commit is contained in:
DariusIII
2026-07-12 11:06:31 +02:00
parent 16388f1666
commit 01ee665a24
7 changed files with 273 additions and 48 deletions
+90
View File
@@ -568,6 +568,24 @@ class ApiRequestMatrixTest extends TestCase
->assertJsonPath('genres.0.name', 'Test Genre');
}
public function test_v2_details_response_shape_is_unchanged(): void
{
$token = (string) DB::table('users')->value('api_token');
$this->getJson('/api/v2/details?api_token='.$token.'&id=release-guid')
->assertOk()
->assertJsonPath('title', 'Ubuntu.Release')
->assertJsonPath('details', 'http://localhost/details/release-guid')
->assertJsonPath('link', 'http://localhost/getnzb?id=release-guid.nzb&r='.$token)
->assertJsonPath('category', 5030)
->assertJsonPath('category_name', 'TV > SD')
->assertJsonPath('size', 123456)
->assertJsonPath('files', 10)
->assertJsonPath('grabs', 2)
->assertJsonPath('comments', 1)
->assertJsonPath('password', 0);
}
private function createSchema(): void
{
Schema::create('roles', function (Blueprint $table): void {
@@ -662,6 +680,54 @@ class ApiRequestMatrixTest extends TestCase
$table->timestamp('timestamp')->nullable();
});
Schema::create('videos', function (Blueprint $table): void {
$table->unsignedInteger('id')->primary();
$table->unsignedInteger('tvdb')->nullable();
$table->unsignedInteger('trakt')->nullable();
$table->unsignedInteger('tvrage')->nullable();
$table->unsignedInteger('tvmaze')->nullable();
$table->string('imdb')->nullable();
$table->unsignedInteger('tmdb')->nullable();
});
Schema::create('tv_episodes', function (Blueprint $table): void {
$table->unsignedInteger('id')->primary();
$table->string('title')->nullable();
$table->string('series')->nullable();
$table->string('episode')->nullable();
$table->date('firstaired')->nullable();
});
Schema::create('movieinfo', function (Blueprint $table): void {
$table->unsignedInteger('id')->primary();
$table->string('imdbid')->nullable();
$table->unsignedInteger('tmdbid')->nullable();
$table->unsignedInteger('traktid')->nullable();
});
Schema::create('releases', function (Blueprint $table): void {
$table->unsignedInteger('id')->primary();
$table->string('searchname');
$table->string('guid')->index();
$table->dateTime('postdate');
$table->unsignedInteger('categories_id');
$table->unsignedBigInteger('size');
$table->unsignedInteger('totalpart');
$table->string('fromname')->nullable();
$table->integer('passwordstatus')->default(0);
$table->unsignedInteger('grabs')->default(0);
$table->unsignedInteger('comments')->default(0);
$table->dateTime('adddate');
$table->unsignedInteger('videos_id')->default(0);
$table->unsignedInteger('tv_episodes_id')->default(0);
$table->integer('haspreview')->default(0);
$table->integer('nfostatus')->default(0);
$table->unsignedInteger('movieinfo_id')->default(0);
$table->unsignedInteger('musicinfo_id')->default(0);
$table->unsignedInteger('consoleinfo_id')->default(0);
$table->unsignedInteger('groups_id')->nullable();
});
Schema::create('usenet_groups', function (Blueprint $table): void {
$table->increments('id');
$table->string('name');
@@ -754,12 +820,36 @@ class ApiRequestMatrixTest extends TestCase
]);
DB::table('usenet_groups')->insert([
'id' => 1,
'name' => 'alt.binaries.test',
'active' => 1,
'description' => 'Test usenet group',
'last_updated' => now(),
]);
DB::table('releases')->insert([
'id' => 1,
'searchname' => 'Ubuntu.Release',
'guid' => 'release-guid',
'postdate' => '2026-01-02 00:00:00',
'categories_id' => 5030,
'size' => 123456,
'totalpart' => 10,
'fromname' => 'poster',
'passwordstatus' => 0,
'grabs' => 2,
'comments' => 1,
'adddate' => '2026-01-03 00:00:00',
'videos_id' => 0,
'tv_episodes_id' => 0,
'haspreview' => 0,
'nfostatus' => 0,
'movieinfo_id' => 0,
'musicinfo_id' => 0,
'consoleinfo_id' => 0,
'groups_id' => 1,
]);
DB::table('genres')->insert([
'id' => 1,
'title' => 'Test Genre',
@@ -4,11 +4,28 @@ namespace Tests\Feature;
use App\Events\UserAccessedApi;
use App\Listeners\UpdateUserAccessedApi;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Schema;
use stdClass;
use Tests\TestCase;
final class UpdateUserAccessedApiTest extends TestCase
{
protected function setUp(): void
{
parent::setUp();
config([
'database.default' => 'sqlite',
'database.connections.sqlite.database' => ':memory:',
'app.key' => 'base64:'.base64_encode(random_bytes(32)),
]);
DB::purge();
DB::reconnect();
}
public function test_event_has_ip_property(): void
{
// Use a simple stdClass as the event just stores the user reference
@@ -43,4 +60,57 @@ final class UpdateUserAccessedApiTest extends TestCase
$this->assertEquals(999, $event->user->id);
$this->assertEquals('10.0.0.1', $event->ip);
}
public function test_listener_updates_api_access_and_host(): void
{
$this->createUsersTable();
DB::table('users')->insert([
'id' => 1,
'host' => null,
'apiaccess' => null,
]);
$user = new stdClass;
$user->id = 1;
(new UpdateUserAccessedApi)->handle(new UserAccessedApi($user, '192.168.1.100'));
$row = DB::table('users')->where('id', 1)->first();
$this->assertSame('192.168.1.100', $row->host);
$this->assertNotNull($row->apiaccess);
}
public function test_listener_updates_with_a_single_query_without_loading_user_model(): void
{
$this->createUsersTable();
DB::table('users')->insert([
'id' => 1,
'host' => null,
'apiaccess' => null,
]);
$user = new stdClass;
$user->id = 1;
DB::flushQueryLog();
DB::enableQueryLog();
(new UpdateUserAccessedApi)->handle(new UserAccessedApi($user, '10.0.0.1'));
$queries = DB::getQueryLog();
$this->assertCount(1, $queries);
$this->assertStringStartsWith('update ', strtolower((string) $queries[0]['query']));
}
private function createUsersTable(): void
{
Schema::create('users', function (Blueprint $table): void {
$table->increments('id');
$table->string('host')->nullable();
$table->timestamp('apiaccess')->nullable();
});
}
}