Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F108745330
DifferentialCreateDiffConduitAPIMethod.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
Fri, Apr 18, 06:23
Size
5 KB
Mime Type
text/x-php
Expires
Sun, Apr 20, 06:23 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25643613
Attached To
rPH Phabricator
DifferentialCreateDiffConduitAPIMethod.php
View Options
<?php
final
class
DifferentialCreateDiffConduitAPIMethod
extends
DifferentialConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'differential.creatediff'
;
}
public
function
getMethodDescription
()
{
return
'Create a new Differential diff.'
;
}
public
function
defineParamTypes
()
{
$vcs_const
=
$this
->
formatStringConstants
(
array
(
'svn'
,
'git'
,
'hg'
,
));
$status_const
=
$this
->
formatStringConstants
(
array
(
'none'
,
'skip'
,
'okay'
,
'warn'
,
'fail'
,
'postponed'
,
));
return
array
(
'changes'
=>
'required list<dict>'
,
'sourceMachine'
=>
'required string'
,
'sourcePath'
=>
'required string'
,
'branch'
=>
'required string'
,
'bookmark'
=>
'optional string'
,
'sourceControlSystem'
=>
'required '
.
$vcs_const
,
'sourceControlPath'
=>
'required string'
,
'sourceControlBaseRevision'
=>
'required string'
,
'creationMethod'
=>
'optional string'
,
'arcanistProject'
=>
'optional string'
,
'lintStatus'
=>
'required '
.
$status_const
,
'unitStatus'
=>
'required '
.
$status_const
,
'repositoryPHID'
=>
'optional phid'
,
'parentRevisionID'
=>
'deprecated'
,
'authorPHID'
=>
'deprecated'
,
'repositoryUUID'
=>
'deprecated'
,
);
}
public
function
defineReturnType
()
{
return
'nonempty dict'
;
}
public
function
defineErrorTypes
()
{
return
array
(
);
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$viewer
=
$request
->
getUser
();
$change_data
=
$request
->
getValue
(
'changes'
);
$changes
=
array
();
foreach
(
$change_data
as
$dict
)
{
$changes
[]
=
ArcanistDiffChange
::
newFromDictionary
(
$dict
);
}
$diff
=
DifferentialDiff
::
newFromRawChanges
(
$viewer
,
$changes
);
// TODO: Remove repository UUID eventually; for now continue writing
// the UUID. Note that we'll overwrite it below if we identify a
// repository, and `arc` no longer sends it. This stuff is retained for
// backward compatibility.
$repository_uuid
=
$request
->
getValue
(
'repositoryUUID'
);
$repository_phid
=
$request
->
getValue
(
'repositoryPHID'
);
if
(
$repository_phid
)
{
$repository
=
id
(
new
PhabricatorRepositoryQuery
())
->
setViewer
(
$viewer
)
->
withPHIDs
(
array
(
$repository_phid
))
->
executeOne
();
if
(
$repository
)
{
$repository_phid
=
$repository
->
getPHID
();
$repository_uuid
=
$repository
->
getUUID
();
}
}
$project_name
=
$request
->
getValue
(
'arcanistProject'
);
$project_phid
=
null
;
if
(
$project_name
)
{
$arcanist_project
=
id
(
new
PhabricatorRepositoryArcanistProject
())
->
loadOneWhere
(
'name = %s'
,
$project_name
);
if
(!
$arcanist_project
)
{
$arcanist_project
=
new
PhabricatorRepositoryArcanistProject
();
$arcanist_project
->
setName
(
$project_name
);
$arcanist_project
->
save
();
}
$project_phid
=
$arcanist_project
->
getPHID
();
}
switch
(
$request
->
getValue
(
'lintStatus'
))
{
case
'skip'
:
$lint_status
=
DifferentialLintStatus
::
LINT_SKIP
;
break
;
case
'okay'
:
$lint_status
=
DifferentialLintStatus
::
LINT_OKAY
;
break
;
case
'warn'
:
$lint_status
=
DifferentialLintStatus
::
LINT_WARN
;
break
;
case
'fail'
:
$lint_status
=
DifferentialLintStatus
::
LINT_FAIL
;
break
;
case
'postponed'
:
$lint_status
=
DifferentialLintStatus
::
LINT_POSTPONED
;
break
;
case
'none'
:
default
:
$lint_status
=
DifferentialLintStatus
::
LINT_NONE
;
break
;
}
switch
(
$request
->
getValue
(
'unitStatus'
))
{
case
'skip'
:
$unit_status
=
DifferentialUnitStatus
::
UNIT_SKIP
;
break
;
case
'okay'
:
$unit_status
=
DifferentialUnitStatus
::
UNIT_OKAY
;
break
;
case
'warn'
:
$unit_status
=
DifferentialUnitStatus
::
UNIT_WARN
;
break
;
case
'fail'
:
$unit_status
=
DifferentialUnitStatus
::
UNIT_FAIL
;
break
;
case
'postponed'
:
$unit_status
=
DifferentialUnitStatus
::
UNIT_POSTPONED
;
break
;
case
'none'
:
default
:
$unit_status
=
DifferentialUnitStatus
::
UNIT_NONE
;
break
;
}
$diff_data_dict
=
array
(
'sourcePath'
=>
$request
->
getValue
(
'sourcePath'
),
'sourceMachine'
=>
$request
->
getValue
(
'sourceMachine'
),
'branch'
=>
$request
->
getValue
(
'branch'
),
'creationMethod'
=>
$request
->
getValue
(
'creationMethod'
),
'authorPHID'
=>
$viewer
->
getPHID
(),
'bookmark'
=>
$request
->
getValue
(
'bookmark'
),
'repositoryUUID'
=>
$repository_uuid
,
'repositoryPHID'
=>
$repository_phid
,
'sourceControlSystem'
=>
$request
->
getValue
(
'sourceControlSystem'
),
'sourceControlPath'
=>
$request
->
getValue
(
'sourceControlPath'
),
'sourceControlBaseRevision'
=>
$request
->
getValue
(
'sourceControlBaseRevision'
),
'arcanistProjectPHID'
=>
$project_phid
,
'lintStatus'
=>
$lint_status
,
'unitStatus'
=>
$unit_status
,);
$xactions
=
array
(
id
(
new
DifferentialTransaction
())
->
setTransactionType
(
DifferentialDiffTransaction
::
TYPE_DIFF_CREATE
)
->
setNewValue
(
$diff_data_dict
),);
id
(
new
DifferentialDiffEditor
())
->
setActor
(
$viewer
)
->
setContentSourceFromConduitRequest
(
$request
)
->
applyTransactions
(
$diff
,
$xactions
);
$path
=
'/differential/diff/'
.
$diff
->
getID
().
'/'
;
$uri
=
PhabricatorEnv
::
getURI
(
$path
);
return
array
(
'diffid'
=>
$diff
->
getID
(),
'uri'
=>
$uri
,
);
}
}
Event Timeline
Log In to Comment