Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F108007789
PhabricatorConduitConsoleController.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, Apr 13, 02:38
Size
6 KB
Mime Type
text/x-php
Expires
Tue, Apr 15, 02:38 (1 d, 5 h)
Engine
blob
Format
Raw Data
Handle
25512197
Attached To
rPH Phabricator
PhabricatorConduitConsoleController.php
View Options
<?php
final
class
PhabricatorConduitConsoleController
extends
PhabricatorConduitController
{
public
function
shouldAllowPublic
()
{
return
true
;
}
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$this
->
getViewer
();
$method_name
=
$request
->
getURIData
(
'method'
);
$method
=
id
(
new
PhabricatorConduitMethodQuery
())
->
setViewer
(
$viewer
)
->
withMethods
(
array
(
$method_name
))
->
executeOne
();
if
(!
$method
)
{
return
new
Aphront404Response
();
}
$method
->
setViewer
(
$viewer
);
$call_uri
=
'/api/'
.
$method
->
getAPIMethodName
();
$errors
=
array
();
$form
=
id
(
new
AphrontFormView
())
->
setAction
(
$call_uri
)
->
setUser
(
$request
->
getUser
())
->
appendRemarkupInstructions
(
pht
(
'Enter parameters using **JSON**. For instance, to enter a '
.
'list, type: `%s`'
,
'["apple", "banana", "cherry"]'
));
$params
=
$method
->
getParamTypes
();
foreach
(
$params
as
$param
=>
$desc
)
{
$form
->
appendChild
(
id
(
new
AphrontFormTextControl
())
->
setLabel
(
$param
)
->
setName
(
"params[{$param}]"
)
->
setCaption
(
$desc
));
}
$must_login
=
!
$viewer
->
isLoggedIn
()
&&
$method
->
shouldRequireAuthentication
();
if
(
$must_login
)
{
$errors
[]
=
pht
(
'Login Required: This method requires authentication. You must '
.
'log in before you can make calls to it.'
);
}
else
{
$form
->
appendChild
(
id
(
new
AphrontFormSelectControl
())
->
setLabel
(
pht
(
'Output Format'
))
->
setName
(
'output'
)
->
setOptions
(
array
(
'human'
=>
pht
(
'Human Readable'
),
'json'
=>
pht
(
'JSON'
),
)))
->
appendChild
(
id
(
new
AphrontFormSubmitControl
())
->
addCancelButton
(
$this
->
getApplicationURI
())
->
setValue
(
pht
(
'Call Method'
)));
}
$header
=
id
(
new
PHUIHeaderView
())
->
setUser
(
$viewer
)
->
setHeader
(
$method
->
getAPIMethodName
())
->
setHeaderIcon
(
'fa-tty'
);
$form_box
=
id
(
new
PHUIObjectBoxView
())
->
setHeaderText
(
pht
(
'Call Method'
))
->
setBackground
(
PHUIObjectBoxView
::
BLUE_PROPERTY
)
->
setForm
(
$form
);
$properties
=
$this
->
buildMethodProperties
(
$method
);
$info_box
=
id
(
new
PHUIObjectBoxView
())
->
setHeaderText
(
pht
(
'API Method: %s'
,
$method
->
getAPIMethodName
()))
->
setFormErrors
(
$errors
)
->
setBackground
(
PHUIObjectBoxView
::
BLUE_PROPERTY
)
->
appendChild
(
$properties
);
$crumbs
=
$this
->
buildApplicationCrumbs
();
$crumbs
->
addTextCrumb
(
$method
->
getAPIMethodName
());
$crumbs
->
setBorder
(
true
);
$view
=
id
(
new
PHUITwoColumnView
())
->
setHeader
(
$header
)
->
setFooter
(
array
(
$info_box
,
$method
->
getMethodDocumentation
(),
$form_box
,
$this
->
renderExampleBox
(
$method
,
null
),
));
$title
=
$method
->
getAPIMethodName
();
return
$this
->
newPage
()
->
setTitle
(
$title
)
->
setCrumbs
(
$crumbs
)
->
appendChild
(
$view
);
}
private
function
buildMethodProperties
(
ConduitAPIMethod
$method
)
{
$viewer
=
$this
->
getViewer
();
$view
=
id
(
new
PHUIPropertyListView
());
$status
=
$method
->
getMethodStatus
();
$reason
=
$method
->
getMethodStatusDescription
();
switch
(
$status
)
{
case
ConduitAPIMethod
::
METHOD_STATUS_UNSTABLE
:
$stability_icon
=
'fa-exclamation-triangle yellow'
;
$stability_label
=
pht
(
'Unstable Method'
);
$stability_info
=
nonempty
(
$reason
,
pht
(
'This method is new and unstable. Its interface is subject '
.
'to change.'
));
break
;
case
ConduitAPIMethod
::
METHOD_STATUS_DEPRECATED
:
$stability_icon
=
'fa-exclamation-triangle red'
;
$stability_label
=
pht
(
'Deprecated Method'
);
$stability_info
=
nonempty
(
$reason
,
pht
(
'This method is deprecated.'
));
break
;
case
ConduitAPIMethod
::
METHOD_STATUS_FROZEN
:
$stability_icon
=
'fa-archive grey'
;
$stability_label
=
pht
(
'Frozen Method'
);
$stability_info
=
nonempty
(
$reason
,
pht
(
'This method is frozen and will eventually be deprecated.'
));
break
;
default
:
$stability_label
=
null
;
break
;
}
if
(
$stability_label
)
{
$view
->
addProperty
(
pht
(
'Stability'
),
array
(
id
(
new
PHUIIconView
())->
setIcon
(
$stability_icon
),
' '
,
phutil_tag
(
'strong'
,
array
(),
$stability_label
.
':'
),
' '
,
$stability_info
,
));
}
$view
->
addProperty
(
pht
(
'Returns'
),
$method
->
getReturnType
());
$error_types
=
$method
->
getErrorTypes
();
$error_types
[
'ERR-CONDUIT-CORE'
]
=
pht
(
'See error message for details.'
);
$error_description
=
array
();
foreach
(
$error_types
as
$error
=>
$meaning
)
{
$error_description
[]
=
hsprintf
(
'<li><strong>%s:</strong> %s</li>'
,
$error
,
$meaning
);
}
$error_description
=
phutil_tag
(
'ul'
,
array
(),
$error_description
);
$view
->
addProperty
(
pht
(
'Errors'
),
$error_description
);
$scope
=
$method
->
getRequiredScope
();
switch
(
$scope
)
{
case
ConduitAPIMethod
::
SCOPE_ALWAYS
:
$oauth_icon
=
'fa-globe green'
;
$oauth_description
=
pht
(
'OAuth clients may always call this method.'
);
break
;
case
ConduitAPIMethod
::
SCOPE_NEVER
:
$oauth_icon
=
'fa-ban red'
;
$oauth_description
=
pht
(
'OAuth clients may never call this method.'
);
break
;
default
:
$oauth_icon
=
'fa-unlock-alt blue'
;
$oauth_description
=
pht
(
'OAuth clients may call this method after requesting access to '
.
'the "%s" scope.'
,
$scope
);
break
;
}
$view
->
addProperty
(
pht
(
'OAuth Scope'
),
array
(
id
(
new
PHUIIconView
())->
setIcon
(
$oauth_icon
),
' '
,
$oauth_description
,
));
$view
->
addSectionHeader
(
pht
(
'Description'
),
PHUIPropertyListView
::
ICON_SUMMARY
);
$view
->
addTextContent
(
new
PHUIRemarkupView
(
$viewer
,
$method
->
getMethodDescription
()));
return
$view
;
}
}
Event Timeline
Log In to Comment