Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2894163
PhrictionEditConduitAPIMethod.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
2 KB
Referenced Files
None
Subscribers
None
PhrictionEditConduitAPIMethod.php
View Options
<?php
final
class
PhrictionEditConduitAPIMethod
extends
PhrictionConduitAPIMethod
{
public
function
getAPIMethodName
(
)
{
return
'phriction.edit'
;
}
public
function
getMethodDescription
(
)
{
return
pht
(
'Update a Phriction document.'
)
;
}
protected
function
defineParamTypes
(
)
{
return
array
(
'slug'
=>
'required string'
,
'title'
=>
'optional string'
,
'content'
=>
'optional string'
,
'description'
=>
'optional string'
,
)
;
}
protected
function
defineReturnType
(
)
{
return
'nonempty dict'
;
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$slug
=
$request
->
getValue
(
'slug'
)
;
$doc
=
id
(
new
PhrictionDocumentQuery
(
)
)
->
setViewer
(
$request
->
getUser
(
)
)
->
withSlugs
(
array
(
PhabricatorSlug
::
normalize
(
$slug
)
)
)
->
needContent
(
true
)
->
requireCapabilities
(
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
)
)
->
executeOne
(
)
;
if
(
!
$doc
)
{
throw
new
Exception
(
pht
(
'No such document.'
)
)
;
}
$xactions
=
array
(
)
;
if
(
$request
->
getValue
(
'title'
)
)
{
$xactions
[
]
=
id
(
new
PhrictionTransaction
(
)
)
->
setTransactionType
(
PhrictionDocumentTitleTransaction
::
TRANSACTIONTYPE
)
->
setNewValue
(
$request
->
getValue
(
'title'
)
)
;
}
if
(
$request
->
getValue
(
'content'
)
)
{
$xactions
[
]
=
id
(
new
PhrictionTransaction
(
)
)
->
setTransactionType
(
PhrictionDocumentContentTransaction
::
TRANSACTIONTYPE
)
->
setNewValue
(
$request
->
getValue
(
'content'
)
)
;
}
$editor
=
id
(
new
PhrictionTransactionEditor
(
)
)
->
setActor
(
$request
->
getUser
(
)
)
->
setContentSource
(
$request
->
newContentSource
(
)
)
->
setContinueOnNoEffect
(
true
)
->
setDescription
(
(string)
$request
->
getValue
(
'description'
)
)
;
try
{
$editor
->
applyTransactions
(
$doc
,
$xactions
)
;
}
catch
(
PhabricatorApplicationTransactionValidationException
$ex
)
{
// TODO - some magical hotness via T5873
throw
$ex
;
}
return
$this
->
buildDocumentInfoDictionary
(
$doc
)
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Jan 19, 19:29 (1 d, 11 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1127986
Default Alt Text
PhrictionEditConduitAPIMethod.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment