Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106668164
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
Sat, Mar 29, 16:47
Size
4 KB
Mime Type
text/x-php
Expires
Mon, Mar 31, 17:47 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25248667
Attached To
rPH Phabricator
PhabricatorPasteViewController.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.
*/
final
class
PhabricatorPasteViewController
extends
PhabricatorPasteController
{
private
$id
;
private
$handles
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
id
=
$data
[
'id'
];
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
$paste
=
id
(
new
PhabricatorPasteQuery
())
->
setViewer
(
$user
)
->
withIDs
(
array
(
$this
->
id
))
->
executeOne
();
if
(!
$paste
)
{
return
new
Aphront404Response
();
}
$file
=
id
(
new
PhabricatorFile
())->
loadOneWhere
(
'phid = %s'
,
$paste
->
getFilePHID
());
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
(
$paste
,
$file
);
$properties
=
$this
->
buildPropertyView
(
$paste
,
$fork_phids
);
$source_code
=
$this
->
buildSourceCodeView
(
$paste
,
$file
);
$nav
=
$this
->
buildSideNavView
(
$paste
);
$nav
->
selectFilter
(
'paste'
);
$nav
->
appendChild
(
array
(
$header
,
$actions
,
$properties
,
$source_code
,
));
return
$this
->
buildApplicationPage
(
$nav
,
array
(
'title'
=>
$paste
->
getFullName
(),
'device'
=>
true
,
));
}
private
function
buildHeaderView
(
PhabricatorPaste
$paste
)
{
return
id
(
new
PhabricatorHeaderView
())
->
setObjectName
(
'P'
.
$paste
->
getID
())
->
setHeader
(
$paste
->
getTitle
());
}
private
function
buildActionView
(
PhabricatorPaste
$paste
,
PhabricatorFile
$file
)
{
return
id
(
new
PhabricatorActionListView
())
->
addAction
(
id
(
new
PhabricatorActionView
())
->
setName
(
pht
(
'Fork This Paste'
))
->
setIcon
(
'fork'
)
->
setHref
(
$this
->
getApplicationURI
(
'?parent='
.
$paste
->
getID
())))
->
addAction
(
id
(
new
PhabricatorActionView
())
->
setName
(
pht
(
'View Raw File'
))
->
setIcon
(
'file'
)
->
setHref
(
$file
->
getBestURI
()));
}
private
function
buildPropertyView
(
PhabricatorPaste
$paste
,
array
$child_phids
)
{
$user
=
$this
->
getRequest
()->
getUser
();
$properties
=
new
PhabricatorPropertyListView
();
$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
));
}
return
$properties
;
}
private
function
buildSourceCodeView
(
PhabricatorPaste
$paste
,
PhabricatorFile
$file
)
{
$language
=
$paste
->
getLanguage
();
$source
=
$file
->
loadFileData
();
if
(
empty
(
$language
))
{
$source
=
PhabricatorSyntaxHighlighter
::
highlightWithFilename
(
$paste
->
getTitle
(),
$source
);
}
else
{
$source
=
PhabricatorSyntaxHighlighter
::
highlightWithLanguage
(
$language
,
$source
);
}
$lines
=
explode
(
"
\n
"
,
$source
);
return
id
(
new
PhabricatorSourceCodeView
())
->
setLines
(
$lines
);
}
}
Event Timeline
Log In to Comment