Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96132728
LegalpadDocumentEditor.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
Sun, Dec 22, 23:40
Size
5 KB
Mime Type
text/x-php
Expires
Tue, Dec 24, 23:40 (2 d)
Engine
blob
Format
Raw Data
Handle
23129414
Attached To
rPH Phabricator
LegalpadDocumentEditor.php
View Options
<?php
/**
* @group legalpad
*/
final
class
LegalpadDocumentEditor
extends
PhabricatorApplicationTransactionEditor
{
private
$isContribution
=
false
;
private
function
setIsContribution
(
$is_contribution
)
{
$this
->
isContribution
=
$is_contribution
;
}
private
function
isContribution
()
{
return
$this
->
isContribution
;
}
public
function
getTransactionTypes
()
{
$types
=
parent
::
getTransactionTypes
();
$types
[]
=
PhabricatorTransactions
::
TYPE_COMMENT
;
$types
[]
=
PhabricatorTransactions
::
TYPE_VIEW_POLICY
;
$types
[]
=
PhabricatorTransactions
::
TYPE_EDIT_POLICY
;
$types
[]
=
LegalpadTransactionType
::
TYPE_TITLE
;
$types
[]
=
LegalpadTransactionType
::
TYPE_TEXT
;
return
$types
;
}
protected
function
getCustomTransactionOldValue
(
PhabricatorLiskDAO
$object
,
PhabricatorApplicationTransaction
$xaction
)
{
switch
(
$xaction
->
getTransactionType
())
{
case
LegalpadTransactionType
::
TYPE_TITLE
:
return
$object
->
getDocumentBody
()->
getTitle
();
case
LegalpadTransactionType
::
TYPE_TEXT
:
return
$object
->
getDocumentBody
()->
getText
();
}
}
protected
function
getCustomTransactionNewValue
(
PhabricatorLiskDAO
$object
,
PhabricatorApplicationTransaction
$xaction
)
{
switch
(
$xaction
->
getTransactionType
())
{
case
LegalpadTransactionType
::
TYPE_TITLE
:
case
LegalpadTransactionType
::
TYPE_TEXT
:
return
$xaction
->
getNewValue
();
}
}
protected
function
applyCustomInternalTransaction
(
PhabricatorLiskDAO
$object
,
PhabricatorApplicationTransaction
$xaction
)
{
switch
(
$xaction
->
getTransactionType
())
{
case
LegalpadTransactionType
::
TYPE_TITLE
:
$object
->
setTitle
(
$xaction
->
getNewValue
());
$body
=
$object
->
getDocumentBody
();
$body
->
setTitle
(
$xaction
->
getNewValue
());
$this
->
setIsContribution
(
true
);
break
;
case
LegalpadTransactionType
::
TYPE_TEXT
:
$body
=
$object
->
getDocumentBody
();
$body
->
setText
(
$xaction
->
getNewValue
());
$this
->
setIsContribution
(
true
);
break
;
}
}
protected
function
applyCustomExternalTransaction
(
PhabricatorLiskDAO
$object
,
PhabricatorApplicationTransaction
$xaction
)
{
return
;
}
protected
function
applyFinalEffects
(
PhabricatorLiskDAO
$object
,
array
$xactions
)
{
if
(
$this
->
isContribution
())
{
$object
->
setVersions
(
$object
->
getVersions
()
+
1
);
$body
=
$object
->
getDocumentBody
();
$body
->
setVersion
(
$object
->
getVersions
());
$body
->
setDocumentPHID
(
$object
->
getPHID
());
$body
->
save
();
$object
->
setDocumentBodyPHID
(
$body
->
getPHID
());
$actor
=
$this
->
getActor
();
$type
=
PhabricatorEdgeConfig
::
TYPE_CONTRIBUTED_TO_OBJECT
;
id
(
new
PhabricatorEdgeEditor
())
->
addEdge
(
$actor
->
getPHID
(),
$type
,
$object
->
getPHID
())
->
setActor
(
$actor
)
->
save
();
$type
=
PhabricatorEdgeConfig
::
TYPE_OBJECT_HAS_CONTRIBUTOR
;
$contributors
=
PhabricatorEdgeQuery
::
loadDestinationPHIDs
(
$object
->
getPHID
(),
$type
);
$object
->
setRecentContributorPHIDs
(
array_slice
(
$contributors
,
0
,
3
));
$object
->
setContributorCount
(
count
(
$contributors
));
$object
->
save
();
}
return
$xactions
;
}
protected
function
mergeTransactions
(
PhabricatorApplicationTransaction
$u
,
PhabricatorApplicationTransaction
$v
)
{
$type
=
$u
->
getTransactionType
();
switch
(
$type
)
{
case
LegalpadTransactionType
::
TYPE_TITLE
:
case
LegalpadTransactionType
::
TYPE_TEXT
:
return
$v
;
}
return
parent
::
mergeTransactions
(
$u
,
$v
);
}
/* -( Sending Mail )------------------------------------------------------- */
protected
function
shouldSendMail
(
PhabricatorLiskDAO
$object
,
array
$xactions
)
{
return
true
;
}
protected
function
buildReplyHandler
(
PhabricatorLiskDAO
$object
)
{
return
id
(
new
LegalpadReplyHandler
())
->
setMailReceiver
(
$object
);
}
protected
function
buildMailTemplate
(
PhabricatorLiskDAO
$object
)
{
$id
=
$object
->
getID
();
$phid
=
$object
->
getPHID
();
$title
=
$object
->
getDocumentBody
()->
getTitle
();
return
id
(
new
PhabricatorMetaMTAMail
())
->
setSubject
(
"L{$id}: {$title}"
)
->
addHeader
(
'Thread-Topic'
,
"L{$id}: {$phid}"
);
}
protected
function
getMailTo
(
PhabricatorLiskDAO
$object
)
{
return
array
(
$object
->
getCreatorPHID
(),
$this
->
requireActor
()->
getPHID
(),
);
}
protected
function
shouldImplyCC
(
PhabricatorLiskDAO
$object
,
PhabricatorApplicationTransaction
$xaction
)
{
switch
(
$xaction
->
getTransactionType
())
{
case
LegalpadTransactionType
::
TYPE_TEXT
:
case
LegalpadTransactionType
::
TYPE_TITLE
:
return
true
;
}
return
parent
::
shouldImplyCC
(
$object
,
$xaction
);
}
protected
function
buildMailBody
(
PhabricatorLiskDAO
$object
,
array
$xactions
)
{
$body
=
parent
::
buildMailBody
(
$object
,
$xactions
);
$body
->
addTextSection
(
pht
(
'DOCUMENT DETAIL'
),
PhabricatorEnv
::
getProductionURI
(
'/legalpad/view/'
.
$object
->
getID
().
'/'
));
return
$body
;
}
protected
function
getMailSubjectPrefix
()
{
return
PhabricatorEnv
::
getEnvConfig
(
'metamta.legalpad.subject-prefix'
);
}
protected
function
shouldPublishFeedStory
(
PhabricatorLiskDAO
$object
,
array
$xactions
)
{
return
false
;
}
protected
function
supportsSearch
()
{
return
false
;
}
}
Event Timeline
Log In to Comment