Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98122316
PhabricatorProjectColumnEditController.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, Jan 10, 00:51
Size
4 KB
Mime Type
text/x-php
Expires
Sun, Jan 12, 00:51 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23510419
Attached To
rPH Phabricator
PhabricatorProjectColumnEditController.php
View Options
<?php
final
class
PhabricatorProjectColumnEditController
extends
PhabricatorProjectBoardController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$request
->
getViewer
();
$id
=
$request
->
getURIData
(
'id'
);
$project_id
=
$request
->
getURIData
(
'projectID'
);
$project
=
id
(
new
PhabricatorProjectQuery
())
->
setViewer
(
$viewer
)
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
withIDs
(
array
(
$project_id
))
->
needImages
(
true
)
->
executeOne
();
if
(!
$project
)
{
return
new
Aphront404Response
();
}
$this
->
setProject
(
$project
);
$is_new
=
(
$id
?
false
:
true
);
if
(!
$is_new
)
{
$column
=
id
(
new
PhabricatorProjectColumnQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$id
))
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
executeOne
();
if
(!
$column
)
{
return
new
Aphront404Response
();
}
}
else
{
$column
=
PhabricatorProjectColumn
::
initializeNewColumn
(
$viewer
);
}
$e_name
=
null
;
$e_limit
=
null
;
$v_limit
=
$column
->
getPointLimit
();
$v_name
=
$column
->
getName
();
$validation_exception
=
null
;
$base_uri
=
'/board/'
.
$project_id
.
'/'
;
if
(
$is_new
)
{
// we want to go back to the board
$view_uri
=
$this
->
getApplicationURI
(
$base_uri
);
}
else
{
$view_uri
=
$this
->
getApplicationURI
(
$base_uri
.
'column/'
.
$id
.
'/'
);
}
if
(
$request
->
isFormPost
())
{
$v_name
=
$request
->
getStr
(
'name'
);
$v_limit
=
$request
->
getStr
(
'limit'
);
if
(
$is_new
)
{
$column
->
setProjectPHID
(
$project
->
getPHID
());
$column
->
attachProject
(
$project
);
$columns
=
id
(
new
PhabricatorProjectColumnQuery
())
->
setViewer
(
$viewer
)
->
withProjectPHIDs
(
array
(
$project
->
getPHID
()))
->
execute
();
$new_sequence
=
1
;
if
(
$columns
)
{
$values
=
mpull
(
$columns
,
'getSequence'
);
$new_sequence
=
max
(
$values
)
+
1
;
}
$column
->
setSequence
(
$new_sequence
);
}
$xactions
=
array
();
$type_name
=
PhabricatorProjectColumnTransaction
::
TYPE_NAME
;
$xactions
[]
=
id
(
new
PhabricatorProjectColumnTransaction
())
->
setTransactionType
(
$type_name
)
->
setNewValue
(
$v_name
);
$type_limit
=
PhabricatorProjectColumnTransaction
::
TYPE_LIMIT
;
$xactions
[]
=
id
(
new
PhabricatorProjectColumnTransaction
())
->
setTransactionType
(
$type_limit
)
->
setNewValue
(
$v_limit
);
try
{
$editor
=
id
(
new
PhabricatorProjectColumnTransactionEditor
())
->
setActor
(
$viewer
)
->
setContinueOnNoEffect
(
true
)
->
setContentSourceFromRequest
(
$request
)
->
applyTransactions
(
$column
,
$xactions
);
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
$view_uri
);
}
catch
(
PhabricatorApplicationTransactionValidationException
$ex
)
{
$e_name
=
$ex
->
getShortMessage
(
$type_name
);
$e_limit
=
$ex
->
getShortMessage
(
$type_limit
);
$validation_exception
=
$ex
;
}
}
$form
=
new
AphrontFormView
();
$form
->
setUser
(
$request
->
getUser
())
->
appendChild
(
id
(
new
AphrontFormTextControl
())
->
setValue
(
$v_name
)
->
setLabel
(
pht
(
'Name'
))
->
setName
(
'name'
)
->
setError
(
$e_name
)
->
setCaption
(
pht
(
'This will be displayed as the header of the column.'
)))
->
appendChild
(
id
(
new
AphrontFormTextControl
())
->
setValue
(
$v_limit
)
->
setLabel
(
pht
(
'Point Limit'
))
->
setName
(
'limit'
)
->
setError
(
$e_limit
)
->
setCaption
(
pht
(
'Maximum number of points of tasks allowed in the column.'
)));
if
(
$is_new
)
{
$title
=
pht
(
'Create Column'
);
$submit
=
pht
(
'Create Column'
);
}
else
{
$title
=
pht
(
'Edit %s'
,
$column
->
getDisplayName
());
$submit
=
pht
(
'Save Column'
);
}
$form
->
appendChild
(
id
(
new
AphrontFormSubmitControl
())
->
setValue
(
$submit
)
->
addCancelButton
(
$view_uri
));
$form_box
=
id
(
new
PHUIObjectBoxView
())
->
setHeaderText
(
$title
)
->
setValidationException
(
$validation_exception
)
->
setForm
(
$form
);
$nav
=
$this
->
buildIconNavView
(
$project
);
$nav
->
appendChild
(
$form_box
);
return
$this
->
buildApplicationPage
(
$nav
,
array
(
'title'
=>
$title
,
));
}
}
Event Timeline
Log In to Comment