Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96116266
PhabricatorProjectEditDetailsController.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
Sun, Dec 22, 19:07
Size
6 KB
Mime Type
text/x-php
Expires
Tue, Dec 24, 19:07 (1 d, 18 h)
Engine
blob
Format
Raw Data
Handle
23125768
Attached To
rPH Phabricator
PhabricatorProjectEditDetailsController.php
View Options
<?php
final
class
PhabricatorProjectEditDetailsController
extends
PhabricatorProjectController
{
private
$id
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
id
=
$data
[
'id'
];
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$viewer
=
$request
->
getUser
();
$project
=
id
(
new
PhabricatorProjectQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$this
->
id
))
->
needSlugs
(
true
)
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
executeOne
();
if
(!
$project
)
{
return
new
Aphront404Response
();
}
$field_list
=
PhabricatorCustomField
::
getObjectFields
(
$project
,
PhabricatorCustomField
::
ROLE_EDIT
);
$field_list
->
setViewer
(
$viewer
)
->
readFieldsFromStorage
(
$project
);
$view_uri
=
$this
->
getApplicationURI
(
'view/'
.
$project
->
getID
().
'/'
);
$edit_uri
=
$this
->
getApplicationURI
(
'edit/'
.
$project
->
getID
().
'/'
);
$e_name
=
true
;
$e_slugs
=
false
;
$e_edit
=
null
;
$v_name
=
$project
->
getName
();
$project_slugs
=
$project
->
getSlugs
();
$project_slugs
=
mpull
(
$project_slugs
,
'getSlug'
,
'getSlug'
);
$v_primary_slug
=
$project
->
getPrimarySlug
();
unset
(
$project_slugs
[
$v_primary_slug
]);
$v_slugs
=
$project_slugs
;
$validation_exception
=
null
;
if
(
$request
->
isFormPost
())
{
$e_name
=
null
;
$e_slugs
=
null
;
$v_name
=
$request
->
getStr
(
'name'
);
$v_slugs
=
$request
->
getStrList
(
'slugs'
);
$v_view
=
$request
->
getStr
(
'can_view'
);
$v_edit
=
$request
->
getStr
(
'can_edit'
);
$v_join
=
$request
->
getStr
(
'can_join'
);
$xactions
=
$field_list
->
buildFieldTransactionsFromRequest
(
new
PhabricatorProjectTransaction
(),
$request
);
$type_name
=
PhabricatorProjectTransaction
::
TYPE_NAME
;
$type_slugs
=
PhabricatorProjectTransaction
::
TYPE_SLUGS
;
$type_edit
=
PhabricatorTransactions
::
TYPE_EDIT_POLICY
;
$xactions
[]
=
id
(
new
PhabricatorProjectTransaction
())
->
setTransactionType
(
$type_name
)
->
setNewValue
(
$v_name
);
$xactions
[]
=
id
(
new
PhabricatorProjectTransaction
())
->
setTransactionType
(
$type_slugs
)
->
setNewValue
(
$v_slugs
);
$xactions
[]
=
id
(
new
PhabricatorProjectTransaction
())
->
setTransactionType
(
PhabricatorTransactions
::
TYPE_VIEW_POLICY
)
->
setNewValue
(
$v_view
);
$xactions
[]
=
id
(
new
PhabricatorProjectTransaction
())
->
setTransactionType
(
$type_edit
)
->
setNewValue
(
$v_edit
);
$xactions
[]
=
id
(
new
PhabricatorProjectTransaction
())
->
setTransactionType
(
PhabricatorTransactions
::
TYPE_JOIN_POLICY
)
->
setNewValue
(
$v_join
);
$editor
=
id
(
new
PhabricatorProjectTransactionEditor
())
->
setActor
(
$viewer
)
->
setContentSourceFromRequest
(
$request
)
->
setContinueOnNoEffect
(
true
);
try
{
$editor
->
applyTransactions
(
$project
,
$xactions
);
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
$edit_uri
);
}
catch
(
PhabricatorApplicationTransactionValidationException
$ex
)
{
$validation_exception
=
$ex
;
$e_name
=
$ex
->
getShortMessage
(
$type_name
);
$e_slugs
=
$ex
->
getShortMessage
(
$type_slugs
);
$e_edit
=
$ex
->
getShortMessage
(
$type_edit
);
$project
->
setViewPolicy
(
$v_view
);
$project
->
setEditPolicy
(
$v_edit
);
$project
->
setJoinPolicy
(
$v_join
);
}
}
$header_name
=
pht
(
'Edit Project'
);
$title
=
pht
(
'Edit Project'
);
$policies
=
id
(
new
PhabricatorPolicyQuery
())
->
setViewer
(
$viewer
)
->
setObject
(
$project
)
->
execute
();
$v_slugs
=
implode
(
', '
,
$v_slugs
);
$form
=
new
AphrontFormView
();
$form
->
setUser
(
$viewer
)
->
appendChild
(
id
(
new
AphrontFormTextControl
())
->
setLabel
(
pht
(
'Name'
))
->
setName
(
'name'
)
->
setValue
(
$v_name
)
->
setError
(
$e_name
));
$field_list
->
appendFieldsToForm
(
$form
);
$form
->
appendChild
(
id
(
new
AphrontFormStaticControl
())
->
setLabel
(
pht
(
'Primary Hashtag'
))
->
setCaption
(
pht
(
'The primary hashtag is derived from the name.'
))
->
setValue
(
$v_primary_slug
))
->
appendChild
(
id
(
new
AphrontFormTextControl
())
->
setLabel
(
pht
(
'Additional Hashtags'
))
->
setCaption
(
pht
(
'Specify a comma-separated list of additional hashtags.'
))
->
setName
(
'slugs'
)
->
setValue
(
$v_slugs
)
->
setError
(
$e_slugs
))
->
appendChild
(
id
(
new
AphrontFormPolicyControl
())
->
setUser
(
$viewer
)
->
setName
(
'can_view'
)
->
setPolicyObject
(
$project
)
->
setPolicies
(
$policies
)
->
setCapability
(
PhabricatorPolicyCapability
::
CAN_VIEW
))
->
appendChild
(
id
(
new
AphrontFormPolicyControl
())
->
setUser
(
$viewer
)
->
setName
(
'can_edit'
)
->
setPolicyObject
(
$project
)
->
setPolicies
(
$policies
)
->
setCapability
(
PhabricatorPolicyCapability
::
CAN_EDIT
)
->
setError
(
$e_edit
))
->
appendChild
(
id
(
new
AphrontFormPolicyControl
())
->
setUser
(
$viewer
)
->
setName
(
'can_join'
)
->
setCaption
(
pht
(
'Users who can edit a project can always join a project.'
))
->
setPolicyObject
(
$project
)
->
setPolicies
(
$policies
)
->
setCapability
(
PhabricatorPolicyCapability
::
CAN_JOIN
))
->
appendChild
(
id
(
new
AphrontFormSubmitControl
())
->
addCancelButton
(
$edit_uri
)
->
setValue
(
pht
(
'Save'
)));
$form_box
=
id
(
new
PHUIObjectBoxView
())
->
setHeaderText
(
$title
)
->
setValidationException
(
$validation_exception
)
->
setForm
(
$form
);
$crumbs
=
$this
->
buildApplicationCrumbs
(
$this
->
buildSideNavView
())
->
addTextCrumb
(
$project
->
getName
(),
$view_uri
)
->
addTextCrumb
(
pht
(
'Edit'
),
$edit_uri
)
->
addTextCrumb
(
pht
(
'Details'
));
return
$this
->
buildApplicationPage
(
array
(
$crumbs
,
$form_box
,
),
array
(
'title'
=>
$title
,
));
}
}
Event Timeline
Log In to Comment