Infra 2583 - Remove all traces of bitpay/bitcoin

Change-Id: I2310bb77c94b662cb987b1cbdcbd9280d356c1bd
Signed-off-by: Eric Poirier <eric.poirier@eclipse-foundation.org>
diff --git a/credit.php b/credit.php
index ede8381..26b175a 100644
--- a/credit.php
+++ b/credit.php
@@ -27,9 +27,6 @@
 // Validate with PDT
 $Paypal->paypal_confirm_pdt();
 
-// Show thank you message for bitpay donations.
-$Paypal->get_gateway_bitpay_thank_you();
-
 # Begin: page-specific settings.  Change these.
 $pageTitle = "Together we can improve Eclipse";
 $Theme->setPageTitle($pageTitle);
diff --git a/process.php b/process.php
index f5ad8f1..b517bb8 100644
--- a/process.php
+++ b/process.php
@@ -44,11 +44,6 @@
     header('Location: ' . $url, TRUE, 302);
     break;
 
-  case 'bitpay':
-    $Payment = new BitPay();
-    $Payment->set_posted_donation_values();
-    break;
-
   default:
     $Payment = new PayPal();
     $Payment->set_posted_donation_values();
diff --git a/web-api/bitpay.php b/web-api/bitpay.php
deleted file mode 100644
index 517c80e..0000000
--- a/web-api/bitpay.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-/**
- * Copyright (c) 2015, 2018 Eclipse Foundation.
- *
- * This program and the accompanying materials are made
- * available under the terms of the Eclipse Public License 2.0
- * which is available at https://www.eclipse.org/legal/epl-2.0/
- *
- * Contributors:
- *   Christopher Guindon (Eclipse Foundation) - Initial implementation
- *   Eric Poirier (Eclipse Foundation)
- *
- * SPDX-License-Identifier: EPL-2.0
- */
-
-require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
-require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/classes/friends/payment.class.php");
-
-$App = new App();
-$Bitpay = new Bitpay();
-
-$App->preventCaching();
-$Bitpay->bitpay_confirm_ipn();