UserSuspend.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php
  2. namespace App\Console\Commands;
  3. use Illuminate\Console\Command;
  4. use App\User;
  5. class UserSuspend extends Command
  6. {
  7. /**
  8. * The name and signature of the console command.
  9. *
  10. * @var string
  11. */
  12. protected $signature = 'user:suspend {id}';
  13. /**
  14. * The console command description.
  15. *
  16. * @var string
  17. */
  18. protected $description = 'Suspend a local user.';
  19. /**
  20. * Create a new command instance.
  21. *
  22. * @return void
  23. */
  24. public function __construct()
  25. {
  26. parent::__construct();
  27. }
  28. /**
  29. * Execute the console command.
  30. *
  31. * @return mixed
  32. */
  33. public function handle()
  34. {
  35. $id = $this->argument('id');
  36. if(ctype_digit($id) == true) {
  37. $user = User::find($id);
  38. } else {
  39. $user = User::whereUsername($id)->first();
  40. }
  41. if(!$user) {
  42. $this->error('Could not find any user with that username or id.');
  43. exit;
  44. }
  45. $this->info('Found user, username: ' . $user->username);
  46. if($this->confirm('Are you sure you want to suspend this user?')) {
  47. $profile = $user->profile;
  48. $user->status = $profile->status = 'suspended';
  49. $user->save();
  50. $profile->save();
  51. $this->info('User account has been suspended.');
  52. }
  53. }
  54. }