Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F452542
DifferentialCreateDiffConduitAPIMethod.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
5 KB
Referenced Files
None
Subscribers
None
DifferentialCreateDiffConduitAPIMethod.php
View Options
<?php
final
class
DifferentialCreateDiffConduitAPIMethod
extends
DifferentialConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'differential.creatediff'
;
}
public
function
getMethodDescription
()
{
return
pht
(
'Create a new Differential diff.'
);
}
protected
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'
=>
'deprecated'
,
'lintStatus'
=>
'required '
.
$status_const
,
'unitStatus'
=>
'required '
.
$status_const
,
'repositoryPHID'
=>
'optional phid'
,
'parentRevisionID'
=>
'deprecated'
,
'authorPHID'
=>
'deprecated'
,
'repositoryUUID'
=>
'deprecated'
,
);
}
protected
function
defineReturnType
()
{
return
'nonempty dict'
;
}
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
();
}
}
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'
),
'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
)
->
setContinueOnNoEffect
(
true
)
->
applyTransactions
(
$diff
,
$xactions
);
$path
=
'/differential/diff/'
.
$diff
->
getID
().
'/'
;
$uri
=
PhabricatorEnv
::
getURI
(
$path
);
return
array
(
'diffid'
=>
$diff
->
getID
(),
'uri'
=>
$uri
,
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 5, 12:43 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
68714
Default Alt Text
DifferentialCreateDiffConduitAPIMethod.php (5 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment