aboutsummaryrefslogtreecommitdiffhomepage
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/Http/Controllers/Auth/RegisterController.php45
-rw-r--r--app/Jobs/SendVerificationEmail.php39
-rw-r--r--app/Mail/EmailVerification.php36
-rw-r--r--app/User.php2
4 files changed, 116 insertions, 6 deletions
diff --git a/app/Http/Controllers/Auth/RegisterController.php b/app/Http/Controllers/Auth/RegisterController.php
index f922f9f..2994499 100644
--- a/app/Http/Controllers/Auth/RegisterController.php
+++ b/app/Http/Controllers/Auth/RegisterController.php
@@ -2,11 +2,14 @@
namespace App\Http\Controllers\Auth;
-use App\User;
use App\Http\Controllers\Controller;
+use App\Jobs\SendVerificationEmail;
+use App\User;
+use Illuminate\Auth\Events\Registered;
+use Illuminate\Foundation\Auth\RegistersUsers;
+use Illuminate\Http\Request;
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Facades\Validator;
-use Illuminate\Foundation\Auth\RegistersUsers;
class RegisterController extends Controller
{
@@ -19,7 +22,7 @@ class RegisterController extends Controller
| validation and creation. By default this controller uses a trait to
| provide this functionality without requiring any additional code.
|
- */
+ */
use RegistersUsers;
@@ -64,7 +67,7 @@ class RegisterController extends Controller
protected function create(array $data)
{
$hashedPassword = Hash::make($data['password']);
- $previousHash = User::select('hash')->orderBy('id','desc')->first()->hash;
+ $previousHash = User::select('hash')->orderBy('id', 'desc')->first()->hash;
$summedHash = Hash::make($previousHash . $data['name'] . $data['email'] . 'password' . $hashedPassword); // Hash::check to verify
return User::create([
@@ -72,7 +75,39 @@ class RegisterController extends Controller
'email' => $data['email'],
'password' => $hashedPassword,
'prevHash' => $previousHash,
- 'hash' => $summedHash
+ 'hash' => $summedHash,
+ 'email_token' => base64_encode($data['email']),
]);
}
+
+ /**
+ * Handle a registration request for the application.
+ *
+ * @param \Illuminate\Http\Request $request
+ * @return \Illuminate\Http\Response
+ */
+
+ public function register(Request $request)
+ {
+ $this->validator($request->all())->validate();
+ event(new Registered($user = $this->create($request->all())));
+ dispatch(new SendVerificationEmail($user));
+ return view('confirmEmail');
+ }
+
+ /**
+ * Handle a registration request for the application.
+ *
+ * @param $token
+ * @return \Illuminate\Http\Response
+ */
+ public function verifyEmail($token)
+ {
+ $user = User::where('email_token', $token)->first();
+ $user->verified = 1;
+ if ($user->save()) {
+ return view('verificationSuccess', ['user' => $user]);
+ }
+ }
+
}
diff --git a/app/Jobs/SendVerificationEmail.php b/app/Jobs/SendVerificationEmail.php
new file mode 100644
index 0000000..0a71f05
--- /dev/null
+++ b/app/Jobs/SendVerificationEmail.php
@@ -0,0 +1,39 @@
+<?php
+
+namespace App\Jobs;
+
+use App\Mail\EmailVerification;
+use Illuminate\Bus\Queueable;
+use Illuminate\Contracts\Queue\ShouldQueue;
+use Illuminate\Foundation\Bus\Dispatchable;
+use Illuminate\Queue\InteractsWithQueue;
+use Illuminate\Queue\SerializesModels;
+use Mail;
+
+class SendVerificationEmail implements ShouldQueue
+{
+ use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
+
+ protected $user;
+
+ /**
+ * Create a new job instance.
+ *
+ * @return void
+ */
+ public function __construct($user)
+ {
+ $this->user = $user;
+ }
+
+ /**
+ * Execute the job.
+ *
+ * @return void
+ */
+ public function handle()
+ {
+ $email = new EmailVerification($this->user);
+ Mail::to($this->user->email)->send($email);
+ }
+}
diff --git a/app/Mail/EmailVerification.php b/app/Mail/EmailVerification.php
new file mode 100644
index 0000000..4f393ac
--- /dev/null
+++ b/app/Mail/EmailVerification.php
@@ -0,0 +1,36 @@
+<?php
+
+namespace App\Mail;
+
+use Illuminate\Bus\Queueable;
+use Illuminate\Mail\Mailable;
+use Illuminate\Queue\SerializesModels;
+
+class EmailVerification extends Mailable
+{
+ use Queueable, SerializesModels;
+
+ protected $user;
+
+ /**
+ * Create a new message instance.
+ *
+ * @return void
+ */
+ public function __construct($user)
+ {
+ $this->user = $user;
+ }
+
+ /**
+ * Build the message.
+ *
+ * @return $this
+ */
+ public function build()
+ {
+ return $this->view('email.verify')->with([
+ 'email_token' => $this->user->email_token,
+ ]);
+ }
+}
diff --git a/app/User.php b/app/User.php
index f263c47..9dcf98e 100644
--- a/app/User.php
+++ b/app/User.php
@@ -13,7 +13,7 @@ class User extends Authenticatable
* @var array
*/
protected $fillable = [
- 'name', 'email', 'password', 'prevHash', 'hash',
+ 'name', 'email', 'password', 'prevHash', 'hash', 'email_token'
];
/**