Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F107221215
PhrictionCreateConduitAPIMethod.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, Apr 6, 02:11
Size
2 KB
Mime Type
text/x-php
Expires
Tue, Apr 8, 02:11 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25355552
Attached To
rPH Phabricator
PhrictionCreateConduitAPIMethod.php
View Options
<?php
final
class
PhrictionCreateConduitAPIMethod
extends
PhrictionConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'phriction.create'
;
}
public
function
getMethodDescription
()
{
return
pht
(
'Create a Phriction document.'
);
}
public
function
defineParamTypes
()
{
return
array
(
'slug'
=>
'required string'
,
'title'
=>
'required string'
,
'content'
=>
'required string'
,
'description'
=>
'optional string'
,
);
}
public
function
defineReturnType
()
{
return
'nonempty dict'
;
}
public
function
defineErrorTypes
()
{
return
array
(
);
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$slug
=
$request
->
getValue
(
'slug'
);
if
(!
strlen
(
$slug
))
{
throw
new
Exception
(
pht
(
'No such document.'
));
}
$doc
=
id
(
new
PhrictionDocumentQuery
())
->
setViewer
(
$request
->
getUser
())
->
withSlugs
(
array
(
PhabricatorSlug
::
normalize
(
$slug
)))
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
))
->
executeOne
();
if
(
$doc
)
{
throw
new
Exception
(
pht
(
'Document already exists!'
));
}
$doc
=
PhrictionDocument
::
initializeNewDocument
(
$request
->
getUser
(),
$slug
);
$xactions
=
array
();
$xactions
[]
=
id
(
new
PhrictionTransaction
())
->
setTransactionType
(
PhrictionTransaction
::
TYPE_TITLE
)
->
setNewValue
(
$request
->
getValue
(
'title'
));
$xactions
[]
=
id
(
new
PhrictionTransaction
())
->
setTransactionType
(
PhrictionTransaction
::
TYPE_CONTENT
)
->
setNewValue
(
$request
->
getValue
(
'content'
));
$editor
=
id
(
new
PhrictionTransactionEditor
())
->
setActor
(
$request
->
getUser
())
->
setContentSourceFromConduitRequest
(
$request
)
->
setContinueOnNoEffect
(
true
)
->
setDescription
(
$request
->
getValue
(
'description'
));
try
{
$editor
->
applyTransactions
(
$doc
,
$xactions
);
}
catch
(
PhabricatorApplicationTransactionValidationException
$ex
)
{
// TODO - some magical hotness via T5873
throw
$ex
;
}
return
$this
->
buildDocumentInfoDictionary
(
$doc
);
}
}
Event Timeline
Log In to Comment