Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96148760
PhabricatorOwnersPathsController.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
Mon, Dec 23, 03:46
Size
5 KB
Mime Type
text/x-php
Expires
Wed, Dec 25, 03:46 (1 d, 18 h)
Engine
blob
Format
Raw Data
Handle
23132383
Attached To
rPH Phabricator
PhabricatorOwnersPathsController.php
View Options
<?php
final
class
PhabricatorOwnersPathsController
extends
PhabricatorOwnersController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$request
->
getUser
();
$package
=
id
(
new
PhabricatorOwnersPackageQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$request
->
getURIData
(
'id'
)))
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
needPaths
(
true
)
->
executeOne
();
if
(!
$package
)
{
return
new
Aphront404Response
();
}
if
(
$request
->
isFormPost
())
{
$paths
=
$request
->
getArr
(
'path'
);
$repos
=
$request
->
getArr
(
'repo'
);
$excludes
=
$request
->
getArr
(
'exclude'
);
$path_refs
=
array
();
foreach
(
$paths
as
$key
=>
$path
)
{
if
(!
isset
(
$repos
[
$key
]))
{
throw
new
Exception
(
pht
(
'No repository PHID for path "%s"!'
,
$key
));
}
if
(!
isset
(
$excludes
[
$key
]))
{
throw
new
Exception
(
pht
(
'No exclusion value for path "%s"!'
,
$key
));
}
$path_refs
[]
=
array
(
'repositoryPHID'
=>
$repos
[
$key
],
'path'
=>
$path
,
'excluded'
=>
(
int
)
$excludes
[
$key
],
);
}
$type_paths
=
PhabricatorOwnersPackagePathsTransaction
::
TRANSACTIONTYPE
;
$xactions
=
array
();
$xactions
[]
=
id
(
new
PhabricatorOwnersPackageTransaction
())
->
setTransactionType
(
$type_paths
)
->
setNewValue
(
$path_refs
);
$editor
=
id
(
new
PhabricatorOwnersPackageTransactionEditor
())
->
setActor
(
$viewer
)
->
setContentSourceFromRequest
(
$request
)
->
setContinueOnNoEffect
(
true
)
->
setContinueOnMissingFields
(
true
);
$editor
->
applyTransactions
(
$package
,
$xactions
);
return
id
(
new
AphrontRedirectResponse
())
->
setURI
(
$package
->
getURI
());
}
else
{
$paths
=
$package
->
getPaths
();
$path_refs
=
mpull
(
$paths
,
'getRef'
);
}
$repos
=
id
(
new
PhabricatorRepositoryQuery
())
->
setViewer
(
$viewer
)
->
execute
();
$default_paths
=
array
();
foreach
(
$repos
as
$repo
)
{
$default_path
=
$repo
->
getDetail
(
'default-owners-path'
);
if
(
$default_path
)
{
$default_paths
[
$repo
->
getPHID
()]
=
$default_path
;
}
}
$repo_map
=
array
();
foreach
(
$repos
as
$key
=>
$repo
)
{
$monogram
=
$repo
->
getMonogram
();
$name
=
$repo
->
getName
();
$repo_map
[
$repo
->
getPHID
()]
=
"{$monogram} {$name}"
;
}
asort
(
$repos
);
$template
=
new
AphrontTypeaheadTemplateView
();
$template
=
$template
->
render
();
Javelin
::
initBehavior
(
'owners-path-editor'
,
array
(
'root'
=>
'path-editor'
,
'table'
=>
'paths'
,
'add_button'
=>
'addpath'
,
'repositories'
=>
$repo_map
,
'input_template'
=>
$template
,
'pathRefs'
=>
$path_refs
,
'completeURI'
=>
'/diffusion/services/path/complete/'
,
'validateURI'
=>
'/diffusion/services/path/validate/'
,
'repositoryDefaultPaths'
=>
$default_paths
,
));
require_celerity_resource
(
'owners-path-editor-css'
);
$cancel_uri
=
$package
->
getURI
();
$form
=
id
(
new
AphrontFormView
())
->
setUser
(
$viewer
)
->
appendChild
(
id
(
new
PHUIFormInsetView
())
->
setTitle
(
pht
(
'Paths'
))
->
addDivAttributes
(
array
(
'id'
=>
'path-editor'
))
->
setRightButton
(
javelin_tag
(
'a'
,
array
(
'href'
=>
'#'
,
'class'
=>
'button green'
,
'sigil'
=>
'addpath'
,
'mustcapture'
=>
true
,
),
pht
(
'Add New Path'
)))
->
setDescription
(
pht
(
'Specify the files and directories which comprise '
.
'this package.'
))
->
setContent
(
javelin_tag
(
'table'
,
array
(
'class'
=>
'owners-path-editor-table'
,
'sigil'
=>
'paths'
,
),
''
)))
->
appendChild
(
id
(
new
AphrontFormSubmitControl
())
->
addCancelButton
(
$cancel_uri
)
->
setValue
(
pht
(
'Save Paths'
)));
$box
=
id
(
new
PHUIObjectBoxView
())
->
setHeaderText
(
pht
(
'Paths'
))
->
setBackground
(
PHUIObjectBoxView
::
BLUE_PROPERTY
)
->
setForm
(
$form
);
$crumbs
=
$this
->
buildApplicationCrumbs
();
$crumbs
->
addTextCrumb
(
$package
->
getName
(),
$this
->
getApplicationURI
(
'package/'
.
$package
->
getID
().
'/'
));
$crumbs
->
addTextCrumb
(
pht
(
'Edit Paths'
));
$crumbs
->
setBorder
(
true
);
$header
=
id
(
new
PHUIHeaderView
())
->
setHeader
(
pht
(
'Edit Paths: %s'
,
$package
->
getName
()))
->
setHeaderIcon
(
'fa-pencil'
);
$view
=
id
(
new
PHUITwoColumnView
())
->
setHeader
(
$header
)
->
setFooter
(
$box
);
$title
=
array
(
$package
->
getName
(),
pht
(
'Edit Paths'
));
return
$this
->
newPage
()
->
setTitle
(
$title
)
->
setCrumbs
(
$crumbs
)
->
appendChild
(
$view
);
}
}
Event Timeline
Log In to Comment