aboutsummaryrefslogtreecommitdiff
path: root/src/CamilStaps/BotleaguesApi/Database/PasswordReminder.php
blob: 65c47734c49f2d7ed1b3f18bb5e400327e014a65 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
/**
 * Created by PhpStorm.
 * User: camilstaps
 * Date: 13-5-15
 * Time: 13:12
 */

namespace CamilStaps\BotleaguesApi\Database;

use Illuminate\Support\Facades\Mail;

class PasswordReminder extends Model {

    protected $table = 'password_reminders';
    protected $hidden = ['token'];
    protected $fillable = ['userId', 'token', 'valid_till'];

    /**
     * Override the parent's save() function to automatically update the valid_till timestamp, and send an email
     */
    public function save(array $options = array()) {
        $this->valid_till = date("Y-m-d H:i:s", time() + 3600);

        $user = User::findOrFail($this->userId);
        Mail::send('botleagues-api::emails.auth.reminder', ['token' => $this->token], function($message) use ($user) {
            $message->to($user->email, "User " . $user->id);
        });

        return parent::save($options);
    }

    /**
     * Disable updated_at timestamp
     */
    public function setUpdatedAtAttribute($value) {}

}