mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-05-07 20:32:26 +00:00
118 lines
3.9 KiB
PHP
118 lines
3.9 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Actions\Fortify;
|
|
|
|
use App\Enums\Role;
|
|
use App\Enums\Weekday;
|
|
use App\Events\NewsletterRegistered;
|
|
use App\Models\Organization;
|
|
use App\Models\User;
|
|
use App\Service\IpLookup\IpLookupServiceContract;
|
|
use App\Service\TimezoneService;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Support\Facades\DB;
|
|
use Illuminate\Support\Facades\Hash;
|
|
use Illuminate\Support\Facades\Validator;
|
|
use Illuminate\Validation\ValidationException;
|
|
use Korridor\LaravelModelValidationRules\Rules\UniqueEloquent;
|
|
use Laravel\Fortify\Contracts\CreatesNewUsers;
|
|
use Laravel\Jetstream\Jetstream;
|
|
use Log;
|
|
|
|
class CreateNewUser implements CreatesNewUsers
|
|
{
|
|
use PasswordValidationRules;
|
|
|
|
/**
|
|
* Create a newly registered user.
|
|
*
|
|
* @param array<string, string> $input
|
|
*
|
|
* @throws ValidationException
|
|
*/
|
|
public function create(array $input): User
|
|
{
|
|
Validator::make($input, [
|
|
'name' => [
|
|
'required',
|
|
'string',
|
|
'max:255',
|
|
],
|
|
'email' => [
|
|
'required',
|
|
'string',
|
|
'email',
|
|
'max:255',
|
|
new UniqueEloquent(User::class, 'email', function (Builder $builder): Builder {
|
|
/** @var Builder<User> $builder */
|
|
return $builder->where('is_placeholder', '=', false);
|
|
}),
|
|
],
|
|
'password' => $this->passwordRules(),
|
|
'terms' => Jetstream::hasTermsAndPrivacyPolicyFeature() ? ['accepted', 'required'] : '',
|
|
'newsletter_consent' => [
|
|
'boolean',
|
|
],
|
|
])->validate();
|
|
|
|
$timezone = null;
|
|
if (array_key_exists('timezone', $input) && is_string($input['timezone'])) {
|
|
if (app(TimezoneService::class)->isValid($input['timezone'])) {
|
|
$timezone = $input['timezone'];
|
|
} else {
|
|
$timezone = app(TimezoneService::class)->mapLegacyTimezone($input['timezone']);
|
|
if ($timezone === null) {
|
|
Log::debug('Invalid timezone', ['timezone' => $input['timezone']]);
|
|
}
|
|
}
|
|
}
|
|
|
|
$ipLookupResponse = app(IpLookupServiceContract::class)->lookup(request()->ip());
|
|
|
|
$startOfWeek = Weekday::Monday;
|
|
$currency = null;
|
|
if ($ipLookupResponse !== null) {
|
|
$startOfWeek = $ipLookupResponse->startOfWeek ?? Weekday::Monday;
|
|
if ($timezone === null) {
|
|
$timezone = $ipLookupResponse->timezone;
|
|
}
|
|
$currency = $ipLookupResponse->currency;
|
|
}
|
|
$user = null;
|
|
$organization = null;
|
|
DB::transaction(function () use (&$user, &$organization, $input, $timezone, $startOfWeek, $currency): void {
|
|
$user = User::create([
|
|
'name' => $input['name'],
|
|
'email' => $input['email'],
|
|
'password' => Hash::make($input['password']),
|
|
'timezone' => $timezone ?? 'UTC',
|
|
'week_start' => $startOfWeek,
|
|
]);
|
|
|
|
$organization = new Organization;
|
|
$organization->name = explode(' ', $user->name, 2)[0]."'s Organization";
|
|
$organization->personal_team = true;
|
|
$organization->currency = $currency ?? 'EUR';
|
|
$organization->owner()->associate($user);
|
|
$organization->save();
|
|
|
|
$organization->users()->attach(
|
|
$user, [
|
|
'role' => Role::Owner->value,
|
|
]
|
|
);
|
|
|
|
$user->ownedTeams()->save($organization);
|
|
});
|
|
|
|
$newsletterConsent = isset($input['newsletter_consent']) && (bool) $input['newsletter_consent'];
|
|
if ($newsletterConsent) {
|
|
NewsletterRegistered::dispatch($input['name'], $input['email'], $user->getKey());
|
|
}
|
|
|
|
return $user;
|
|
}
|
|
}
|