Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96122116
ConpherenceCreateThreadConduitAPIMethod.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, Dec 22, 21:18
Size
1 KB
Mime Type
text/x-php
Expires
Tue, Dec 24, 21:18 (2 d)
Engine
blob
Format
Raw Data
Handle
23127057
Attached To
rPH Phabricator
ConpherenceCreateThreadConduitAPIMethod.php
View Options
<?php
final
class
ConpherenceCreateThreadConduitAPIMethod
extends
ConpherenceConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'conpherence.createthread'
;
}
public
function
getMethodDescription
()
{
return
pht
(
'Create a new conpherence thread.'
);
}
protected
function
defineParamTypes
()
{
return
array
(
'title'
=>
'required string'
,
'topic'
=>
'optional string'
,
'message'
=>
'optional string'
,
'participantPHIDs'
=>
'required list<phids>'
,
);
}
protected
function
defineReturnType
()
{
return
'nonempty dict'
;
}
protected
function
defineErrorTypes
()
{
return
array
(
'ERR_EMPTY_PARTICIPANT_PHIDS'
=>
pht
(
'You must specify participant phids.'
),
'ERR_EMPTY_TITLE'
=>
pht
(
'You must specify a title.'
),
);
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$participant_phids
=
$request
->
getValue
(
'participantPHIDs'
,
array
());
$message
=
$request
->
getValue
(
'message'
);
$title
=
$request
->
getValue
(
'title'
);
$topic
=
$request
->
getValue
(
'topic'
);
list
(
$errors
,
$conpherence
)
=
ConpherenceEditor
::
createThread
(
$request
->
getUser
(),
$participant_phids
,
$title
,
$message
,
$request
->
newContentSource
(),
$topic
);
if
(
$errors
)
{
foreach
(
$errors
as
$error_code
)
{
switch
(
$error_code
)
{
case
ConpherenceEditor
::
ERROR_EMPTY_PARTICIPANTS
:
throw
new
ConduitException
(
'ERR_EMPTY_PARTICIPANT_PHIDS'
);
break
;
}
}
}
return
array
(
'conpherenceID'
=>
$conpherence
->
getID
(),
'conpherencePHID'
=>
$conpherence
->
getPHID
(),
'conpherenceURI'
=>
$this
->
getConpherenceURI
(
$conpherence
),
);
}
}
Event Timeline
Log In to Comment