Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93191830
ConduitAPI_phriction_edit_Method.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
Tue, Nov 26, 22:00
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Nov 28, 22:00 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
22592897
Attached To
rPH Phabricator
ConduitAPI_phriction_edit_Method.php
View Options
<?php
final
class
ConduitAPI_phriction_edit_Method
extends
ConduitAPI_phriction_Method
{
public
function
getMethodDescription
()
{
return
"Update a Phriction document."
;
}
public
function
defineParamTypes
()
{
return
array
(
'slug'
=>
'required string'
,
'title'
=>
'optional string'
,
'content'
=>
'optional string'
,
'description'
=>
'optional string'
,
);
}
public
function
defineReturnType
()
{
return
'nonempty dict'
;
}
public
function
defineErrorTypes
()
{
return
array
(
);
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$slug
=
$request
->
getValue
(
'slug'
);
$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
(
'No such document.'
));
}
$editor
=
id
(
PhrictionDocumentEditor
::
newForSlug
(
$slug
))
->
setActor
(
$request
->
getUser
())
->
setTitle
(
$request
->
getValue
(
'title'
))
->
setContent
(
$request
->
getValue
(
'content'
))
->
setDescription
(
$request
->
getvalue
(
'description'
))
->
save
();
return
$this
->
buildDocumentInfoDictionary
(
$editor
->
getDocument
());
}
}
Event Timeline
Log In to Comment