Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F95932359
HarbormasterStepEditController.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, Dec 20, 19:52
Size
7 KB
Mime Type
text/x-php
Expires
Sun, Dec 22, 19:52 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23081187
Attached To
rPH Phabricator
HarbormasterStepEditController.php
View Options
<?php
final
class
HarbormasterStepEditController
extends
HarbormasterController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$this
->
getViewer
();
$id
=
$request
->
getURIData
(
'id'
);
if
(
$id
)
{
$step
=
id
(
new
HarbormasterBuildStepQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$id
))
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
executeOne
();
if
(!
$step
)
{
return
new
Aphront404Response
();
}
$plan
=
$step
->
getBuildPlan
();
$is_new
=
false
;
}
else
{
$plan_id
=
$request
->
getURIData
(
'plan'
);
$class
=
$request
->
getURIData
(
'class'
);
$plan
=
id
(
new
HarbormasterBuildPlanQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$plan_id
))
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
executeOne
();
if
(!
$plan
)
{
return
new
Aphront404Response
();
}
$impl
=
HarbormasterBuildStepImplementation
::
getImplementation
(
$class
);
if
(!
$impl
)
{
return
new
Aphront404Response
();
}
if
(
$impl
->
shouldRequireAutotargeting
())
{
// No manual creation of autotarget steps.
return
new
Aphront404Response
();
}
$step
=
HarbormasterBuildStep
::
initializeNewStep
(
$viewer
)
->
setBuildPlanPHID
(
$plan
->
getPHID
())
->
setClassName
(
$class
);
$is_new
=
true
;
}
$plan_uri
=
$this
->
getApplicationURI
(
'plan/'
.
$plan
->
getID
().
'/'
);
$implementation
=
$step
->
getStepImplementation
();
$field_list
=
PhabricatorCustomField
::
getObjectFields
(
$step
,
PhabricatorCustomField
::
ROLE_EDIT
);
$field_list
->
setViewer
(
$viewer
)
->
readFieldsFromStorage
(
$step
);
$e_name
=
true
;
$v_name
=
$step
->
getName
();
$e_description
=
null
;
$v_description
=
$step
->
getDescription
();
$e_depends_on
=
null
;
$v_depends_on
=
$step
->
getDetail
(
'dependsOn'
,
array
());
$errors
=
array
();
$validation_exception
=
null
;
if
(
$request
->
isFormPost
())
{
$e_name
=
null
;
$v_name
=
$request
->
getStr
(
'name'
);
$v_description
=
$request
->
getStr
(
'description'
);
$v_depends_on
=
$request
->
getArr
(
'dependsOn'
);
$xactions
=
$field_list
->
buildFieldTransactionsFromRequest
(
new
HarbormasterBuildStepTransaction
(),
$request
);
$editor
=
id
(
new
HarbormasterBuildStepEditor
())
->
setActor
(
$viewer
)
->
setContinueOnNoEffect
(
true
)
->
setContentSourceFromRequest
(
$request
);
$name_xaction
=
id
(
new
HarbormasterBuildStepTransaction
())
->
setTransactionType
(
HarbormasterBuildStepTransaction
::
TYPE_NAME
)
->
setNewValue
(
$v_name
);
array_unshift
(
$xactions
,
$name_xaction
);
$depends_on_xaction
=
id
(
new
HarbormasterBuildStepTransaction
())
->
setTransactionType
(
HarbormasterBuildStepTransaction
::
TYPE_DEPENDS_ON
)
->
setNewValue
(
$v_depends_on
);
array_unshift
(
$xactions
,
$depends_on_xaction
);
$description_xaction
=
id
(
new
HarbormasterBuildStepTransaction
())
->
setTransactionType
(
HarbormasterBuildStepTransaction
::
TYPE_DESCRIPTION
)
->
setNewValue
(
$v_description
);
array_unshift
(
$xactions
,
$description_xaction
);
if
(
$is_new
)
{
// When creating a new step, make sure we have a create transaction
// so we'll apply the transactions even if the step has no
// configurable options.
$create_xaction
=
id
(
new
HarbormasterBuildStepTransaction
())
->
setTransactionType
(
HarbormasterBuildStepTransaction
::
TYPE_CREATE
);
array_unshift
(
$xactions
,
$create_xaction
);
}
try
{
$editor
->
applyTransactions
(
$step
,
$xactions
);
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
$plan_uri
);
}
catch
(
PhabricatorApplicationTransactionValidationException
$ex
)
{
$validation_exception
=
$ex
;
}
}
$form
=
id
(
new
AphrontFormView
())
->
setUser
(
$viewer
)
->
appendChild
(
id
(
new
AphrontFormTextControl
())
->
setName
(
'name'
)
->
setLabel
(
pht
(
'Name'
))
->
setError
(
$e_name
)
->
setValue
(
$v_name
));
$form
->
appendChild
(
id
(
new
AphrontFormDividerControl
()));
$field_list
->
appendFieldsToForm
(
$form
);
$form
->
appendChild
(
id
(
new
AphrontFormDividerControl
()));
$form
->
appendControl
(
id
(
new
AphrontFormTokenizerControl
())
->
setDatasource
(
id
(
new
HarbormasterBuildDependencyDatasource
())
->
setParameters
(
array
(
'planPHID'
=>
$plan
->
getPHID
(),
'stepPHID'
=>
$is_new
?
null
:
$step
->
getPHID
(),
)))
->
setName
(
'dependsOn'
)
->
setLabel
(
pht
(
'Depends On'
))
->
setError
(
$e_depends_on
)
->
setValue
(
$v_depends_on
));
$form
->
appendChild
(
id
(
new
PhabricatorRemarkupControl
())
->
setUser
(
$viewer
)
->
setName
(
'description'
)
->
setLabel
(
pht
(
'Description'
))
->
setError
(
$e_description
)
->
setValue
(
$v_description
));
if
(
$is_new
)
{
$submit
=
pht
(
'Create Build Step'
);
$header
=
pht
(
'New Step: %s'
,
$implementation
->
getName
());
$crumb
=
pht
(
'Add Step'
);
}
else
{
$submit
=
pht
(
'Save Build Step'
);
$header
=
pht
(
'Edit Step: %s'
,
$implementation
->
getName
());
$crumb
=
pht
(
'Edit Step'
);
}
$form
->
appendChild
(
id
(
new
AphrontFormSubmitControl
())
->
setValue
(
$submit
)
->
addCancelButton
(
$plan_uri
));
$box
=
id
(
new
PHUIObjectBoxView
())
->
setHeaderText
(
$header
)
->
setValidationException
(
$validation_exception
)
->
setForm
(
$form
);
$crumbs
=
$this
->
buildApplicationCrumbs
();
$id
=
$plan
->
getID
();
$crumbs
->
addTextCrumb
(
pht
(
'Plan %d'
,
$id
),
$plan_uri
);
$crumbs
->
addTextCrumb
(
$crumb
);
$variables
=
$this
->
renderBuildVariablesTable
();
if
(
$is_new
)
{
$xaction_view
=
null
;
$timeline
=
null
;
}
else
{
$timeline
=
$this
->
buildTransactionTimeline
(
$step
,
new
HarbormasterBuildStepTransactionQuery
());
$timeline
->
setShouldTerminate
(
true
);
}
return
$this
->
buildApplicationPage
(
array
(
$crumbs
,
$box
,
$variables
,
$timeline
,
),
array
(
'title'
=>
$implementation
->
getName
(),
));
}
private
function
renderBuildVariablesTable
()
{
$viewer
=
$this
->
getRequest
()->
getUser
();
$variables
=
HarbormasterBuild
::
getAvailableBuildVariables
();
ksort
(
$variables
);
$rows
=
array
();
$rows
[]
=
pht
(
'The following variables can be used in most fields. '
.
'To reference a variable, use `%s` in a field.'
,
'${name}'
);
$rows
[]
=
pht
(
'| Variable | Description |'
);
$rows
[]
=
'|---|---|'
;
foreach
(
$variables
as
$name
=>
$description
)
{
$rows
[]
=
'| `'
.
$name
.
'` | '
.
$description
.
' |'
;
}
$rows
=
implode
(
"
\n
"
,
$rows
);
$form
=
id
(
new
AphrontFormView
())
->
setUser
(
$viewer
)
->
appendRemarkupInstructions
(
$rows
);
return
id
(
new
PHUIObjectBoxView
())
->
setHeaderText
(
pht
(
'Build Variables'
))
->
appendChild
(
$form
);
}
}
Event Timeline
Log In to Comment