Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F105733566
PholioMockEditor.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
Wed, Mar 19, 08:02
Size
6 KB
Mime Type
text/x-php
Expires
Fri, Mar 21, 08:02 (2 h, 58 m)
Engine
blob
Format
Raw Data
Handle
25038121
Attached To
rPH Phabricator
PholioMockEditor.php
View Options
<?php
final
class
PholioMockEditor
extends
PhabricatorApplicationTransactionEditor
{
private
$newImages
=
array
();
public
function
getEditorApplicationClass
()
{
return
'PhabricatorPholioApplication'
;
}
public
function
getEditorObjectsDescription
()
{
return
pht
(
'Pholio Mocks'
);
}
private
function
setNewImages
(
array
$new_images
)
{
assert_instances_of
(
$new_images
,
'PholioImage'
);
$this
->
newImages
=
$new_images
;
return
$this
;
}
public
function
getNewImages
()
{
return
$this
->
newImages
;
}
public
function
getTransactionTypes
()
{
$types
=
parent
::
getTransactionTypes
();
$types
[]
=
PhabricatorTransactions
::
TYPE_EDGE
;
$types
[]
=
PhabricatorTransactions
::
TYPE_COMMENT
;
$types
[]
=
PhabricatorTransactions
::
TYPE_VIEW_POLICY
;
$types
[]
=
PhabricatorTransactions
::
TYPE_EDIT_POLICY
;
return
$types
;
}
protected
function
shouldApplyInitialEffects
(
PhabricatorLiskDAO
$object
,
array
$xactions
)
{
foreach
(
$xactions
as
$xaction
)
{
switch
(
$xaction
->
getTransactionType
())
{
case
PholioImageFileTransaction
::
TRANSACTIONTYPE
:
case
PholioImageReplaceTransaction
::
TRANSACTIONTYPE
:
return
true
;
break
;
}
}
return
false
;
}
protected
function
applyInitialEffects
(
PhabricatorLiskDAO
$object
,
array
$xactions
)
{
$new_images
=
array
();
foreach
(
$xactions
as
$xaction
)
{
switch
(
$xaction
->
getTransactionType
())
{
case
PholioImageFileTransaction
::
TRANSACTIONTYPE
:
$new_value
=
$xaction
->
getNewValue
();
foreach
(
$new_value
as
$key
=>
$txn_images
)
{
if
(
$key
!=
'+'
)
{
continue
;
}
foreach
(
$txn_images
as
$image
)
{
$image
->
save
();
$new_images
[]
=
$image
;
}
}
break
;
case
PholioImageReplaceTransaction
::
TRANSACTIONTYPE
:
$image
=
$xaction
->
getNewValue
();
$image
->
save
();
$new_images
[]
=
$image
;
break
;
}
}
$this
->
setNewImages
(
$new_images
);
}
protected
function
applyFinalEffects
(
PhabricatorLiskDAO
$object
,
array
$xactions
)
{
$images
=
$this
->
getNewImages
();
foreach
(
$images
as
$image
)
{
$image
->
setMockID
(
$object
->
getID
());
$image
->
save
();
}
return
$xactions
;
}
protected
function
shouldSendMail
(
PhabricatorLiskDAO
$object
,
array
$xactions
)
{
return
true
;
}
protected
function
buildReplyHandler
(
PhabricatorLiskDAO
$object
)
{
return
id
(
new
PholioReplyHandler
())
->
setMailReceiver
(
$object
);
}
protected
function
buildMailTemplate
(
PhabricatorLiskDAO
$object
)
{
$id
=
$object
->
getID
();
$name
=
$object
->
getName
();
$original_name
=
$object
->
getOriginalName
();
return
id
(
new
PhabricatorMetaMTAMail
())
->
setSubject
(
"M{$id}: {$name}"
)
->
addHeader
(
'Thread-Topic'
,
"M{$id}: {$original_name}"
);
}
protected
function
getMailTo
(
PhabricatorLiskDAO
$object
)
{
return
array
(
$object
->
getAuthorPHID
(),
$this
->
requireActor
()->
getPHID
(),
);
}
protected
function
buildMailBody
(
PhabricatorLiskDAO
$object
,
array
$xactions
)
{
$body
=
new
PhabricatorMetaMTAMailBody
();
$headers
=
array
();
$comments
=
array
();
$inline_comments
=
array
();
foreach
(
$xactions
as
$xaction
)
{
if
(
$xaction
->
shouldHide
())
{
continue
;
}
$comment
=
$xaction
->
getComment
();
switch
(
$xaction
->
getTransactionType
())
{
case
PholioMockInlineTransaction
::
TRANSACTIONTYPE
:
if
(
$comment
&&
strlen
(
$comment
->
getContent
()))
{
$inline_comments
[]
=
$comment
;
}
break
;
case
PhabricatorTransactions
::
TYPE_COMMENT
:
if
(
$comment
&&
strlen
(
$comment
->
getContent
()))
{
$comments
[]
=
$comment
->
getContent
();
}
// fallthrough
default
:
$headers
[]
=
id
(
clone
$xaction
)
->
setRenderingTarget
(
'text'
)
->
getTitle
();
break
;
}
}
$body
->
addRawSection
(
implode
(
"
\n
"
,
$headers
));
foreach
(
$comments
as
$comment
)
{
$body
->
addRawSection
(
$comment
);
}
if
(
$inline_comments
)
{
$body
->
addRawSection
(
pht
(
'INLINE COMMENTS'
));
foreach
(
$inline_comments
as
$comment
)
{
$text
=
pht
(
'Image %d: %s'
,
$comment
->
getImageID
(),
$comment
->
getContent
());
$body
->
addRawSection
(
$text
);
}
}
$body
->
addLinkSection
(
pht
(
'MOCK DETAIL'
),
PhabricatorEnv
::
getProductionURI
(
'/M'
.
$object
->
getID
()));
return
$body
;
}
protected
function
getMailSubjectPrefix
()
{
return
PhabricatorEnv
::
getEnvConfig
(
'metamta.pholio.subject-prefix'
);
}
public
function
getMailTagsMap
()
{
return
array
(
PholioTransaction
::
MAILTAG_STATUS
=>
pht
(
"A mock's status changes."
),
PholioTransaction
::
MAILTAG_COMMENT
=>
pht
(
'Someone comments on a mock.'
),
PholioTransaction
::
MAILTAG_UPDATED
=>
pht
(
'Mock images or descriptions change.'
),
PholioTransaction
::
MAILTAG_OTHER
=>
pht
(
'Other mock activity not listed above occurs.'
),
);
}
protected
function
shouldPublishFeedStory
(
PhabricatorLiskDAO
$object
,
array
$xactions
)
{
return
true
;
}
protected
function
supportsSearch
()
{
return
true
;
}
protected
function
shouldApplyHeraldRules
(
PhabricatorLiskDAO
$object
,
array
$xactions
)
{
return
true
;
}
protected
function
buildHeraldAdapter
(
PhabricatorLiskDAO
$object
,
array
$xactions
)
{
return
id
(
new
HeraldPholioMockAdapter
())
->
setMock
(
$object
);
}
protected
function
sortTransactions
(
array
$xactions
)
{
$head
=
array
();
$tail
=
array
();
// Move inline comments to the end, so the comments precede them.
foreach
(
$xactions
as
$xaction
)
{
$type
=
$xaction
->
getTransactionType
();
if
(
$type
==
PholioMockInlineTransaction
::
TRANSACTIONTYPE
)
{
$tail
[]
=
$xaction
;
}
else
{
$head
[]
=
$xaction
;
}
}
return
array_values
(
array_merge
(
$head
,
$tail
));
}
protected
function
shouldImplyCC
(
PhabricatorLiskDAO
$object
,
PhabricatorApplicationTransaction
$xaction
)
{
switch
(
$xaction
->
getTransactionType
())
{
case
PholioMockInlineTransaction
::
TRANSACTIONTYPE
:
return
true
;
}
return
parent
::
shouldImplyCC
(
$object
,
$xaction
);
}
}
Event Timeline
Log In to Comment