-
Notifications
You must be signed in to change notification settings - Fork 180
/
Copy pathAccount.php
236 lines (207 loc) · 4.26 KB
/
Account.php
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
<?php
namespace Kunnu\Dropbox\Models;
class Account extends BaseModel
{
/**
* Account ID
*
* @var string
*/
protected $account_id;
/**
* User name details
*
* @var array
*/
protected $name = [];
/**
* Account Email
*
* @var string
*/
protected $email;
/**
* Whether the user has verified their e-mail address
*
* @var boolean
*/
protected $email_verified = false;
/**
* Account Profile Pic URL
*
* @var string
*/
protected $profile_photo_url;
/**
* Whether the user has been disabled
*
* @var boolean
*/
protected $disabled = false;
/**
* User's two-letter country code
*
* @var string
*/
protected $country;
/**
* Language of User's account
*
* @var string
*/
protected $locale;
/**
* User's referral link
*
* @var string
*/
protected $referral_link;
/**
* Indicates whether a work account is linked
*
* @var boolean
*/
protected $is_paired = false;
/**
* User's account type
*
* @var string
*/
protected $account_type;
/**
* Create a new Account instance
*
* @param array $data
*/
public function __construct(array $data)
{
parent::__construct($data);
$this->account_id = $this->getDataProperty('account_id');
$this->name = (array) $this->getDataProperty('name');
$this->email = $this->getDataProperty('email');
$this->email_verified = $this->getDataProperty('email_verified');
$this->disabled = $this->getDataProperty('disabled');
$this->profile_photo_url = $this->getDataProperty('profile_photo_url');
$this->locale = $this->getDataProperty('locale');
$this->country = $this->getDataProperty('country');
$this->referral_link = $this->getDataProperty('referral_link');
$this->is_paired = $this->getDataProperty('is_paired');
//Account Type
$account_type = $this->getDataProperty('account_type');
if (is_array($account_type) && !empty($account_type)) {
$this->account_type = $account_type['.tag'];
}
}
/**
* Get Account ID
*
* @return string
*/
public function getAccountId()
{
return $this->account_id;
}
/**
* Get Account User's Name Details
*
* @return array
*/
public function getNameDetails()
{
return $this->name;
}
/**
* Get Display name
*
* @return string
*/
public function getDisplayName()
{
$name = $this->name;
if (isset($name['display_name'])) {
return $name['display_name'];
}
return "";
}
/**
* Get Account Email
*
* @return string
*/
public function getEmail()
{
return $this->email;
}
/**
* Whether account email is verified
*
* @return boolean
*/
public function emailIsVerified()
{
return $this->email_verified ? true : false;
}
/**
* Get Profile Pic URL
*
* @return string
*/
public function getProfilePhotoUrl()
{
return $this->profile_photo_url;
}
/**
* Whether acocunt has been disabled
*
* @return boolean
*/
public function isDisabled()
{
return $this->disabled ? true : false;
}
/**
* Get User's two-lettered country code
*
* @return string
*/
public function getCountry()
{
return $this->country;
}
/**
* Get account language
*
* @return string
*/
public function getLocale()
{
return $this->locale;
}
/**
* Get user's referral link
*
* @return string
*/
public function getReferralLink()
{
return $this->referral_link;
}
/**
* Whether work account is paired
*
* @return boolean
*/
public function isPaired()
{
return $this->is_paired ? true : false;
}
/**
* Get Account Type
*
* @return string
*/
public function getAccountType()
{
return $this->account_type;
}
}