Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F951945
PasteCreateMailReceiver.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
PasteCreateMailReceiver.php
View Options
<?php
final
class
PasteCreateMailReceiver
extends
PhabricatorMailReceiver
{
public
function
isEnabled
()
{
$app_class
=
'PhabricatorPasteApplication'
;
return
PhabricatorApplication
::
isClassInstalled
(
$app_class
);
}
public
function
canAcceptMail
(
PhabricatorMetaMTAReceivedMail
$mail
)
{
$config_key
=
'metamta.paste.public-create-email'
;
$create_address
=
PhabricatorEnv
::
getEnvConfig
(
$config_key
);
if
(!
$create_address
)
{
return
false
;
}
foreach
(
$mail
->
getToAddresses
()
as
$to_address
)
{
if
(
$this
->
matchAddresses
(
$create_address
,
$to_address
))
{
return
true
;
}
}
return
false
;
}
protected
function
processReceivedMail
(
PhabricatorMetaMTAReceivedMail
$mail
,
PhabricatorUser
$sender
)
{
$title
=
$mail
->
getSubject
();
if
(!
$title
)
{
$title
=
pht
(
'Email Paste'
);
}
$file
=
PhabricatorPasteEditor
::
initializeFileForPaste
(
$sender
,
$title
,
$mail
->
getCleanTextBody
());
$xactions
=
array
();
$xactions
[]
=
id
(
new
PhabricatorPasteTransaction
())
->
setTransactionType
(
PhabricatorPasteTransaction
::
TYPE_CONTENT
)
->
setNewValue
(
$file
->
getPHID
());
$xactions
[]
=
id
(
new
PhabricatorPasteTransaction
())
->
setTransactionType
(
PhabricatorPasteTransaction
::
TYPE_TITLE
)
->
setNewValue
(
$title
);
$xactions
[]
=
id
(
new
PhabricatorPasteTransaction
())
->
setTransactionType
(
PhabricatorPasteTransaction
::
TYPE_LANGUAGE
)
->
setNewValue
(
''
);
// auto-detect
$paste
=
PhabricatorPaste
::
initializeNewPaste
(
$sender
);
$content_source
=
PhabricatorContentSource
::
newForSource
(
PhabricatorContentSource
::
SOURCE_EMAIL
,
array
(
'id'
=>
$mail
->
getID
(),
));
$editor
=
id
(
new
PhabricatorPasteEditor
())
->
setActor
(
$sender
)
->
setContentSource
(
$content_source
)
->
setContinueOnNoEffect
(
true
);
$xactions
=
$editor
->
applyTransactions
(
$paste
,
$xactions
);
$mail
->
setRelatedPHID
(
$paste
->
getPHID
());
$subject_prefix
=
PhabricatorEnv
::
getEnvConfig
(
'metamta.paste.subject-prefix'
);
$subject
=
pht
(
'You successfully created a paste.'
);
$paste_uri
=
PhabricatorEnv
::
getProductionURI
(
$paste
->
getURI
());
$body
=
new
PhabricatorMetaMTAMailBody
();
$body
->
addRawSection
(
$subject
);
$body
->
addTextSection
(
pht
(
'PASTE LINK'
),
$paste_uri
);
id
(
new
PhabricatorMetaMTAMail
())
->
addTos
(
array
(
$sender
->
getPHID
()))
->
setSubject
(
$subject
)
->
setSubjectPrefix
(
$subject_prefix
)
->
setFrom
(
$sender
->
getPHID
())
->
setRelatedPHID
(
$paste
->
getPHID
())
->
setBody
(
$body
->
render
())
->
saveAndSend
();
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Jun 17, 3:21 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
226018
Default Alt Text
PasteCreateMailReceiver.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment