Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F94022856
ProjectCreateConduitAPIMethod.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, Dec 3, 07:53
Size
2 KB
Mime Type
text/x-php
Expires
Thu, Dec 5, 07:53 (2 d)
Engine
blob
Format
Raw Data
Handle
22713582
Attached To
rPH Phabricator
ProjectCreateConduitAPIMethod.php
View Options
<?php
final
class
ProjectCreateConduitAPIMethod
extends
ProjectConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'project.create'
;
}
public
function
getMethodDescription
()
{
return
pht
(
'Create a project.'
);
}
public
function
getMethodStatus
()
{
return
self
::
METHOD_STATUS_FROZEN
;
}
public
function
getMethodStatusDescription
()
{
return
pht
(
'This method is frozen and will eventually be deprecated. New code '
.
'should use "project.edit" instead.'
);
}
protected
function
defineParamTypes
()
{
return
array
(
'name'
=>
'required string'
,
'members'
=>
'optional list<phid>'
,
'icon'
=>
'optional string'
,
'color'
=>
'optional string'
,
'tags'
=>
'optional list<string>'
,
);
}
protected
function
defineReturnType
()
{
return
'dict'
;
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$user
=
$request
->
getUser
();
$this
->
requireApplicationCapability
(
ProjectCreateProjectsCapability
::
CAPABILITY
,
$user
);
$project
=
PhabricatorProject
::
initializeNewProject
(
$user
);
$type_name
=
PhabricatorProjectTransaction
::
TYPE_NAME
;
$members
=
$request
->
getValue
(
'members'
);
$xactions
=
array
();
$xactions
[]
=
id
(
new
PhabricatorProjectTransaction
())
->
setTransactionType
(
$type_name
)
->
setNewValue
(
$request
->
getValue
(
'name'
));
if
(
$request
->
getValue
(
'icon'
))
{
$xactions
[]
=
id
(
new
PhabricatorProjectTransaction
())
->
setTransactionType
(
PhabricatorProjectTransaction
::
TYPE_ICON
)
->
setNewValue
(
$request
->
getValue
(
'icon'
));
}
if
(
$request
->
getValue
(
'color'
))
{
$xactions
[]
=
id
(
new
PhabricatorProjectTransaction
())
->
setTransactionType
(
PhabricatorProjectTransaction
::
TYPE_COLOR
)
->
setNewValue
(
$request
->
getValue
(
'color'
));
}
if
(
$request
->
getValue
(
'tags'
))
{
$xactions
[]
=
id
(
new
PhabricatorProjectTransaction
())
->
setTransactionType
(
PhabricatorProjectTransaction
::
TYPE_SLUGS
)
->
setNewValue
(
$request
->
getValue
(
'tags'
));
}
$xactions
[]
=
id
(
new
PhabricatorProjectTransaction
())
->
setTransactionType
(
PhabricatorTransactions
::
TYPE_EDGE
)
->
setMetadataValue
(
'edge:type'
,
PhabricatorProjectProjectHasMemberEdgeType
::
EDGECONST
)
->
setNewValue
(
array
(
'+'
=>
array_fuse
(
$members
),
));
$editor
=
id
(
new
PhabricatorProjectTransactionEditor
())
->
setActor
(
$user
)
->
setContinueOnNoEffect
(
true
)
->
setContentSource
(
$request
->
newContentSource
());
$editor
->
applyTransactions
(
$project
,
$xactions
);
return
$this
->
buildProjectInfoDictionary
(
$project
);
}
}
Event Timeline
Log In to Comment