-
Notifications
You must be signed in to change notification settings - Fork 691
Expand file tree
/
Copy pathCraftIdToken.php
More file actions
81 lines (68 loc) Β· 1.41 KB
/
CraftIdToken.php
File metadata and controls
81 lines (68 loc) Β· 1.41 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license https://craftcms.github.io/license/
*/
namespace craft\models;
use craft\base\Model;
use DateTime;
/**
* Class CraftIdToken model.
*
* @author Pixel & Tonic, Inc. <support@pixelandtonic.com>
* @since 3.0.0
*/
class CraftIdToken extends Model
{
/**
* @var int|null
*/
public ?int $id = null;
/**
* @var int|null
*/
public ?int $userId = null;
/**
* @var string|null
*/
public ?string $accessToken = null;
/**
* @var DateTime|null
*/
public ?DateTime $expiryDate = null;
/**
* @var DateTime|null
*/
public ?DateTime $dateCreated = null;
/**
* @var DateTime|null
*/
public ?DateTime $dateUpdated = null;
/**
* @var string|null
*/
public ?string $uid = null;
/**
* Has token expired.
*
* @return bool
*/
public function hasExpired(): bool
{
$now = new DateTime();
$expiryDate = $this->expiryDate;
return $now->getTimestamp() > $expiryDate->getTimestamp();
}
/**
* Remaining seconds before token expiry.
*
* @return int
*/
public function getRemainingSeconds(): int
{
$now = new DateTime();
$expiryDate = $this->expiryDate;
return $expiryDate->getTimestamp() - $now->getTimestamp();
}
}