Begin implementation of new daemon authentication scheme
This commit is contained in:
parent
8722571037
commit
906a699ee2
23 changed files with 796 additions and 145 deletions
|
@ -0,0 +1,51 @@
|
|||
<?php
|
||||
|
||||
use Carbon\Carbon;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
|
||||
class RemoveDaemonSecretFromServersTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
$inserts = [];
|
||||
|
||||
$servers = DB::table('servers')->select('id', 'owner_id')->get();
|
||||
$servers->each(function ($server) use (&$inserts) {
|
||||
$inserts[] = [
|
||||
'user_id' => $server->owner_id,
|
||||
'server_id' => $server->id,
|
||||
'secret' => 'i_' . str_random(40),
|
||||
'expires_at' => Carbon::now()->addHours(24),
|
||||
'created_at' => Carbon::now(),
|
||||
'updated_at' => Carbon::now(),
|
||||
];
|
||||
});
|
||||
|
||||
DB::transaction(function () use ($inserts) {
|
||||
DB::table('daemon_keys')->insert($inserts);
|
||||
});
|
||||
|
||||
Schema::table('servers', function (Blueprint $table) {
|
||||
$table->dropUnique(['daemonSecret']);
|
||||
$table->dropColumn('daemonSecret');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::table('servers', function (Blueprint $table) {
|
||||
$table->char('daemonSecret', 36)->after('startup')->unique();
|
||||
});
|
||||
|
||||
DB::table('daemon_keys')->truncate();
|
||||
}
|
||||
}
|
Reference in a new issue