Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96116604
PhabricatorPasteViewController.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
Sun, Dec 22, 19:16
Size
6 KB
Mime Type
text/x-php
Expires
Tue, Dec 24, 19:16 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23125442
Attached To
rPH Phabricator
PhabricatorPasteViewController.php
View Options
<?php
/**
* group paste
*/
final
class
PhabricatorPasteViewController
extends
PhabricatorPasteController
{
private
$id
;
private
$highlightMap
;
public
function
shouldAllowPublic
()
{
return
true
;
}
public
function
willProcessRequest
(
array
$data
)
{
$this
->
id
=
$data
[
'id'
];
$raw_lines
=
idx
(
$data
,
'lines'
);
$map
=
array
();
if
(
$raw_lines
)
{
$lines
=
explode
(
'-'
,
$raw_lines
);
$first
=
idx
(
$lines
,
0
,
0
);
$last
=
idx
(
$lines
,
1
);
if
(
$last
)
{
$min
=
min
(
$first
,
$last
);
$max
=
max
(
$first
,
$last
);
$map
=
array_fuse
(
range
(
$min
,
$max
));
}
else
{
$map
[
$first
]
=
$first
;
}
}
$this
->
highlightMap
=
$map
;
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
$paste
=
id
(
new
PhabricatorPasteQuery
())
->
setViewer
(
$user
)
->
withIDs
(
array
(
$this
->
id
))
->
needContent
(
true
)
->
executeOne
();
if
(!
$paste
)
{
return
new
Aphront404Response
();
}
$file
=
id
(
new
PhabricatorFileQuery
())
->
setViewer
(
$user
)
->
withPHIDs
(
array
(
$paste
->
getFilePHID
()))
->
executeOne
();
if
(!
$file
)
{
return
new
Aphront400Response
();
}
$forks
=
id
(
new
PhabricatorPasteQuery
())
->
setViewer
(
$user
)
->
withParentPHIDs
(
array
(
$paste
->
getPHID
()))
->
execute
();
$fork_phids
=
mpull
(
$forks
,
'getPHID'
);
$this
->
loadHandles
(
array_merge
(
array
(
$paste
->
getAuthorPHID
(),
$paste
->
getParentPHID
(),
),
$fork_phids
));
$header
=
$this
->
buildHeaderView
(
$paste
);
$actions
=
$this
->
buildActionView
(
$user
,
$paste
,
$file
);
$properties
=
$this
->
buildPropertyView
(
$paste
,
$fork_phids
,
$actions
);
$object_box
=
id
(
new
PHUIObjectBoxView
())
->
setHeader
(
$header
)
->
addPropertyList
(
$properties
);
$source_code
=
$this
->
buildSourceCodeView
(
$paste
,
null
,
$this
->
highlightMap
);
$source_code
=
id
(
new
PHUIBoxView
())
->
appendChild
(
$source_code
)
->
setBorder
(
true
)
->
addMargin
(
PHUI
::
MARGIN_LARGE_LEFT
)
->
addMargin
(
PHUI
::
MARGIN_LARGE_RIGHT
)
->
addMargin
(
PHUI
::
MARGIN_LARGE_TOP
);
$crumbs
=
$this
->
buildApplicationCrumbs
(
$this
->
buildSideNavView
())
->
setActionList
(
$actions
)
->
addTextCrumb
(
'P'
.
$paste
->
getID
(),
'/P'
.
$paste
->
getID
());
$xactions
=
id
(
new
PhabricatorPasteTransactionQuery
())
->
setViewer
(
$request
->
getUser
())
->
withObjectPHIDs
(
array
(
$paste
->
getPHID
()))
->
execute
();
$engine
=
id
(
new
PhabricatorMarkupEngine
())
->
setViewer
(
$user
);
foreach
(
$xactions
as
$xaction
)
{
if
(
$xaction
->
getComment
())
{
$engine
->
addObject
(
$xaction
->
getComment
(),
PhabricatorApplicationTransactionComment
::
MARKUP_FIELD_COMMENT
);
}
}
$engine
->
process
();
$timeline
=
id
(
new
PhabricatorApplicationTransactionView
())
->
setUser
(
$user
)
->
setObjectPHID
(
$paste
->
getPHID
())
->
setTransactions
(
$xactions
)
->
setMarkupEngine
(
$engine
);
$is_serious
=
PhabricatorEnv
::
getEnvConfig
(
'phabricator.serious-business'
);
$add_comment_header
=
$is_serious
?
pht
(
'Add Comment'
)
:
pht
(
'Debate Paste Accuracy'
);
$submit_button_name
=
$is_serious
?
pht
(
'Add Comment'
)
:
pht
(
'Pity the Fool'
);
$draft
=
PhabricatorDraft
::
newFromUserAndKey
(
$user
,
$paste
->
getPHID
());
$add_comment_form
=
id
(
new
PhabricatorApplicationTransactionCommentView
())
->
setUser
(
$user
)
->
setObjectPHID
(
$paste
->
getPHID
())
->
setDraft
(
$draft
)
->
setHeaderText
(
$add_comment_header
)
->
setAction
(
$this
->
getApplicationURI
(
'/comment/'
.
$paste
->
getID
().
'/'
))
->
setSubmitButtonName
(
$submit_button_name
);
return
$this
->
buildApplicationPage
(
array
(
$crumbs
,
$object_box
,
$source_code
,
$timeline
,
$add_comment_form
,
),
array
(
'title'
=>
$paste
->
getFullName
(),
'device'
=>
true
,
'pageObjects'
=>
array
(
$paste
->
getPHID
()),
));
}
private
function
buildHeaderView
(
PhabricatorPaste
$paste
)
{
$title
=
(
nonempty
(
$paste
->
getTitle
()))
?
$paste
->
getTitle
()
:
pht
(
'(An Untitled Masterwork)'
);
$header
=
id
(
new
PHUIHeaderView
())
->
setHeader
(
$title
)
->
setUser
(
$this
->
getRequest
()->
getUser
())
->
setPolicyObject
(
$paste
);
return
$header
;
}
private
function
buildActionView
(
PhabricatorUser
$user
,
PhabricatorPaste
$paste
,
PhabricatorFile
$file
)
{
$can_edit
=
PhabricatorPolicyFilter
::
hasCapability
(
$user
,
$paste
,
PhabricatorPolicyCapability
::
CAN_EDIT
);
$can_fork
=
$user
->
isLoggedIn
();
$fork_uri
=
$this
->
getApplicationURI
(
'/create/?parent='
.
$paste
->
getID
());
return
id
(
new
PhabricatorActionListView
())
->
setUser
(
$user
)
->
setObject
(
$paste
)
->
setObjectURI
(
$this
->
getRequest
()->
getRequestURI
())
->
addAction
(
id
(
new
PhabricatorActionView
())
->
setName
(
pht
(
'Fork This Paste'
))
->
setIcon
(
'fork'
)
->
setDisabled
(!
$can_fork
)
->
setWorkflow
(!
$can_fork
)
->
setHref
(
$fork_uri
))
->
addAction
(
id
(
new
PhabricatorActionView
())
->
setName
(
pht
(
'View Raw File'
))
->
setIcon
(
'file'
)
->
setHref
(
$file
->
getBestURI
()))
->
addAction
(
id
(
new
PhabricatorActionView
())
->
setName
(
pht
(
'Edit Paste'
))
->
setIcon
(
'edit'
)
->
setDisabled
(!
$can_edit
)
->
setWorkflow
(!
$can_edit
)
->
setHref
(
$this
->
getApplicationURI
(
'/edit/'
.
$paste
->
getID
().
'/'
)));
}
private
function
buildPropertyView
(
PhabricatorPaste
$paste
,
array
$child_phids
,
PhabricatorActionListView
$actions
)
{
$user
=
$this
->
getRequest
()->
getUser
();
$properties
=
id
(
new
PHUIPropertyListView
())
->
setUser
(
$user
)
->
setObject
(
$paste
)
->
setActionList
(
$actions
);
$properties
->
addProperty
(
pht
(
'Author'
),
$this
->
getHandle
(
$paste
->
getAuthorPHID
())->
renderLink
());
$properties
->
addProperty
(
pht
(
'Created'
),
phabricator_datetime
(
$paste
->
getDateCreated
(),
$user
));
if
(
$paste
->
getParentPHID
())
{
$properties
->
addProperty
(
pht
(
'Forked From'
),
$this
->
getHandle
(
$paste
->
getParentPHID
())->
renderLink
());
}
if
(
$child_phids
)
{
$properties
->
addProperty
(
pht
(
'Forks'
),
$this
->
renderHandlesForPHIDs
(
$child_phids
));
}
$descriptions
=
PhabricatorPolicyQuery
::
renderPolicyDescriptions
(
$user
,
$paste
);
return
$properties
;
}
}
Event Timeline
Log In to Comment