Implement PayPal payment processing
parent
7f60ad4114
commit
d9fc942142
@ -0,0 +1,40 @@
|
||||
<?php
|
||||
/*
|
||||
* ReDonate is more free software. It is licensed under the WTFPL, which
|
||||
* allows you to do pretty much anything with it, without having to
|
||||
* ask permission. Commercial use is allowed, and no attribution is
|
||||
* required. We do politely request that you share your modifications
|
||||
* to benefit other developers, but you are under no enforced
|
||||
* obligation to do so :)
|
||||
*
|
||||
* Please read the accompanying LICENSE document for the full WTFPL
|
||||
* licensing text.
|
||||
*/
|
||||
|
||||
if(!isset($_APP)) { die("Unauthorized."); }
|
||||
|
||||
try
|
||||
{
|
||||
$sPaymentRequest = new PaymentRequest($router->uParameters[2]);
|
||||
}
|
||||
catch (NotFoundException $e)
|
||||
{
|
||||
throw new RouterException("No such payment request exists.");
|
||||
}
|
||||
|
||||
if($sPaymentRequest->sSubscription->uEmailAddress != $router->uParameters[1])
|
||||
{
|
||||
throw new RouterException("The given e-mail address does not match the e-mail address for this payment request.");
|
||||
}
|
||||
|
||||
if($sPaymentRequest->uKey != $router->uParameters[3])
|
||||
{
|
||||
throw new RouterException("The given key does not match the key for this payment request.");
|
||||
}
|
||||
|
||||
if($sPaymentRequest->sPaid === true)
|
||||
{
|
||||
throw new RouterException("The payment request was already fulfilled.");
|
||||
}
|
||||
|
||||
$sRouterAuthenticated = true;
|
@ -0,0 +1,45 @@
|
||||
<?php
|
||||
/*
|
||||
* ReDonate is more free software. It is licensed under the WTFPL, which
|
||||
* allows you to do pretty much anything with it, without having to
|
||||
* ask permission. Commercial use is allowed, and no attribution is
|
||||
* required. We do politely request that you share your modifications
|
||||
* to benefit other developers, but you are under no enforced
|
||||
* obligation to do so :)
|
||||
*
|
||||
* Please read the accompanying LICENSE document for the full WTFPL
|
||||
* licensing text.
|
||||
*/
|
||||
|
||||
if(!isset($_APP)) { die("Unauthorized."); }
|
||||
|
||||
class PaymentRequest extends CPHPDatabaseRecordClass
|
||||
{
|
||||
public $table_name = "payment_requests";
|
||||
public $fill_query = "SELECT * FROM payment_requests WHERE `Id` = :Id";
|
||||
public $verify_query = "SELECT * FROM payment_requests WHERE `Id` = :Id";
|
||||
|
||||
public $prototype = array(
|
||||
'string' => array(
|
||||
'Currency' => "Currency",
|
||||
'Key' => "Key"
|
||||
),
|
||||
'numeric' => array(
|
||||
'CampaignId' => "CampaignId",
|
||||
'SubscriptionId' => "SubscriptionId",
|
||||
'Amount' => "Amount"
|
||||
),
|
||||
'boolean' => array(
|
||||
'Paid' => "Paid"
|
||||
),
|
||||
'timestamp' => array(
|
||||
'IssueDate' => "Date"
|
||||
),
|
||||
'campaign' => array(
|
||||
'Campaign' => "CampaignId"
|
||||
),
|
||||
'subscription' => array(
|
||||
'Subscription' => "SubscriptionId"
|
||||
)
|
||||
);
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
/*
|
||||
* ReDonate is more free software. It is licensed under the WTFPL, which
|
||||
* allows you to do pretty much anything with it, without having to
|
||||
* ask permission. Commercial use is allowed, and no attribution is
|
||||
* required. We do politely request that you share your modifications
|
||||
* to benefit other developers, but you are under no enforced
|
||||
* obligation to do so :)
|
||||
*
|
||||
* Please read the accompanying LICENSE document for the full WTFPL
|
||||
* licensing text.
|
||||
*/
|
||||
|
||||
if(!isset($_APP)) { die("Unauthorized."); }
|
||||
|
||||
throw new NotFoundException("No such payment request was found.");
|
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
/*
|
||||
* ReDonate is more free software. It is licensed under the WTFPL, which
|
||||
* allows you to do pretty much anything with it, without having to
|
||||
* ask permission. Commercial use is allowed, and no attribution is
|
||||
* required. We do politely request that you share your modifications
|
||||
* to benefit other developers, but you are under no enforced
|
||||
* obligation to do so :)
|
||||
*
|
||||
* Please read the accompanying LICENSE document for the full WTFPL
|
||||
* licensing text.
|
||||
*/
|
||||
|
||||
if(!isset($_APP)) { die("Unauthorized."); }
|
||||
|
||||
$sPaymentRequest->uPaid = true;
|
||||
$sPaymentRequest->InsertIntoDatabase();
|
||||
|
||||
$sPageTitle = "Thanks!";
|
||||
$sPageContents = NewTemplater::Render("payment/done", $locale->strings, array());
|
@ -0,0 +1,40 @@
|
||||
<?php
|
||||
/*
|
||||
* ReDonate is more free software. It is licensed under the WTFPL, which
|
||||
* allows you to do pretty much anything with it, without having to
|
||||
* ask permission. Commercial use is allowed, and no attribution is
|
||||
* required. We do politely request that you share your modifications
|
||||
* to benefit other developers, but you are under no enforced
|
||||
* obligation to do so :)
|
||||
*
|
||||
* Please read the accompanying LICENSE document for the full WTFPL
|
||||
* licensing text.
|
||||
*/
|
||||
|
||||
if(!isset($_APP)) { die("Unauthorized."); }
|
||||
|
||||
try
|
||||
{
|
||||
$sPaymentMethod = $sPaymentRequest->sCampaign->GetPaymentMethod(PaymentMethod::PAYPAL);
|
||||
}
|
||||
catch (NotFoundException $e)
|
||||
{
|
||||
throw new RouterException("No such payment method found.");
|
||||
}
|
||||
|
||||
if($sPaymentRequest->sCurrency == "btc")
|
||||
{
|
||||
$sCurrency = urlencode("USD");
|
||||
$sAmount = Currency::Convert("usd", "btc", $sPaymentRequest->sAmount);
|
||||
}
|
||||
else
|
||||
{
|
||||
$sCurrency = urlencode(strtoupper($sPaymentRequest->sCurrency));
|
||||
$sAmount = urlencode($sPaymentRequest->sAmount);
|
||||
}
|
||||
|
||||
$sQuotedRecipient = urlencode($sPaymentMethod->sAddress);
|
||||
$sQuotedName = urlencode("{$sPaymentRequest->sCampaign->sName} (via ReDonate.net)");
|
||||
$sQuotedNumber = urlencode("{$sPaymentRequest->sId}");
|
||||
$sQuotedReturnUrl = urlencode("http://redonate.net/pay/{$sPaymentRequest->sSubscription->sEmailAddress}/{$sPaymentRequest->sId}/{$sPaymentRequest->sKey}/paypal/done");
|
||||
redirect("https://www.paypal.com/cgi-bin/webscr?business={$sQuotedRecipient}&cmd=_donations&item_name={$sQuotedName}&item_number={$sQuotedNumber}¤cy_code={$sCurrency}&amount={$sAmount}&return={$sQuotedReturnUrl}");
|
@ -0,0 +1,5 @@
|
||||
<h2>Thanks for donating!</h2>
|
||||
|
||||
<p>
|
||||
Thank you for your contribution. You can close this page now.
|
||||
</p>
|
Loading…
Reference in New Issue