uncloud/meow-payv1
ahmadbilalkhalid e4f2f446f5 Merge branch 'nico/meow-pay-master' into HEAD 2020-02-23 20:25:35 +05:00
..
products move uncloud a layer up 2020-02-23 14:07:37 +01:00
README.md move uncloud a layer up 2020-02-23 14:07:37 +01:00
config.py move uncloud a layer up 2020-02-23 14:07:37 +01:00
hack-a-vpn.py move uncloud a layer up 2020-02-23 14:07:37 +01:00
helper.py move uncloud a layer up 2020-02-23 14:07:37 +01:00
ldaptest.py move uncloud a layer up 2020-02-23 14:07:37 +01:00
requirements.txt Merge branch 'nico/meow-pay-master' into HEAD 2020-02-23 20:25:35 +05:00
sample-pay.conf move uncloud a layer up 2020-02-23 14:07:37 +01:00
schemas.py move uncloud a layer up 2020-02-23 14:07:37 +01:00
stripe_hack.py move uncloud a layer up 2020-02-23 14:07:37 +01:00
stripe_utils.py move uncloud a layer up 2020-02-23 14:07:37 +01:00
ucloud_pay.py move uncloud a layer up 2020-02-23 14:07:37 +01:00

README.md

uncloud-pay

The generic product/payment system.

Installation

pip3 install -r requirements.txt

Getting Started

python ucloud_pay.py

Usage

1. Adding of products

http --json http://[::]:5000/product/add username=your_username_here password=your_password_here specs:=@ipv6-only-vm.json

2. Listing of products

http --json http://[::]:5000/product/list

3. Registering user's payment method (credit card for now using Stripe)

http --json http://[::]:5000/user/register_payment card_number=4111111111111111 cvc=123 expiry_year=2020 expiry_month=8 card_holder_name="The test user" username=your_username_here password=your_password_here line1="your_billing_address" city="your_city" country="your_country"

4. Ordering products

First of all, user have to buy the membership first.

http --json http://[::]:5000/product/order username=your_username_here password=your_password_here product_id=membership pay=True
http --json http://[::]:5000/product/order username=your_username_here password=your_password_here product_id=ipv6-only-vm cpu=1 ram=1 os-disk-space=10 os=alpine pay=True

5. Listing users orders

http --json POST http://[::]:5000/order/list username=your_username_here password=your_password_here