Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F423179
DiffusionLastModifiedController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
3 KB
Referenced Files
None
Subscribers
None
DiffusionLastModifiedController.php
View Options
<?php
final
class
DiffusionLastModifiedController
extends
DiffusionController
{
public
function
shouldAllowPublic
()
{
return
true
;
}
public
function
handleRequest
(
AphrontRequest
$request
)
{
$response
=
$this
->
loadDiffusionContext
();
if
(
$response
)
{
return
$response
;
}
$viewer
=
$this
->
getViewer
();
$drequest
=
$this
->
getDiffusionRequest
();
$paths
=
$request
->
getStr
(
'paths'
);
try
{
$paths
=
phutil_json_decode
(
$paths
);
}
catch
(
PhutilJSONParserException
$ex
)
{
return
new
Aphront400Response
();
}
$modified_map
=
$this
->
callConduitWithDiffusionRequest
(
'diffusion.lastmodifiedquery'
,
array
(
'paths'
=>
array_fill_keys
(
$paths
,
$drequest
->
getCommit
()),
));
if
(
$modified_map
)
{
$commit_map
=
id
(
new
DiffusionCommitQuery
())
->
setViewer
(
$viewer
)
->
withRepository
(
$drequest
->
getRepository
())
->
withIdentifiers
(
array_values
(
$modified_map
))
->
needCommitData
(
true
)
->
needIdentities
(
true
)
->
execute
();
$commit_map
=
mpull
(
$commit_map
,
null
,
'getCommitIdentifier'
);
}
else
{
$commit_map
=
array
();
}
$commits
=
array
();
foreach
(
$paths
as
$path
)
{
$modified_at
=
idx
(
$modified_map
,
$path
);
if
(
$modified_at
)
{
$commit
=
idx
(
$commit_map
,
$modified_at
);
if
(
$commit
)
{
$commits
[
$path
]
=
$commit
;
}
}
}
$branch
=
$drequest
->
loadBranch
();
if
(
$branch
&&
$commits
)
{
$lint_query
=
id
(
new
DiffusionLintCountQuery
())
->
withBranchIDs
(
array
(
$branch
->
getID
()))
->
withPaths
(
array_keys
(
$commits
));
if
(
$drequest
->
getLint
())
{
$lint_query
->
withCodes
(
array
(
$drequest
->
getLint
()));
}
$lint
=
$lint_query
->
execute
();
}
else
{
$lint
=
array
();
}
$output
=
array
();
foreach
(
$commits
as
$path
=>
$commit
)
{
$prequest
=
clone
$drequest
;
$prequest
->
setPath
(
$path
);
$output
[
$path
]
=
$this
->
renderColumns
(
$prequest
,
$commit
,
idx
(
$lint
,
$path
));
}
return
id
(
new
AphrontAjaxResponse
())->
setContent
(
$output
);
}
private
function
renderColumns
(
DiffusionRequest
$drequest
,
?
PhabricatorRepositoryCommit
$commit
=
null
,
$lint
=
null
)
{
$viewer
=
$this
->
getViewer
();
if
(
$commit
)
{
$epoch
=
$commit
->
getEpoch
();
$modified
=
DiffusionView
::
linkCommit
(
$drequest
->
getRepository
(),
$commit
->
getCommitIdentifier
());
$date
=
$viewer
->
formatShortDateTime
(
$epoch
);
}
else
{
$modified
=
''
;
$date
=
''
;
}
$data
=
$commit
->
getCommitData
();
$details
=
DiffusionView
::
linkDetail
(
$drequest
->
getRepository
(),
$commit
->
getCommitIdentifier
(),
$data
->
getSummary
());
$details
=
AphrontTableView
::
renderSingleDisplayLine
(
$details
);
$return
=
array
(
'commit'
=>
$modified
,
'date'
=>
$date
,
'details'
=>
$details
,
);
if
(
$lint
!==
null
)
{
$return
[
'lint'
]
=
phutil_tag
(
'a'
,
array
(
'href'
=>
$drequest
->
generateURI
(
array
(
'action'
=>
'lint'
,
'lint'
=>
null
,
)),
),
number_format
(
$lint
));
}
// The client treats these results as markup, so make sure they have been
// escaped correctly.
foreach
(
$return
as
$key
=>
$value
)
{
$return
[
$key
]
=
hsprintf
(
'%s'
,
$value
);
}
return
$return
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, May 2, 1:25 PM (1 d, 18 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
57187
Default Alt Text
DiffusionLastModifiedController.php (3 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment