Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F956250
ConpherenceCreateThreadConduitAPIMethod.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
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
),
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Jun 17, 5:36 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
227248
Default Alt Text
ConpherenceCreateThreadConduitAPIMethod.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment