Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92962623
PhamePostPublishController.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, Nov 25, 04:43
Size
2 KB
Mime Type
text/x-php
Expires
Wed, Nov 27, 04:43 (2 d)
Engine
blob
Format
Raw Data
Handle
22546317
Attached To
rPH Phabricator
PhamePostPublishController.php
View Options
<?php
/**
* @group phame
*/
final
class
PhamePostPublishController
extends
PhameController
{
private
$id
;
public
function
willProcessRequest
(
array
$data
)
{
$this
->
id
=
$data
[
'id'
];
}
public
function
processRequest
()
{
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
$post
=
id
(
new
PhamePostQuery
())
->
setViewer
(
$user
)
->
withIDs
(
array
(
$this
->
id
))
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
executeOne
();
if
(!
$post
)
{
return
new
Aphront404Response
();
}
$view_uri
=
$this
->
getApplicationURI
(
'/post/view/'
.
$post
->
getID
().
'/'
);
if
(
$request
->
isFormPost
())
{
$post
->
setVisibility
(
PhamePost
::
VISIBILITY_PUBLISHED
);
$post
->
setDatePublished
(
time
());
$post
->
save
();
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
$view_uri
);
}
$header
=
id
(
new
PhabricatorHeaderView
())
->
setHeader
(
'Preview Post'
);
$form
=
id
(
new
AphrontFormView
())
->
setUser
(
$user
)
->
setFlexible
(
true
)
->
appendChild
(
id
(
new
AphrontFormSubmitControl
())
->
setValue
(
pht
(
'Publish Post'
))
->
addCancelButton
(
$view_uri
));
$frame
=
$this
->
renderPreviewFrame
(
$post
);
$nav
=
$this
->
renderSideNavFilterView
(
null
);
$nav
->
appendChild
(
array
(
$header
,
$form
,
$frame
,
));
return
$this
->
buildApplicationPage
(
$nav
,
array
(
'title'
=>
pht
(
'Preview Post'
),
'device'
=>
true
,
));
}
private
function
renderPreviewFrame
(
PhamePost
$post
)
{
// TODO: Clean up this CSS.
return
phutil_render_tag
(
'div'
,
array
(
'style'
=>
'text-align: center; padding: 1em;'
,
),
phutil_tag
(
'iframe'
,
array
(
'style'
=>
'width: 100%; height: 600px; '
.
'border: 1px solid #303030; background: #303030;'
,
'src'
=>
$this
->
getApplicationURI
(
'/post/framed/'
.
$post
->
getID
().
'/'
),
),
''
));
}
}
Event Timeline
Log In to Comment