Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93521314
PhabricatorProjectLockController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 29, 10:26
Size
2 KB
Mime Type
text/x-php
Expires
Sun, Dec 1, 10:26 (2 d)
Engine
blob
Format
Raw Data
Handle
22657097
Attached To
rPH Phabricator
PhabricatorProjectLockController.php
View Options
<?php
final
class
PhabricatorProjectLockController
extends
PhabricatorProjectController
{
public
function
shouldAllowPublic
()
{
return
true
;
}
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$request
->
getViewer
();
$this
->
requireApplicationCapability
(
ProjectCanLockProjectsCapability
::
CAPABILITY
);
$id
=
$request
->
getURIData
(
'id'
);
$project
=
id
(
new
PhabricatorProjectQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$id
))
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
executeOne
();
if
(!
$project
)
{
return
new
Aphront404Response
();
}
$done_uri
=
"/project/members/{$id}/"
;
if
(!
$project
->
supportsEditMembers
())
{
return
$this
->
newDialog
()
->
setTitle
(
pht
(
'Membership Immutable'
))
->
appendChild
(
pht
(
'This project does not support editing membership.'
))
->
addCancelButton
(
$done_uri
);
}
$is_locked
=
$project
->
getIsMembershipLocked
();
if
(
$request
->
isFormPost
())
{
$xactions
=
array
();
if
(
$is_locked
)
{
$new_value
=
0
;
}
else
{
$new_value
=
1
;
}
$xactions
[]
=
id
(
new
PhabricatorProjectTransaction
())
->
setTransactionType
(
PhabricatorProjectTransaction
::
TYPE_LOCKED
)
->
setNewValue
(
$new_value
);
$editor
=
id
(
new
PhabricatorProjectTransactionEditor
())
->
setActor
(
$viewer
)
->
setContentSourceFromRequest
(
$request
)
->
setContinueOnNoEffect
(
true
)
->
setContinueOnMissingFields
(
true
)
->
applyTransactions
(
$project
,
$xactions
);
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
$done_uri
);
}
if
(
$project
->
getIsMembershipLocked
())
{
$title
=
pht
(
'Unlock Project'
);
$body
=
pht
(
'If you unlock this project, members will be free to leave.'
);
$button
=
pht
(
'Unlock Project'
);
}
else
{
$title
=
pht
(
'Lock Project'
);
$body
=
pht
(
'If you lock this project, members will be prevented from '
.
'leaving it.'
);
$button
=
pht
(
'Lock Project'
);
}
return
$this
->
newDialog
()
->
setTitle
(
$title
)
->
appendParagraph
(
$body
)
->
addSubmitbutton
(
$button
)
->
addCancelButton
(
$done_uri
);
}
}
Event Timeline
Log In to Comment