/home/optimumoperation/smritielectronics.com/platform/core/acl/src/Commands/UserPasswordCommand.php
<?php

namespace Botble\ACL\Commands;

use Botble\ACL\Models\User;
use Botble\Base\Commands\Traits\ValidateCommandInput;
use Botble\Base\Supports\Helper;
use Exception;
use Illuminate\Console\Command;

use function Laravel\Prompts\{password, text};

use Symfony\Component\Console\Attribute\AsCommand;

#[AsCommand('cms:user:password:change', 'Change admin user password')]
class UserPasswordCommand extends Command
{
    use ValidateCommandInput;

    public function handle(): int
    {
        try {
            $user = $this->changePassword();

            $this->sendSuccessMessage($user);

            Helper::clearCache();

            return self::SUCCESS;
        } catch (Exception $exception) {
            $this->components->error('Could not change user password.');
            $this->components->error($exception->getMessage());

            return self::FAILURE;
        }
    }

    protected function getUserData(): array
    {
        return [
            'username' => text(
                label: 'Username',
                required: true,
                validate: $this->validate('min:4|max:60')
            ),
            'password' => password(
                label: 'Password',
                required: true,
                validate: $this->validate('min:6|max:60')
            ),
        ];
    }

    protected function changePassword(): User
    {
        $options = $this->getUserData();

        /**
         * @var User $user
         */
        $user = User::query()->where('username', $options['username'])->first();

        if (! $user) {
            $this->components->error('No user found with that username.');

            exit(1);
        }

        $user->update([
            'password' => $options['password'],
        ]);

        return $user;
    }

    protected function sendSuccessMessage(User $user): void
    {
        $this->components->info(sprintf(
            'Then password of %s has been changed. You can login at %s',
            $user->username,
            route('access.login')
        ));
    }
}