forked from phacility/phabricator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPhabricatorRepositoryPullEvent.php
164 lines (135 loc) · 4.26 KB
/
PhabricatorRepositoryPullEvent.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
<?php
final class PhabricatorRepositoryPullEvent
extends PhabricatorRepositoryDAO
implements PhabricatorPolicyInterface {
protected $repositoryPHID;
protected $epoch;
protected $pullerPHID;
protected $remoteAddress;
protected $remoteProtocol;
protected $resultType;
protected $resultCode;
protected $properties;
private $repository = self::ATTACHABLE;
const RESULT_PULL = 'pull';
const RESULT_ERROR = 'error';
const RESULT_EXCEPTION = 'exception';
const PROTOCOL_HTTP = 'http';
const PROTOCOL_HTTPS = 'https';
const PROTOCOL_SSH = 'ssh';
public static function initializeNewEvent(PhabricatorUser $viewer) {
return id(new PhabricatorRepositoryPushEvent())
->setPusherPHID($viewer->getPHID());
}
protected function getConfiguration() {
return array(
self::CONFIG_AUX_PHID => true,
self::CONFIG_TIMESTAMPS => false,
self::CONFIG_SERIALIZATION => array(
'properties' => self::SERIALIZATION_JSON,
),
self::CONFIG_COLUMN_SCHEMA => array(
'repositoryPHID' => 'phid?',
'pullerPHID' => 'phid?',
'remoteAddress' => 'ipaddress?',
'remoteProtocol' => 'text32?',
'resultType' => 'text32',
'resultCode' => 'uint32',
),
self::CONFIG_KEY_SCHEMA => array(
'key_repository' => array(
'columns' => array('repositoryPHID'),
),
'key_epoch' => array(
'columns' => array('epoch'),
),
),
) + parent::getConfiguration();
}
public function generatePHID() {
return PhabricatorPHID::generateNewPHID(
PhabricatorRepositoryPullEventPHIDType::TYPECONST);
}
public function attachRepository(PhabricatorRepository $repository = null) {
$this->repository = $repository;
return $this;
}
public function getRepository() {
return $this->assertAttached($this->repository);
}
public function getRemoteProtocolDisplayName() {
$map = array(
self::PROTOCOL_SSH => pht('SSH'),
self::PROTOCOL_HTTP => pht('HTTP'),
self::PROTOCOL_HTTPS => pht('HTTPS'),
);
$protocol = $this->getRemoteProtocol();
return idx($map, $protocol, $protocol);
}
public function newResultIcon() {
$icon = new PHUIIconView();
$type = $this->getResultType();
$code = $this->getResultCode();
$protocol = $this->getRemoteProtocol();
$is_any_http =
($protocol === self::PROTOCOL_HTTP) ||
($protocol === self::PROTOCOL_HTTPS);
// If this was an HTTP request and we responded with a 401, that means
// the user didn't provide credentials. This is technically an error, but
// it's routine and just causes the client to prompt them. Show a more
// comforting icon and description in the UI.
if ($is_any_http) {
if ($code == 401) {
return $icon
->setIcon('fa-key blue')
->setTooltip(pht('Authentication Required'));
}
}
switch ($type) {
case self::RESULT_ERROR:
$icon
->setIcon('fa-times red')
->setTooltip(pht('Error'));
break;
case self::RESULT_EXCEPTION:
$icon
->setIcon('fa-exclamation-triangle red')
->setTooltip(pht('Exception'));
break;
case self::RESULT_PULL:
$icon
->setIcon('fa-download green')
->setTooltip(pht('Pull'));
break;
default:
$icon
->setIcon('fa-question indigo')
->setTooltip(pht('Unknown ("%s")', $type));
break;
}
return $icon;
}
/* -( PhabricatorPolicyInterface )----------------------------------------- */
public function getCapabilities() {
return array(
PhabricatorPolicyCapability::CAN_VIEW,
);
}
public function getPolicy($capability) {
if ($this->getRepository()) {
return $this->getRepository()->getPolicy($capability);
}
return PhabricatorPolicies::POLICY_ADMIN;
}
public function hasAutomaticCapability($capability, PhabricatorUser $viewer) {
if (!$this->getRepository()) {
return false;
}
return $this->getRepository()->hasAutomaticCapability($capability, $viewer);
}
public function describeAutomaticCapability($capability) {
return pht(
"A repository's pull events are visible to users who can see the ".
"repository.");
}
}