schneespur/app/Services/OwntracksCredentialService.php
Michael 2c63440ed8 Revert: move code back to project root from schneespur/ subdirectory
- Reverts the schneespur/ subdirectory restructure (b8e426b)
- Restores package.json and vite.config.js (needed for npm build, were
  removed in an earlier cleanup before the restructure)
- Updates public/build/ assets with current Vite output (new content hashes)
2026-05-17 18:24:26 +00:00

40 lines
1 KiB
PHP

<?php
namespace App\Services;
use App\Models\OwntracksCredentialEvent;
use App\Models\User;
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Str;
class OwntracksCredentialService
{
/**
* @return array{username: string, password: string}
*/
public function generateCredentials(User $driver, User $actor): array
{
$isRotation = $driver->owntracks_username !== null;
if (! $isRotation) {
$driver->owntracks_username = 'driver-' . $driver->id . '-' . Str::lower(Str::random(4));
}
$plaintext = Str::random(16);
$driver->owntracks_password_hash = Hash::make($plaintext);
$driver->owntracks_password_revealed_at = null;
$driver->save();
OwntracksCredentialEvent::create([
'driver_id' => $driver->id,
'event' => $isRotation ? 'rotated' : 'created',
'actor_user_id' => $actor->id,
]);
return [
'username' => $driver->owntracks_username,
'password' => $plaintext,
];
}
}