Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102671719
PasteCreateConduitAPIMethod.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, Feb 23, 02:34
Size
1 KB
Mime Type
text/x-php
Expires
Tue, Feb 25, 02:34 (1 d, 14 h)
Engine
blob
Format
Raw Data
Handle
24357031
Attached To
rPH Phabricator
PasteCreateConduitAPIMethod.php
View Options
<?php
final
class
PasteCreateConduitAPIMethod
extends
PasteConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'paste.create'
;
}
public
function
getMethodDescription
()
{
return
pht
(
'Create a new paste.'
);
}
protected
function
defineParamTypes
()
{
return
array
(
'content'
=>
'required string'
,
'title'
=>
'optional string'
,
'language'
=>
'optional string'
,
);
}
protected
function
defineReturnType
()
{
return
'nonempty dict'
;
}
protected
function
defineErrorTypes
()
{
return
array
(
'ERR-NO-PASTE'
=>
pht
(
'Paste may not be empty.'
),
);
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$content
=
$request
->
getValue
(
'content'
);
$title
=
$request
->
getValue
(
'title'
);
$language
=
$request
->
getValue
(
'language'
);
if
(!
strlen
(
$content
))
{
throw
new
ConduitException
(
'ERR-NO-PASTE'
);
}
$title
=
nonempty
(
$title
,
pht
(
'Masterwork From Distant Lands'
));
$language
=
nonempty
(
$language
,
''
);
$viewer
=
$request
->
getUser
();
$paste
=
PhabricatorPaste
::
initializeNewPaste
(
$viewer
);
$file
=
PhabricatorPasteEditor
::
initializeFileForPaste
(
$viewer
,
$title
,
$content
);
$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
(
$language
);
$editor
=
id
(
new
PhabricatorPasteEditor
())
->
setActor
(
$viewer
)
->
setContentSourceFromConduitRequest
(
$request
);
$xactions
=
$editor
->
applyTransactions
(
$paste
,
$xactions
);
$paste
->
attachRawContent
(
$content
);
return
$this
->
buildPasteInfoDictionary
(
$paste
);
}
}
Event Timeline
Log In to Comment