mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 08:56:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			59 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| use Carbon\Carbon;
 | |
| use Illuminate\Support\Facades\Schema;
 | |
| use Illuminate\Database\Schema\Blueprint;
 | |
| use Illuminate\Database\Migrations\Migration;
 | |
| use App\Contracts\Repository\DaemonKeyRepositoryInterface;
 | |
| use Illuminate\Support\Str;
 | |
| 
 | |
| return new class extends Migration
 | |
| {
 | |
|     /**
 | |
|      * Run the migrations.
 | |
|      */
 | |
|     public function up(): void
 | |
|     {
 | |
|         $inserts = [];
 | |
|         $subusers = DB::table('subusers')->get();
 | |
|         $subusers->each(function ($subuser) use (&$inserts) {
 | |
|             $inserts[] = [
 | |
|                 'user_id' => $subuser->user_id,
 | |
|                 'server_id' => $subuser->server_id,
 | |
|                 'secret' => DaemonKeyRepositoryInterface::INTERNAL_KEY_IDENTIFIER . Str::random(40),
 | |
|                 'expires_at' => Carbon::now()->addMinutes(config('panel.api.key_expire_time', 720))->toDateTimeString(),
 | |
|                 'created_at' => Carbon::now()->toDateTimeString(),
 | |
|                 'updated_at' => Carbon::now()->toDateTimeString(),
 | |
|             ];
 | |
|         });
 | |
| 
 | |
|         DB::transaction(function () use ($inserts) {
 | |
|             DB::table('daemon_keys')->insert($inserts);
 | |
|         });
 | |
| 
 | |
|         Schema::table('subusers', function (Blueprint $table) {
 | |
|             $table->dropUnique(['daemonSecret']);
 | |
|             $table->dropColumn('daemonSecret');
 | |
|         });
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Reverse the migrations.
 | |
|      */
 | |
|     public function down(): void
 | |
|     {
 | |
|         Schema::table('subusers', function (Blueprint $table) {
 | |
|             $table->string('daemonSecret', 36)->after('server_id');
 | |
|         });
 | |
| 
 | |
|         $subusers = DB::table('subusers')->get();
 | |
|         $subusers->each(function ($subuser) {
 | |
|             DB::table('daemon_keys')->where('user_id', $subuser->user_id)->where('server_id', $subuser->server_id)->delete();
 | |
|         });
 | |
| 
 | |
|         Schema::table('subusers', function (Blueprint $table) {
 | |
|             $table->unique('daemonSecret');
 | |
|         });
 | |
|     }
 | |
| };
 | 
