diff options
Diffstat (limited to 'server')
| -rw-r--r-- | server/config/env.js | 5 | ||||
| -rw-r--r-- | server/config/paypal.js | 15 | ||||
| -rw-r--r-- | server/package-lock.json | 13 | ||||
| -rw-r--r-- | server/package.json | 1 | 
4 files changed, 33 insertions, 1 deletions
| diff --git a/server/config/env.js b/server/config/env.js index befa8ba..441d6b6 100644 --- a/server/config/env.js +++ b/server/config/env.js @@ -2,5 +2,8 @@ require('dotenv').config();  module.exports = {    port: process.env.PORT || 3000,    mongoUrl: process.env.DB_CONN || "mongodb://localhost/mevn_ecommerce_db", -  masterKey: process.env.APP_SECRET || "you-should-use-something-different" +  masterKey: process.env.APP_SECRET || "you-should-use-something-different", +  paypalEnvironment: process.env.PAYPAL_ENVIRONMENT || "sandbox", +  paypalClientId: process.env.PAYPAL_CLIENT_ID || 'PAYPAL-SANDBOX-CLIENT-ID', +  paypalClientSecret: process.env.PAYPAL_CLIENT_SECRET || 'PAYPAL-SANDBOX-CLIENT-SECRET'  }; diff --git a/server/config/paypal.js b/server/config/paypal.js new file mode 100644 index 0000000..da6c2c3 --- /dev/null +++ b/server/config/paypal.js @@ -0,0 +1,15 @@ +const paypal = require('@paypal/checkout-server-sdk'); +const {paypalEnvironment, paypalClientId, paypalClientSecret} = require('./env'); + +function environment() { +  if (paypalEnvironment === 'live') +    return new paypal.core.LiveEnvironment(paypalClientId, paypalClientSecret); +  else +    return new paypal.core.SandboxEnvironment(paypalClientId, paypalClientSecret); +} + +function client() { +  return new paypal.core.PayPalHttpClient(environment()); +} + +module.exports = client; diff --git a/server/package-lock.json b/server/package-lock.json index e71a274..56ce2fb 100644 --- a/server/package-lock.json +++ b/server/package-lock.json @@ -4,6 +4,19 @@    "lockfileVersion": 1,    "requires": true,    "dependencies": { +    "@paypal/checkout-server-sdk": { +      "version": "1.0.2", +      "resolved": "https://registry.npmjs.org/@paypal/checkout-server-sdk/-/checkout-server-sdk-1.0.2.tgz", +      "integrity": "sha512-9wNxqgXrolEPfX62PEwyUB3SBGVF7v9N28rNJpXNp89qEpLoLStM+CT4wm/fcfYiVj9BHpimKcB4B7CBbLirxQ==", +      "requires": { +        "@paypal/paypalhttp": "^1.0.0" +      } +    }, +    "@paypal/paypalhttp": { +      "version": "1.0.0", +      "resolved": "https://registry.npmjs.org/@paypal/paypalhttp/-/paypalhttp-1.0.0.tgz", +      "integrity": "sha512-6gHT5HhPLObICXU8LFFiuoH0vCh3y1y0jl0OWDRuTZvptZ1WRS2eKcHigheytqxk+CWTH0qh0M3S5vEf1PJrSw==" +    },      "@sindresorhus/is": {        "version": "0.14.0",        "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", diff --git a/server/package.json b/server/package.json index 9209187..676d617 100644 --- a/server/package.json +++ b/server/package.json @@ -10,6 +10,7 @@    "author": "Mateja Maric",    "license": "GPL-3.0",    "dependencies": { +    "@paypal/checkout-server-sdk": "^1.0.2",      "bcryptjs": "^2.4.3",      "cors": "^2.8.5",      "dotenv": "^10.0.0", | 
