Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F967245
PhameBlogViewController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
5 KB
Referenced Files
None
Subscribers
None
PhameBlogViewController.php
View Options
<?php
final
class
PhameBlogViewController
extends
PhameLiveController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$response
=
$this
->
setupLiveEnvironment
();
if
(
$response
)
{
return
$response
;
}
$viewer
=
$this
->
getViewer
();
$blog
=
$this
->
getBlog
();
$is_live
=
$this
->
getIsLive
();
$is_external
=
$this
->
getIsExternal
();
$pager
=
id
(
new
AphrontCursorPagerView
())
->
readFromRequest
(
$request
);
$post_query
=
id
(
new
PhamePostQuery
())
->
setViewer
(
$viewer
)
->
withBlogPHIDs
(
array
(
$blog
->
getPHID
()))
->
setOrder
(
'datePublished'
)
->
withVisibility
(
array
(
PhameConstants
::
VISIBILITY_PUBLISHED
,
PhameConstants
::
VISIBILITY_DRAFT
,
));
if
(
$is_live
)
{
$post_query
->
withVisibility
(
array
(
PhameConstants
::
VISIBILITY_PUBLISHED
));
}
$posts
=
$post_query
->
executeWithCursorPager
(
$pager
);
$hero
=
$this
->
buildPhameHeader
(
$blog
);
$header
=
id
(
new
PHUIHeaderView
())
->
addClass
(
'phame-header-bar'
)
->
setUser
(
$viewer
);
if
(!
$is_external
)
{
if
(
$blog
->
isArchived
())
{
$header_icon
=
'fa-ban'
;
$header_name
=
pht
(
'Archived'
);
$header_color
=
'dark'
;
}
else
{
$header_icon
=
'fa-check'
;
$header_name
=
pht
(
'Active'
);
$header_color
=
'bluegrey'
;
}
$header
->
setStatus
(
$header_icon
,
$header_color
,
$header_name
);
$actions
=
$this
->
renderActions
(
$blog
);
$header
->
setActionList
(
$actions
);
$header
->
setPolicyObject
(
$blog
);
}
if
(
$posts
)
{
$post_list
=
id
(
new
PhamePostListView
())
->
setPosts
(
$posts
)
->
setViewer
(
$viewer
)
->
setIsExternal
(
$is_external
)
->
setIsLive
(
$is_live
)
->
setNodata
(
pht
(
'This blog has no visible posts.'
));
}
else
{
$create_button
=
id
(
new
PHUIButtonView
())
->
setTag
(
'a'
)
->
setText
(
pht
(
'Write a Post'
))
->
setHref
(
$this
->
getApplicationURI
(
'post/edit/?blog='
.
$blog
->
getID
()))
->
setColor
(
PHUIButtonView
::
GREEN
);
$post_list
=
id
(
new
PHUIBigInfoView
())
->
setIcon
(
'fa-star'
)
->
setTitle
(
$blog
->
getName
())
->
setDescription
(
pht
(
'No one has written any blog posts yet.'
));
$can_edit
=
PhabricatorPolicyFilter
::
hasCapability
(
$viewer
,
$blog
,
PhabricatorPolicyCapability
::
CAN_EDIT
);
if
(
$can_edit
)
{
$post_list
->
addAction
(
$create_button
);
}
}
$page
=
id
(
new
PHUIDocumentView
())
->
setHeader
(
$header
)
->
appendChild
(
$post_list
);
$description
=
null
;
if
(
strlen
(
$blog
->
getDescription
()))
{
$description
=
new
PHUIRemarkupView
(
$viewer
,
$blog
->
getDescription
());
}
else
{
$description
=
phutil_tag
(
'em'
,
array
(),
pht
(
'No description.'
));
}
$about
=
id
(
new
PhameDescriptionView
())
->
setTitle
(
pht
(
'About %s'
,
$blog
->
getName
()))
->
setDescription
(
$description
)
->
setImage
(
$blog
->
getProfileImageURI
());
$crumbs
=
$this
->
buildApplicationCrumbs
()
->
setBorder
(
false
);
$page
=
$this
->
newPage
()
->
setTitle
(
$blog
->
getName
())
->
setPageObjectPHIDs
(
array
(
$blog
->
getPHID
()))
->
setCrumbs
(
$crumbs
)
->
appendChild
(
array
(
$hero
,
$page
,
$about
,
));
return
$page
;
}
private
function
renderActions
(
PhameBlog
$blog
)
{
$viewer
=
$this
->
getViewer
();
$actions
=
id
(
new
PhabricatorActionListView
())
->
setObject
(
$blog
)
->
setUser
(
$viewer
);
$can_edit
=
PhabricatorPolicyFilter
::
hasCapability
(
$viewer
,
$blog
,
PhabricatorPolicyCapability
::
CAN_EDIT
);
$actions
->
addAction
(
id
(
new
PhabricatorActionView
())
->
setIcon
(
'fa-plus'
)
->
setHref
(
$this
->
getApplicationURI
(
'post/edit/?blog='
.
$blog
->
getID
()))
->
setName
(
pht
(
'Write Post'
))
->
setDisabled
(!
$can_edit
)
->
setWorkflow
(!
$can_edit
));
$actions
->
addAction
(
id
(
new
PhabricatorActionView
())
->
setUser
(
$viewer
)
->
setIcon
(
'fa-search'
)
->
setHref
(
$this
->
getApplicationURI
(
'post/?blog='
.
$blog
->
getPHID
()))
->
setName
(
pht
(
'Search Posts'
)));
$actions
->
addAction
(
id
(
new
PhabricatorActionView
())
->
setUser
(
$viewer
)
->
setIcon
(
'fa-globe'
)
->
setHref
(
$blog
->
getLiveURI
())
->
setName
(
pht
(
'View Live'
)));
$actions
->
addAction
(
id
(
new
PhabricatorActionView
())
->
setIcon
(
'fa-pencil'
)
->
setHref
(
$this
->
getApplicationURI
(
'blog/manage/'
.
$blog
->
getID
().
'/'
))
->
setName
(
pht
(
'Manage Blog'
)));
return
$actions
;
}
private
function
buildPhameHeader
(
PhameBlog
$blog
)
{
$image
=
null
;
if
(
$blog
->
getHeaderImagePHID
())
{
$image
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'phame-header-hero'
,
),
phutil_tag
(
'img'
,
array
(
'src'
=>
$blog
->
getHeaderImageURI
(),
'class'
=>
'phame-header-image'
,
)));
}
$title
=
phutil_tag_div
(
'phame-header-title'
,
$blog
->
getName
());
$subtitle
=
null
;
if
(
$blog
->
getSubtitle
())
{
$subtitle
=
phutil_tag_div
(
'phame-header-subtitle'
,
$blog
->
getSubtitle
());
}
return
phutil_tag_div
(
'phame-mega-header'
,
array
(
$image
,
$title
,
$subtitle
));
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Jun 18, 3:19 AM (1 d, 15 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
223814
Default Alt Text
PhameBlogViewController.php (5 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment