|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Helix\Asana; |
|
4
|
|
|
|
|
5
|
|
|
use Helix\Asana\Base\AbstractEntity; |
|
6
|
|
|
use Helix\Asana\Base\AbstractEntity\ImmutableInterface; |
|
7
|
|
|
|
|
8
|
|
|
/** |
|
9
|
|
|
* A team. |
|
10
|
|
|
* |
|
11
|
|
|
* @immutable Teams cannot be altered via the API. |
|
12
|
|
|
* |
|
13
|
|
|
* @see https://developers.asana.com/docs/asana-teams |
|
14
|
|
|
* @see https://developers.asana.com/docs/team |
|
15
|
|
|
* |
|
16
|
|
|
* @method string getDescription () |
|
17
|
|
|
* @method string getName () |
|
18
|
|
|
* @method Workspace getOrganization () |
|
19
|
|
|
*/ |
|
20
|
|
|
class Team extends AbstractEntity implements ImmutableInterface { |
|
21
|
|
|
|
|
22
|
|
|
const DIR = 'teams'; |
|
23
|
|
|
const TYPE = 'team'; |
|
24
|
|
|
|
|
25
|
|
|
protected const MAP = [ |
|
26
|
|
|
'organization' => Workspace::class |
|
27
|
|
|
]; |
|
28
|
|
|
|
|
29
|
|
|
/** |
|
30
|
|
|
* @param User $user |
|
31
|
|
|
* @return $this |
|
32
|
|
|
*/ |
|
33
|
|
|
public function addUser (User $user) { |
|
34
|
|
|
$this->api->post("{$this}/addUser", ['user' => $user->getGid()]); |
|
35
|
|
|
return $this; |
|
36
|
|
|
} |
|
37
|
|
|
|
|
38
|
|
|
/** |
|
39
|
|
|
* The team's projects. |
|
40
|
|
|
* |
|
41
|
|
|
* @see https://developers.asana.com/docs/get-a-teams-projects |
|
42
|
|
|
* |
|
43
|
|
|
* @param array $filter |
|
44
|
|
|
* @return Project[] |
|
45
|
|
|
*/ |
|
46
|
|
|
public function getProjects (array $filter = Project::GET_ACTIVE) { |
|
47
|
|
|
return $this->api->loadAll($this, Project::class, "{$this}/projects", $filter); |
|
48
|
|
|
} |
|
49
|
|
|
|
|
50
|
|
|
/** |
|
51
|
|
|
* @return string |
|
52
|
|
|
*/ |
|
53
|
|
|
final public function getUrl (): string { |
|
54
|
|
|
return "https://app.asana.com/0/{$this->getGid()}/overview"; |
|
55
|
|
|
} |
|
56
|
|
|
|
|
57
|
|
|
/** |
|
58
|
|
|
* The team's users. |
|
59
|
|
|
* |
|
60
|
|
|
* @see https://developers.asana.com/docs/get-users-in-a-team |
|
61
|
|
|
* |
|
62
|
|
|
* @return User[] |
|
63
|
|
|
*/ |
|
64
|
|
|
public function getUsers () { |
|
65
|
|
|
return $this->api->loadAll($this, User::class, "{$this}/users"); |
|
66
|
|
|
} |
|
67
|
|
|
|
|
68
|
|
|
/** |
|
69
|
|
|
* Factory. |
|
70
|
|
|
* |
|
71
|
|
|
* @return Project |
|
72
|
|
|
*/ |
|
73
|
|
|
public function newProject () { |
|
74
|
|
|
/** @var Project $project */ |
|
75
|
|
|
$project = $this->api->factory($this, Project::class, [ |
|
76
|
|
|
'workspace' => $this->getOrganization() |
|
77
|
|
|
]); |
|
78
|
|
|
return $project->setTeam($this); |
|
79
|
|
|
} |
|
80
|
|
|
|
|
81
|
|
|
/** |
|
82
|
|
|
* @param User $user |
|
83
|
|
|
* @return $this |
|
84
|
|
|
*/ |
|
85
|
|
|
public function removeUser (User $user) { |
|
86
|
|
|
$this->api->post("{$this}/removeUser", ['user' => $user->getGid()]); |
|
87
|
|
|
return $this; |
|
88
|
|
|
} |
|
89
|
|
|
} |