forked from phacility/phabricator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPhabricatorProjectSilenceController.php
87 lines (74 loc) · 2.53 KB
/
PhabricatorProjectSilenceController.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
<?php
final class PhabricatorProjectSilenceController
extends PhabricatorProjectController {
public function handleRequest(AphrontRequest $request) {
$viewer = $request->getViewer();
$id = $request->getURIData('id');
$action = $request->getURIData('action');
$project = id(new PhabricatorProjectQuery())
->setViewer($viewer)
->withIDs(array($id))
->needMembers(true)
->executeOne();
if (!$project) {
return new Aphront404Response();
}
$edge_type = PhabricatorProjectSilencedEdgeType::EDGECONST;
$done_uri = "/project/members/{$id}/";
$viewer_phid = $viewer->getPHID();
if (!$project->isUserMember($viewer_phid)) {
return $this->newDialog()
->setTitle(pht('Not a Member'))
->appendParagraph(
pht(
'You are not a project member, so you do not receive mail sent '.
'to members of this project.'))
->addCancelButton($done_uri);
}
$silenced = PhabricatorEdgeQuery::loadDestinationPHIDs(
$project->getPHID(),
$edge_type);
$silenced = array_fuse($silenced);
$is_silenced = isset($silenced[$viewer_phid]);
if ($request->isDialogFormPost()) {
if ($is_silenced) {
$edge_action = '-';
} else {
$edge_action = '+';
}
$xactions = array();
$xactions[] = id(new PhabricatorProjectTransaction())
->setTransactionType(PhabricatorTransactions::TYPE_EDGE)
->setMetadataValue('edge:type', $edge_type)
->setNewValue(
array(
$edge_action => array($viewer_phid => $viewer_phid),
));
$editor = id(new PhabricatorProjectTransactionEditor())
->setActor($viewer)
->setContentSourceFromRequest($request)
->setContinueOnNoEffect(true)
->setContinueOnMissingFields(true)
->applyTransactions($project, $xactions);
return id(new AphrontRedirectResponse())->setURI($done_uri);
}
if ($is_silenced) {
$title = pht('Enable Mail');
$body = pht(
'When mail is sent to members of this project, you will receive a '.
'copy.');
$button = pht('Enable Project Mail');
} else {
$title = pht('Disable Mail');
$body = pht(
'When mail is sent to members of this project, you will no longer '.
'receive a copy.');
$button = pht('Disable Project Mail');
}
return $this->newDialog()
->setTitle($title)
->appendParagraph($body)
->addCancelButton($done_uri)
->addSubmitButton($button);
}
}