Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2894053
PhamePostEditor.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
3 KB
Referenced Files
None
Subscribers
None
PhamePostEditor.php
View Options
<?php
final
class
PhamePostEditor
extends
PhabricatorApplicationTransactionEditor
{
public
function
getEditorApplicationClass
(
)
{
return
PhabricatorPhameApplication
::
class
;
}
public
function
getEditorObjectsDescription
(
)
{
return
pht
(
'Phame Posts'
)
;
}
public
function
getCreateObjectTitle
(
$author
,
$object
)
{
return
pht
(
'%s created this post.'
,
$author
)
;
}
public
function
getCreateObjectTitleForFeed
(
$author
,
$object
)
{
return
pht
(
'%s created %s.'
,
$author
,
$object
)
;
}
public
function
getTransactionTypes
(
)
{
$types
=
parent
::
getTransactionTypes
(
)
;
$types
[
]
=
PhabricatorTransactions
::
TYPE_INTERACT_POLICY
;
$types
[
]
=
PhabricatorTransactions
::
TYPE_COMMENT
;
return
$types
;
}
protected
function
shouldSendMail
(
PhabricatorLiskDAO
$object
,
array
$xactions
)
{
if
(
$object
->
isDraft
(
)
||
(
$object
->
isArchived
(
)
)
)
{
return
false
;
}
return
true
;
}
protected
function
shouldPublishFeedStory
(
PhabricatorLiskDAO
$object
,
array
$xactions
)
{
if
(
$object
->
isDraft
(
)
||
$object
->
isArchived
(
)
)
{
return
false
;
}
return
true
;
}
protected
function
getMailTo
(
PhabricatorLiskDAO
$object
)
{
$phids
=
array
(
)
;
$phids
[
]
=
$object
->
getBloggerPHID
(
)
;
$phids
[
]
=
$this
->
requireActor
(
)
->
getPHID
(
)
;
$blog_phid
=
$object
->
getBlogPHID
(
)
;
if
(
$blog_phid
)
{
$cc_phids
=
PhabricatorSubscribersQuery
::
loadSubscribersForPHID
(
$blog_phid
)
;
foreach
(
$cc_phids
as
$cc
)
{
$phids
[
]
=
$cc
;
}
}
return
$phids
;
}
protected
function
buildMailTemplate
(
PhabricatorLiskDAO
$object
)
{
$title
=
$object
->
getTitle
(
)
;
return
id
(
new
PhabricatorMetaMTAMail
(
)
)
->
setSubject
(
$title
)
;
}
protected
function
buildReplyHandler
(
PhabricatorLiskDAO
$object
)
{
return
id
(
new
PhamePostReplyHandler
(
)
)
->
setMailReceiver
(
$object
)
;
}
protected
function
buildMailBody
(
PhabricatorLiskDAO
$object
,
array
$xactions
)
{
$body
=
parent
::
buildMailBody
(
$object
,
$xactions
)
;
// We don't send mail if the object is a draft, and we only want
// to include the full body of the post on the either the
// first creation or if it was created as a draft, once it goes live.
if
(
$this
->
getIsNewObject
(
)
)
{
$body
->
addRemarkupSection
(
null
,
$object
->
getBody
(
)
)
;
}
else
{
foreach
(
$xactions
as
$xaction
)
{
switch
(
$xaction
->
getTransactionType
(
)
)
{
case
PhamePostVisibilityTransaction
::
TRANSACTIONTYPE
:
if
(
!
$object
->
isDraft
(
)
&&
!
$object
->
isArchived
(
)
)
{
$body
->
addRemarkupSection
(
null
,
$object
->
getBody
(
)
)
;
}
break
;
}
}
}
$body
->
addLinkSection
(
pht
(
'POST DETAIL'
)
,
PhabricatorEnv
::
getProductionURI
(
$object
->
getViewURI
(
)
)
)
;
return
$body
;
}
public
function
getMailTagsMap
(
)
{
return
array
(
PhamePostTransaction
::
MAILTAG_CONTENT
=>
pht
(
"A post's content changes."
)
,
PhamePostTransaction
::
MAILTAG_SUBSCRIBERS
=>
pht
(
"A post's subscribers change."
)
,
PhamePostTransaction
::
MAILTAG_COMMENT
=>
pht
(
'Someone comments on a post.'
)
,
PhamePostTransaction
::
MAILTAG_OTHER
=>
pht
(
'Other post activity not listed above occurs.'
)
,
)
;
}
protected
function
getMailSubjectPrefix
(
)
{
return
'[Phame]'
;
}
protected
function
supportsSearch
(
)
{
return
true
;
}
protected
function
shouldApplyHeraldRules
(
PhabricatorLiskDAO
$object
,
array
$xactions
)
{
return
true
;
}
protected
function
buildHeraldAdapter
(
PhabricatorLiskDAO
$object
,
array
$xactions
)
{
return
id
(
new
HeraldPhamePostAdapter
(
)
)
->
setPost
(
$object
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Jan 19, 19:18 (1 d, 20 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1127895
Default Alt Text
PhamePostEditor.php (3 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment