mirror of
				https://github.com/brunofontes/shareit.git
				synced 2025-11-03 19:21:03 -03:00 
			
		
		
		
	As the project is still alpha, I just want to know if someone subscribed at it using a dummy e-mail address.
		
			
				
	
	
		
			88 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Http\Controllers\Auth;
 | 
						|
 | 
						|
use App\User;
 | 
						|
use App\Mail\Welcome;
 | 
						|
use App\Http\Controllers\Controller;
 | 
						|
use Illuminate\Support\Facades\Hash;
 | 
						|
use Illuminate\Support\Facades\Validator;
 | 
						|
use Illuminate\Foundation\Auth\RegistersUsers;
 | 
						|
use App\FlashMessage;
 | 
						|
use Mail;
 | 
						|
 | 
						|
class RegisterController extends Controller
 | 
						|
{
 | 
						|
    /*
 | 
						|
    |--------------------------------------------------------------------------
 | 
						|
    | Register Controller
 | 
						|
    |--------------------------------------------------------------------------
 | 
						|
    |
 | 
						|
    | This controller handles the registration of new users as well as their
 | 
						|
    | validation and creation. By default this controller uses a trait to
 | 
						|
    | provide this functionality without requiring any additional code.
 | 
						|
    |
 | 
						|
    */
 | 
						|
 | 
						|
    use RegistersUsers;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Where to redirect users after registration.
 | 
						|
     *
 | 
						|
     * @var string
 | 
						|
     */
 | 
						|
    protected $redirectTo = '/home';
 | 
						|
 | 
						|
    /**
 | 
						|
     * Create a new controller instance.
 | 
						|
     *
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function __construct()
 | 
						|
    {
 | 
						|
        $this->middleware('guest');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Get a validator for an incoming registration request.
 | 
						|
     *
 | 
						|
     * @param  array  $data
 | 
						|
     * @return \Illuminate\Contracts\Validation\Validator
 | 
						|
     */
 | 
						|
    protected function validator(array $data)
 | 
						|
    {
 | 
						|
        return Validator::make($data, [
 | 
						|
            'name' => 'required|string|max:255',
 | 
						|
            'email' => 'required|string|email|max:255|unique:users',
 | 
						|
            'password' => 'required|string|min:6|confirmed',
 | 
						|
        ]);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Create a new user instance after a valid registration.
 | 
						|
     *
 | 
						|
     * @param  array  $data
 | 
						|
     * @return \App\User
 | 
						|
     */
 | 
						|
    protected function create(array $data)
 | 
						|
    {
 | 
						|
        $user = User::create([
 | 
						|
            'name' => $data['name'],
 | 
						|
            'email' => $data['email'],
 | 
						|
            'password' => Hash::make($data['password']),
 | 
						|
        ]);
 | 
						|
 | 
						|
        Mail::to($user)->send(new Welcome($user));
 | 
						|
 | 
						|
        $text = "Share it! New user: {$user->name} ($user->email)";
 | 
						|
        Mail::raw($text, function ($message) use ($text) {
 | 
						|
            $message->to('brunofontes.shareit@mailnull.com');
 | 
						|
            $message->subject($text);
 | 
						|
        });
 | 
						|
 | 
						|
        session()->flash(FlashMessage::PRIMARY, __('Thanks for registering. Please, do not forget to validate your e-mail address.'));
 | 
						|
 | 
						|
        return $user;
 | 
						|
    }
 | 
						|
}
 |