🔥 **Remove Highscore and Bindle features**

- 🗑️ Deleted `Highscore` feature (Model, Controller, Factory, Tests, Routes, Migrations) and associated logic.
- 🗑️ Removed `BindleController` and its related test.
- 🧹 Cleaned up unused routes, database seeders, and localization references.
- 🚫 Deprecated inactive book rental guide component and associated views.
This commit is contained in:
HolgerHatGarKeineNode
2026-06-08 01:08:07 +02:00
parent 351dd87fa9
commit 3875e127e4
17 changed files with 3 additions and 731 deletions
-26
View File
@@ -1,26 +0,0 @@
<?php
namespace Database\Factories;
use App\Models\Highscore;
use Database\Factories\Helpers\NostrHelper;
use Illuminate\Database\Eloquent\Factories\Factory;
/**
* @extends Factory<Highscore>
*/
class HighscoreFactory extends Factory
{
protected $model = Highscore::class;
public function definition(): array
{
return [
'npub' => NostrHelper::randomNpub(),
'name' => fake()->name(),
'satoshis' => fake()->numberBetween(0, 100000),
'blocks' => fake()->numberBetween(0, 1000),
'achieved_at' => fake()->dateTimeBetween('-1 year', 'now'),
];
}
}
@@ -1,35 +0,0 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('highscores', function (Blueprint $table) {
$table->id();
$table->string('npub', 100);
$table->string('name')->nullable();
$table->unsignedBigInteger('satoshis');
$table->unsignedInteger('blocks');
$table->dateTime('achieved_at');
$table->timestamps();
$table->unique(['npub', 'achieved_at']);
$table->index('satoshis');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('highscores');
}
};
+1 -14
View File
@@ -11,7 +11,6 @@ use App\Models\CourseEvent;
use App\Models\EmailCampaign;
use App\Models\EmailTexts;
use App\Models\Episode;
use App\Models\Highscore;
use App\Models\Lecturer;
use App\Models\Library;
use App\Models\LibraryItem;
@@ -28,7 +27,6 @@ use App\Models\TwitterAccount;
use App\Models\User;
use App\Models\Venue;
use App\Models\Vote;
use Database\Factories\Helpers\NostrHelper;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\App;
use Illuminate\Support\Facades\DB;
@@ -167,7 +165,7 @@ class DatabaseSeeder extends Seeder
}
});
$this->command->info('Phase 6: Voting & Highscores');
$this->command->info('Phase 6: Voting');
$proposals->each(function (ProjectProposal $proposal) use ($users) {
foreach ($users->random(min(8, $users->count())) as $voter) {
Vote::create([
@@ -180,17 +178,6 @@ class DatabaseSeeder extends Seeder
}
});
foreach (NostrHelper::realNpubs() as $i => $npub) {
for ($d = 0; $d < 5; $d++) {
Highscore::factory()->create([
'npub' => $npub,
'achieved_at' => now()->subDays(($i * 10) + $d),
'satoshis' => fake()->numberBetween(1000, 1_000_000),
'blocks' => fake()->numberBetween(1, 5000),
]);
}
}
$this->command->info('Phase 7: LoginKeys');
LoginKey::factory()->count(5)->recycle($users)->create();