Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92878991
ConduitClient.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, Nov 24, 11:03
Size
3 KB
Mime Type
text/x-php
Expires
Tue, Nov 26, 11:03 (2 d)
Engine
blob
Format
Raw Data
Handle
22533163
Attached To
rPHU libphutil
ConduitClient.php
View Options
<?php
/*
* Copyright 2011 Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @group conduit
*/
class
ConduitClient
{
protected
$protocol
;
protected
$host
;
protected
$path
;
protected
$connectionID
;
protected
$profilerCallID
;
protected
$sessionKey
;
public
function
getConnectionID
()
{
return
$this
->
connectionID
;
}
public
function
__construct
(
$uri
)
{
$this
->
protocol
=
parse_url
(
$uri
,
PHP_URL_SCHEME
);
$this
->
host
=
parse_url
(
$uri
,
PHP_URL_HOST
);
$this
->
path
=
parse_url
(
$uri
,
PHP_URL_PATH
);
if
(!
$this
->
host
)
{
throw
new
Exception
(
"Conduit URI '{$uri}' must include a valid host."
);
}
$this
->
path
=
trim
(
$this
->
path
,
'/'
).
'/'
;
}
public
function
callMethodSynchronous
(
$method
,
array
$params
)
{
return
$this
->
callMethod
(
$method
,
$params
)->
resolve
();
}
public
function
didReceiveResponse
(
$method
,
$data
)
{
if
(
$this
->
profilerCallID
!==
null
)
{
$profiler
=
PhutilServiceProfiler
::
getInstance
();
$profiler
->
endServiceCall
(
$this
->
profilerCallID
,
array
());
}
if
(
$method
==
'conduit.connect'
)
{
$this
->
sessionKey
=
idx
(
$data
,
'sessionKey'
);
$this
->
connectionID
=
idx
(
$data
,
'connectionID'
);
}
return
$data
;
}
public
function
callMethod
(
$method
,
array
$params
)
{
$meta
=
array
();
if
(
$this
->
sessionKey
)
{
$meta
[
'sessionKey'
]
=
$this
->
sessionKey
;
}
if
(
$this
->
connectionID
)
{
$meta
[
'connectionID'
]
=
$this
->
connectionID
;
}
if
(
$method
==
'conduit.connect'
)
{
$certificate
=
idx
(
$params
,
'certificate'
);
if
(
$certificate
)
{
$token
=
time
();
$params
[
'authToken'
]
=
$token
;
$params
[
'authSignature'
]
=
sha1
(
$token
.
$certificate
);
}
unset
(
$params
[
'certificate'
]);
}
if
(
$meta
)
{
$params
[
'__conduit__'
]
=
$meta
;
}
$uri
=
$this
->
protocol
.
'://'
.
$this
->
host
.
'/'
.
$this
->
path
.
$method
;
$data
=
array
(
'params'
=>
json_encode
(
$params
),
'output'
=>
'json'
,
);
if
(
$this
->
protocol
==
'https'
)
{
$core_future
=
new
HTTPSFuture
(
$uri
,
$data
);
}
else
{
$core_future
=
new
HTTPFuture
(
$uri
,
$data
);
$core_future
->
setMethod
(
'POST'
);
}
$profiler
=
PhutilServiceProfiler
::
getInstance
();
$this
->
profilerCallID
=
$profiler
->
beginServiceCall
(
array
(
'type'
=>
'conduit'
,
'method'
=>
$method
,
));
$conduit_future
=
new
ConduitFuture
(
$core_future
);
$conduit_future
->
setClient
(
$this
,
$method
);
$conduit_future
->
isReady
();
return
$conduit_future
;
}
public
function
setTraceMode
(
$mode
)
{
phutil_deprecated
(
'ConduitClient::setTraceMode()'
,
'Use PhutilServiceProfiler.'
);
return
$this
;
}
}
Event Timeline
Log In to Comment