-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathUserModel.php
72 lines (59 loc) · 1.8 KB
/
UserModel.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
<?php
namespace Iris;
use AllowDynamicProperties;
#[AllowDynamicProperties]
final class Users extends RestEntry{
public function __construct($parent, $client=null, $namespace="")
{
if($parent) {
$this->parent = $parent;
parent::_init($this->parent->get_rest_client(), $this->parent->get_relative_namespace());
}
else {
parent::_init($client, $namespace="");
}
}
public function getList()
{
$out = [];
$url = sprintf('%s', 'users');
$data = parent::_get($url);
if(isset($data['Users']) && isset($data['Users']['User'])) {
$items = $data['Users']['User'];
if($this->is_assoc($items)) {
$items = [ $items ];
}
foreach($items as $item) {
$out[] = new User($this->parent->get_rest_client(), $item);
}
}
return $out;
}
}
#[AllowDynamicProperties]
final class User extends RestEntry {
use BaseModel;
protected $fields = [
"Username" => ["type" => "string"],
"FirstName" => ["type" => "string"],
"LastName" => ["type" => "string"],
"EmailAddress" => ["type" => "string"],
"TelephoneNumber" => ["type" => "string"],
"Roles" => ["type" => "\Iris\Roles"],
];
public function __construct($client=null, $data=[])
{
$this->set_data($data);
parent::_init($client, "users");
}
public function password($password)
{
$url = sprintf('%s/%s', $this->get_id(), 'password');
parent::put($url, 'Password', htmlspecialchars($password));
}
public function get_id() {
if(!isset($this->Username))
throw new \Exception("You should set Username");
return $this->Username;
}
}