Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104534208
ConduitAPI_nuance_createitem_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
Mon, Mar 10, 06:16
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Mar 12, 06:16 (2 d)
Engine
blob
Format
Raw Data
Handle
24806106
Attached To
rPH Phabricator
ConduitAPI_nuance_createitem_Method.php
View Options
<?php
final
class
ConduitAPI_nuance_createitem_Method
extends
ConduitAPI_nuance_Method
{
public
function
getMethodDescription
()
{
return
pht
(
'Create a new item.'
);
}
public
function
defineParamTypes
()
{
return
array
(
'requestorPHID'
=>
'required string'
,
'sourcePHID'
=>
'required string'
,
'ownerPHID'
=>
'optional string'
,
);
}
public
function
defineReturnType
()
{
return
'nonempty dict'
;
}
public
function
defineErrorTypes
()
{
return
array
(
'ERR-NO-REQUESTOR-PHID'
=>
pht
(
'Items must have a requestor.'
),
'ERR-NO-SOURCE-PHID'
=>
pht
(
'Items must have a source.'
),
);
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$source_phid
=
$request
->
getValue
(
'sourcePHID'
);
$owner_phid
=
$request
->
getValue
(
'ownerPHID'
);
$requestor_phid
=
$request
->
getValue
(
'requestorPHID'
);
$user
=
$request
->
getUser
();
$item
=
NuanceItem
::
initializeNewItem
(
$user
);
$xactions
=
array
();
if
(
$source_phid
)
{
$xactions
[]
=
id
(
new
NuanceItemTransaction
())
->
setTransactionType
(
NuanceItemTransaction
::
TYPE_SOURCE
)
->
setNewValue
(
$source_phid
);
}
else
{
throw
new
ConduitException
(
'ERR-NO-SOURCE-PHID'
);
}
if
(
$owner_phid
)
{
$xactions
[]
=
id
(
new
NuanceItemTransaction
())
->
setTransactionType
(
NuanceItemTransaction
::
TYPE_OWNER
)
->
setNewValue
(
$owner_phid
);
}
if
(
$requestor_phid
)
{
$xactions
[]
=
id
(
new
NuanceItemTransaction
())
->
setTransactionType
(
NuanceItemTransaction
::
TYPE_REQUESTOR
)
->
setNewValue
(
$requestor_phid
);
}
else
{
throw
new
ConduitException
(
'ERR-NO-REQUESTOR-PHID'
);
}
$source
=
PhabricatorContentSource
::
newFromConduitRequest
(
$request
);
$editor
=
id
(
new
NuanceItemEditor
())
->
setActor
(
$user
)
->
setContentSource
(
$source
)
->
applyTransactions
(
$item
,
$xactions
);
return
$item
->
toDictionary
();
}
}
Event Timeline
Log In to Comment