Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93245507
PhabricatorOwnersDetailController.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 27, 07:56
Size
6 KB
Mime Type
text/x-php
Expires
Fri, Nov 29, 07:56 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22602449
Attached To
rPH Phabricator
PhabricatorOwnersDetailController.php
View Options
<?php
/*
* Copyright 2012 Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
class
PhabricatorOwnersDetailController
extends
PhabricatorOwnersController
{
private
$id
;
private
$package
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
id
=
$data
[
'id'
];
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
$package
=
id
(
new
PhabricatorOwnersPackage
())->
load
(
$this
->
id
);
if
(!
$package
)
{
return
new
Aphront404Response
();
}
$this
->
package
=
$package
;
$paths
=
$package
->
loadPaths
();
$owners
=
$package
->
loadOwners
();
$phids
=
array
();
foreach
(
$paths
as
$path
)
{
$phids
[
$path
->
getRepositoryPHID
()]
=
true
;
}
foreach
(
$owners
as
$owner
)
{
$phids
[
$owner
->
getUserPHID
()]
=
true
;
}
$phids
=
array_keys
(
$phids
);
$handles
=
id
(
new
PhabricatorObjectHandleData
(
$phids
))->
loadHandles
();
$rows
=
array
();
$rows
[]
=
array
(
'Name'
,
phutil_escape_html
(
$package
->
getName
()));
$rows
[]
=
array
(
'Description'
,
phutil_escape_html
(
$package
->
getDescription
()));
$primary_owner
=
null
;
$primary_phid
=
$package
->
getPrimaryOwnerPHID
();
if
(
$primary_phid
&&
isset
(
$handles
[
$primary_phid
]))
{
$primary_owner
=
'<strong>'
.
$handles
[
$primary_phid
]->
renderLink
().
'</strong>'
;
}
$rows
[]
=
array
(
'Primary Owner'
,
$primary_owner
,
);
$owner_links
=
array
();
foreach
(
$owners
as
$owner
)
{
$owner_links
[]
=
$handles
[
$owner
->
getUserPHID
()]->
renderLink
();
}
$owner_links
=
implode
(
'<br />'
,
$owner_links
);
$rows
[]
=
array
(
'Owners'
,
$owner_links
);
$rows
[]
=
array
(
'Auditing'
,
$package
->
getAuditingEnabled
()
?
'Enabled'
:
'Disabled'
,
);
$path_links
=
array
();
foreach
(
$paths
as
$path
)
{
$callsign
=
$handles
[
$path
->
getRepositoryPHID
()]->
getName
();
$repo
=
'<strong>'
.
phutil_escape_html
(
$callsign
).
'</strong>'
;
$path_link
=
phutil_render_tag
(
'a'
,
array
(
'href'
=>
'/diffusion/'
.
$callsign
.
'/browse/:'
.
$path
->
getPath
(),
),
phutil_escape_html
(
$path
->
getPath
()));
$path_links
[]
=
$repo
.
' '
.
$path_link
;
}
$path_links
=
implode
(
'<br />'
,
$path_links
);
$rows
[]
=
array
(
'Paths'
,
$path_links
);
$table
=
new
AphrontTableView
(
$rows
);
$table
->
setColumnClasses
(
array
(
'header'
,
'wide'
,
));
$panel
=
new
AphrontPanelView
();
$panel
->
setHeader
(
'Package Details for "'
.
phutil_escape_html
(
$package
->
getName
()).
'"'
);
$panel
->
addButton
(
javelin_render_tag
(
'a'
,
array
(
'href'
=>
'/owners/delete/'
.
$package
->
getID
().
'/'
,
'class'
=>
'button grey'
,
'sigil'
=>
'workflow'
,
),
'Delete Package'
));
$panel
->
addButton
(
phutil_render_tag
(
'a'
,
array
(
'href'
=>
'/owners/edit/'
.
$package
->
getID
().
'/'
,
'class'
=>
'button'
,
),
'Edit Package'
));
$panel
->
appendChild
(
$table
);
$key
=
'package/'
.
$package
->
getID
();
$this
->
setSideNavFilter
(
$key
);
$commit_views
=
array
();
$commit_uri
=
id
(
new
PhutilURI
(
'/audit/view/packagecommits/'
))
->
setQueryParams
(
array
(
'phid'
=>
$package
->
getPHID
(),
));
$attention_query
=
id
(
new
PhabricatorAuditCommitQuery
())
->
withPackagePHIDs
(
array
(
$package
->
getPHID
()))
->
withStatus
(
PhabricatorAuditCommitQuery
::
STATUS_OPEN
)
->
needCommitData
(
true
)
->
setLimit
(
10
);
$attention_commits
=
$attention_query
->
execute
();
if
(
$attention_commits
)
{
$view
=
new
PhabricatorAuditCommitListView
();
$view
->
setUser
(
$user
);
$view
->
setCommits
(
$attention_commits
);
$commit_views
[]
=
array
(
'view'
=>
$view
,
'header'
=>
'Commits in this Package that Need Attention'
,
'button'
=>
phutil_render_tag
(
'a'
,
array
(
'href'
=>
$commit_uri
->
alter
(
'status'
,
'open'
),
'class'
=>
'button grey'
,
),
'View All Problem Commits'
),
);
}
$all_query
=
id
(
new
PhabricatorAuditCommitQuery
())
->
withPackagePHIDs
(
array
(
$package
->
getPHID
()))
->
needCommitData
(
true
)
->
setLimit
(
100
);
$all_commits
=
$all_query
->
execute
();
$view
=
new
PhabricatorAuditCommitListView
();
$view
->
setUser
(
$user
);
$view
->
setCommits
(
$all_commits
);
$view
->
setNoDataString
(
'No commits in this package.'
);
$commit_views
[]
=
array
(
'view'
=>
$view
,
'header'
=>
'Recent Commits in Package'
,
'button'
=>
phutil_render_tag
(
'a'
,
array
(
'href'
=>
$commit_uri
,
'class'
=>
'button grey'
,
),
'View All Package Commits'
),
);
$phids
=
array
();
foreach
(
$commit_views
as
$commit_view
)
{
$phids
[]
=
$commit_view
[
'view'
]->
getRequiredHandlePHIDs
();
}
$phids
=
array_mergev
(
$phids
);
$handles
=
id
(
new
PhabricatorObjectHandleData
(
$phids
))->
loadHandles
();
$commit_panels
=
array
();
foreach
(
$commit_views
as
$commit_view
)
{
$commit_panel
=
new
AphrontPanelView
();
$commit_panel
->
setHeader
(
phutil_escape_html
(
$commit_view
[
'header'
]));
if
(
isset
(
$commit_view
[
'button'
]))
{
$commit_panel
->
addButton
(
$commit_view
[
'button'
]);
}
$commit_view
[
'view'
]->
setHandles
(
$handles
);
$commit_panel
->
appendChild
(
$commit_view
[
'view'
]);
$commit_panels
[]
=
$commit_panel
;
}
return
$this
->
buildStandardPageResponse
(
array
(
$panel
,
$commit_panels
,
),
array
(
'title'
=>
"Package '"
.
$package
->
getName
().
"'"
,
));
}
protected
function
getExtraPackageViews
()
{
$package
=
$this
->
package
;
return
array
(
array
(
'name'
=>
'Details'
,
'key'
=>
'package/'
.
$package
->
getID
(),
));
}
}
Event Timeline
Log In to Comment