Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90941915
PhabricatorSpacesEditController.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
Wed, Nov 6, 06:15
Size
5 KB
Mime Type
text/x-php
Expires
Fri, Nov 8, 06:15 (2 d)
Engine
blob
Format
Raw Data
Handle
22164356
Attached To
rPH Phabricator
PhabricatorSpacesEditController.php
View Options
<?php
final
class
PhabricatorSpacesEditController
extends
PhabricatorSpacesController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$request
->
getUser
();
$make_default
=
false
;
$id
=
$request
->
getURIData
(
'id'
);
if
(
$id
)
{
$space
=
id
(
new
PhabricatorSpacesNamespaceQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$id
))
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
executeOne
();
if
(!
$space
)
{
return
new
Aphront404Response
();
}
$is_new
=
false
;
$cancel_uri
=
'/'
.
$space
->
getMonogram
();
$header_text
=
pht
(
'Edit %s'
,
$space
->
getNamespaceName
());
$title
=
pht
(
'Edit Space'
);
$button_text
=
pht
(
'Save Changes'
);
}
else
{
$this
->
requireApplicationCapability
(
PhabricatorSpacesCapabilityCreateSpaces
::
CAPABILITY
);
$space
=
PhabricatorSpacesNamespace
::
initializeNewNamespace
(
$viewer
);
$is_new
=
true
;
$cancel_uri
=
$this
->
getApplicationURI
();
$header_text
=
pht
(
'Create Space'
);
$title
=
pht
(
'Create Space'
);
$button_text
=
pht
(
'Create Space'
);
$default
=
id
(
new
PhabricatorSpacesNamespaceQuery
())
->
setViewer
(
PhabricatorUser
::
getOmnipotentUser
())
->
withIsDefaultNamespace
(
true
)
->
execute
();
if
(!
$default
)
{
$make_default
=
true
;
}
}
$validation_exception
=
null
;
$e_name
=
true
;
$v_name
=
$space
->
getNamespaceName
();
$v_desc
=
$space
->
getDescription
();
$v_view
=
$space
->
getViewPolicy
();
$v_edit
=
$space
->
getEditPolicy
();
if
(
$request
->
isFormPost
())
{
$xactions
=
array
();
$e_name
=
null
;
$v_name
=
$request
->
getStr
(
'name'
);
$v_desc
=
$request
->
getStr
(
'description'
);
$v_view
=
$request
->
getStr
(
'viewPolicy'
);
$v_edit
=
$request
->
getStr
(
'editPolicy'
);
$type_name
=
PhabricatorSpacesNamespaceTransaction
::
TYPE_NAME
;
$type_desc
=
PhabricatorSpacesNamespaceTransaction
::
TYPE_DESCRIPTION
;
$type_default
=
PhabricatorSpacesNamespaceTransaction
::
TYPE_DEFAULT
;
$type_view
=
PhabricatorTransactions
::
TYPE_VIEW_POLICY
;
$type_edit
=
PhabricatorTransactions
::
TYPE_EDIT_POLICY
;
$xactions
[]
=
id
(
new
PhabricatorSpacesNamespaceTransaction
())
->
setTransactionType
(
$type_name
)
->
setNewValue
(
$v_name
);
$xactions
[]
=
id
(
new
PhabricatorSpacesNamespaceTransaction
())
->
setTransactionType
(
$type_desc
)
->
setNewValue
(
$v_desc
);
$xactions
[]
=
id
(
new
PhabricatorSpacesNamespaceTransaction
())
->
setTransactionType
(
$type_view
)
->
setNewValue
(
$v_view
);
$xactions
[]
=
id
(
new
PhabricatorSpacesNamespaceTransaction
())
->
setTransactionType
(
$type_edit
)
->
setNewValue
(
$v_edit
);
if
(
$make_default
)
{
$xactions
[]
=
id
(
new
PhabricatorSpacesNamespaceTransaction
())
->
setTransactionType
(
$type_default
)
->
setNewValue
(
1
);
}
$editor
=
id
(
new
PhabricatorSpacesNamespaceEditor
())
->
setActor
(
$viewer
)
->
setContinueOnNoEffect
(
true
)
->
setContentSourceFromRequest
(
$request
);
try
{
$editor
->
applyTransactions
(
$space
,
$xactions
);
return
id
(
new
AphrontRedirectResponse
())
->
setURI
(
'/'
.
$space
->
getMonogram
());
}
catch
(
PhabricatorApplicationTransactionValidationException
$ex
)
{
$validation_exception
=
$ex
;
$e_name
=
$ex
->
getShortMessage
(
$type_name
);
}
}
$policies
=
id
(
new
PhabricatorPolicyQuery
())
->
setViewer
(
$viewer
)
->
setObject
(
$space
)
->
execute
();
$form
=
id
(
new
AphrontFormView
())
->
setUser
(
$viewer
);
if
(
$make_default
)
{
$form
->
appendRemarkupInstructions
(
pht
(
'NOTE: You are creating the **default space**. All existing '
.
'objects will be put into this space. You must create a default '
.
'space before you can create other spaces.'
));
}
$form
->
appendChild
(
id
(
new
AphrontFormTextControl
())
->
setLabel
(
pht
(
'Name'
))
->
setName
(
'name'
)
->
setValue
(
$v_name
)
->
setError
(
$e_name
))
->
appendControl
(
id
(
new
PhabricatorRemarkupControl
())
->
setLabel
(
pht
(
'Description'
))
->
setName
(
'description'
)
->
setValue
(
$v_desc
))
->
appendChild
(
id
(
new
AphrontFormPolicyControl
())
->
setUser
(
$viewer
)
->
setCapability
(
PhabricatorPolicyCapability
::
CAN_VIEW
)
->
setPolicyObject
(
$space
)
->
setPolicies
(
$policies
)
->
setValue
(
$v_view
)
->
setName
(
'viewPolicy'
))
->
appendChild
(
id
(
new
AphrontFormPolicyControl
())
->
setUser
(
$viewer
)
->
setCapability
(
PhabricatorPolicyCapability
::
CAN_EDIT
)
->
setPolicyObject
(
$space
)
->
setPolicies
(
$policies
)
->
setValue
(
$v_edit
)
->
setName
(
'editPolicy'
))
->
appendChild
(
id
(
new
AphrontFormSubmitControl
())
->
setValue
(
$button_text
)
->
addCancelButton
(
$cancel_uri
));
$box
=
id
(
new
PHUIObjectBoxView
())
->
setHeaderText
(
$header_text
)
->
setValidationException
(
$validation_exception
)
->
appendChild
(
$form
);
$crumbs
=
$this
->
buildApplicationCrumbs
();
if
(!
$is_new
)
{
$crumbs
->
addTextCrumb
(
$space
->
getMonogram
(),
$cancel_uri
);
}
$crumbs
->
addTextCrumb
(
$title
);
return
$this
->
buildApplicationPage
(
array
(
$crumbs
,
$box
,
),
array
(
'title'
=>
$title
,
));
}
}
Event Timeline
Log In to Comment