Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F107105732
PhutilPayPalAPIFuture.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 4, 16:28
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Apr 6, 16:28 (2 d)
Engine
blob
Format
Raw Data
Handle
25332453
Attached To
rPHU libphutil
PhutilPayPalAPIFuture.php
View Options
<?php
/**
* @group paypal
*/
final
class
PhutilPayPalAPIFuture
extends
FutureProxy
{
private
$future
;
private
$host
=
'https://api-3t.paypal.com/nvp'
;
private
$params
=
array
();
private
$apiUsername
;
private
$apiPassword
;
private
$apiSignature
;
public
function
__construct
()
{
parent
::
__construct
(
null
);
}
public
function
setHost
(
$host
)
{
$this
->
host
=
$host
;
return
$this
;
}
public
function
getHost
()
{
return
$this
->
host
;
}
public
function
setAPIUsername
(
$api_username
)
{
$this
->
apiUsername
=
$api_username
;
return
$this
;
}
public
function
setAPIPassword
(
$api_password
)
{
$this
->
apiPassword
=
$api_password
;
return
$this
;
}
public
function
setAPISignature
(
$api_signature
)
{
$this
->
apiSignature
=
$api_signature
;
return
$this
;
}
public
function
setRawPayPalQuery
(
$action
,
array
$params
=
array
())
{
$this
->
params
=
array
(
'METHOD'
=>
$action
)
+
$params
+
$this
->
params
;
return
$this
;
}
protected
function
getProxiedFuture
()
{
if
(!
$this
->
future
)
{
$params
=
$this
->
params
;
if
(!
$this
->
params
)
{
throw
new
Exception
(
'You must setRawPayPalQuery()!'
);
}
if
(!
$this
->
apiUsername
)
{
throw
new
Exception
(
'You must set PayPal API credentials!'
);
}
$params
[
'VERSION'
]
=
'98.0'
;
$params
[
'USER'
]
=
$this
->
apiUsername
;
$params
[
'PWD'
]
=
$this
->
apiPassword
;
$params
[
'SIGNATURE'
]
=
$this
->
apiSignature
;
$this
->
future
=
id
(
new
HTTPSFuture
(
$this
->
getHost
(),
$params
))
->
setMethod
(
'POST'
);
}
return
$this
->
future
;
}
protected
function
didReceiveResult
(
$result
)
{
list
(
$status
,
$body
,
$headers
)
=
$result
;
if
(
$status
->
isError
())
{
throw
$status
;
}
$dict
=
array
();
parse_str
(
$body
,
$dict
);
if
(
idx
(
$dict
,
'ACK'
)
!==
'Success'
)
{
throw
new
Exception
(
'PayPal API call failed: '
.
print_r
(
$dict
,
true
));
}
return
$dict
;
}
}
Event Timeline
Log In to Comment