1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
class DeploynautAPIFormatter { |
|
|
|
|
4
|
|
|
|
5
|
|
|
/** |
6
|
|
|
* This is a per request cache of $project()->listMembers() |
7
|
|
|
* @var null|array |
8
|
|
|
*/ |
9
|
|
|
private static $_cache_project_members = null; |
10
|
|
|
|
11
|
|
|
/** |
12
|
|
|
* This is a per request cache of $environment->CurrentBuild(); |
13
|
|
|
* @var null|DNDeployment |
14
|
|
|
*/ |
15
|
|
|
private static $_cache_current_build = null; |
16
|
|
|
|
17
|
|
|
/** |
18
|
|
|
* Return data about a single deployment for use in API response. |
19
|
|
|
* @param DNDeployment $deployment |
20
|
|
|
* @return array |
21
|
|
|
*/ |
22
|
|
|
public function getDeploymentData(DNDeployment $deployment) { |
23
|
|
|
if (empty(self::$_cache_current_build[$deployment->EnvironmentID])) { |
24
|
|
|
self::$_cache_current_build[$deployment->EnvironmentID] = $deployment->Environment()->CurrentBuild(); |
25
|
|
|
} |
26
|
|
|
|
27
|
|
|
$environment = $deployment->Environment(); |
28
|
|
|
$project = $environment->Project(); |
29
|
|
|
|
30
|
|
|
$deployer = $deployment->Deployer(); |
31
|
|
|
$deployerData = null; |
32
|
|
|
if ($deployer && $deployer->exists()) { |
33
|
|
|
$deployerData = $this->getStackMemberData($project, $deployer); |
34
|
|
|
} |
35
|
|
|
$approver = $deployment->Approver(); |
|
|
|
|
36
|
|
|
$approverData = null; |
37
|
|
|
if ($approver && $approver->exists()) { |
38
|
|
|
$approverData = $this->getStackMemberData($project, $approver); |
39
|
|
|
} |
40
|
|
|
|
41
|
|
|
// failover for older deployments |
42
|
|
|
$started = $deployment->Created; |
43
|
|
|
$startedNice = $deployment->obj('Created')->Nice(); |
44
|
|
|
if($deployment->DeployStarted) { |
45
|
|
|
$started = $deployment->DeployStarted; |
46
|
|
|
$startedNice = $deployment->obj('DeployStarted')->Nice(); |
47
|
|
|
} |
48
|
|
|
|
49
|
|
|
$isCurrentBuild = self::$_cache_current_build[$deployment->EnvironmentID] |
50
|
|
|
? ($deployment->ID === self::$_cache_current_build[$deployment->EnvironmentID]->ID) |
51
|
|
|
: false; |
52
|
|
|
|
53
|
|
|
return [ |
54
|
|
|
'id' => $deployment->ID, |
55
|
|
|
'date_created' => $deployment->Created, |
56
|
|
|
'date_created_nice' => $deployment->obj('Created')->Nice(), |
57
|
|
|
'date_started' => $started, |
58
|
|
|
'date_started_nice' => $startedNice, |
59
|
|
|
'date_requested' => $deployment->DeployRequested, |
60
|
|
|
'date_requested_nice' => $deployment->obj('DeployRequested')->Nice(), |
61
|
|
|
'date_updated' => $deployment->LastEdited, |
62
|
|
|
'date_updated_nice' => $deployment->obj('LastEdited')->Nice(), |
63
|
|
|
'summary' => $deployment->Summary, |
|
|
|
|
64
|
|
|
'branch' => $deployment->Branch, |
|
|
|
|
65
|
|
|
'tags' => $deployment->getTags()->toArray(), |
66
|
|
|
'changes' => $deployment->getDeploymentStrategy()->getChanges(), |
67
|
|
|
'sha' => $deployment->SHA, |
68
|
|
|
'short_sha' => substr($deployment->SHA, 0, 7), |
69
|
|
|
'ref_type' => $deployment->RefType, |
70
|
|
|
'commit_message' => $deployment->getCommitMessage(), |
71
|
|
|
'commit_url' => $deployment->getCommitURL(), |
72
|
|
|
'deployer' => $deployerData, |
73
|
|
|
'approver' => $approverData, |
74
|
|
|
'state' => $deployment->State, |
75
|
|
|
'is_current_build' => $isCurrentBuild |
76
|
|
|
]; |
77
|
|
|
} |
78
|
|
|
|
79
|
|
|
/** |
80
|
|
|
* Return data about a particular {@link Member} of the stack for use in API response. |
81
|
|
|
* Note that role can be null in the response. This is the case of an admin, or an operations |
82
|
|
|
* user who can create the deployment but is not part of the stack roles. |
83
|
|
|
* |
84
|
|
|
* @param DNProject $project |
85
|
|
|
* @param Member $member |
86
|
|
|
* @return array |
87
|
|
|
*/ |
88
|
|
|
public function getStackMemberData(DNProject $project, Member $member) { |
89
|
|
|
if (empty(self::$_cache_project_members[$project->ID])) { |
90
|
|
|
self::$_cache_project_members[$project->ID] = $project->listMembers(); |
|
|
|
|
91
|
|
|
} |
92
|
|
|
|
93
|
|
|
$role = null; |
94
|
|
|
foreach (self::$_cache_project_members[$project->ID] as $stackMember) { |
95
|
|
|
if ($stackMember['MemberID'] !== $member->ID) { |
96
|
|
|
continue; |
97
|
|
|
} |
98
|
|
|
$role = $stackMember['RoleTitle']; |
99
|
|
|
} |
100
|
|
|
|
101
|
|
|
return [ |
102
|
|
|
'id' => $member->ID, |
103
|
|
|
'email' => $member->Email, |
104
|
|
|
'role' => $role, |
105
|
|
|
'name' => $member->getName() |
106
|
|
|
]; |
107
|
|
|
} |
108
|
|
|
|
109
|
|
|
} |
110
|
|
|
|
This check marks property names that have not been written in camelCase.
In camelCase names are written without any punctuation, the start of each new word being marked by a capital letter. Thus the name database connection string becomes
databaseConnectionString
.