08/10/22 - 19h00

master
ChérifBALDE 2022-10-08 19:11:56 +02:00 committed by cherif
parent a6f794d905
commit a23d8e30ec
3 changed files with 445 additions and 0 deletions

40
main.py
View File

@ -28,12 +28,14 @@ import ela_factures_mgt as invoice
import product_service as PS
import ela_factures_mgt as factures
import statistics as Stat
import strype_payement as Stripe
app = Flask(__name__)
cors = CORS(app, resources={r"/foo": {"origins": "*"}})
app.config['CORS_HEADERS'] = 'Content-Type'
app.config['UPLOAD_FOLDER'] = MYSY_GV.upload_folder
app.env = "Production"
app.debug = "Production"
@app.before_request
def before_request():
@ -1603,6 +1605,44 @@ def ela_index_given_classes_title():
return jsonify(status=status, message=retval)
"""
Stripe Payement : Creation d'un abonnement
"""
@app.route('/myclass/api/create-subscription/', methods=['POST','GET'])
@crossdomain(origin='*')
def strip_create_subscription():
# On recupere le corps (payload) de la requete
payload = request.form.to_dict()
print(" ### strip_create_subscription : payload = ",payload)
localStatus, subscription_id, payment_intent_client_secret = Stripe.create_subscription(payload)
return jsonify(status=localStatus, subscription_id=subscription_id,payment_intent_client_secret = payment_intent_client_secret )
"""
Stripe Payement : Creation d'un client dans Stripe
"""
@app.route('/myclass/api/create-create_customer/', methods=['POST','GET'])
@crossdomain(origin='*')
def strip_create_customer():
# On recupere le corps (payload) de la requete
payload = request.form.to_dict()
print(" ### strip_create_customer : payload = ",payload)
localStatus, stripe_client_id, payment_intent_client_secret = Stripe.create_customer(payload)
return jsonify(status=localStatus, stripe_client_id=stripe_client_id )
"""
Stripe Payement : Recuperation des methodes de payement d'un clien
"""
@app.route('/myclass/api/get_customer_payement_cards/', methods=['POST','GET'])
@crossdomain(origin='*')
def strip_get_customer_payement_cards():
# On recupere le corps (payload) de la requete
payload = request.form.to_dict()
print(" ### strip_create_customer : payload = ",payload)
localStatus= Stripe.get_customer_payement_cards(payload)
return jsonify(status=localStatus, )
if __name__ == '__main__':
print(" debut api")

View File

@ -29,6 +29,7 @@ import sys, os
from pymongo import ReturnDocument
from datetime import datetime
import GlobalVariable as MYSY_GV
import strype_payement as Stripe
@ -652,10 +653,51 @@ def update_partner_account(diction):
mydata['date_update'] = str(datetime.now())
#print(str(datetime.now()) + " webservice : diction = " + str(mydata))
coll_name = MYSY_GV.dbname['partnair_account']
"""
Si le compte partenaire n'as pas de compte de payement stripe, alors on profite de cette mise à jour pour le faire
"""
tmp = coll_name.find({'recid':str(partner_recid)})
print('### tmp = '+str(tmp[0]))
partnair_stripe_id = ""
if ("stripe_account_id" in tmp[0].keys()):
if tmp[0]['stripe_account_id']:
partnair_stripe_id = tmp[0]['stripe_account_id']
if ( partnair_stripe_id is False or len(partnair_stripe_id) < 5):
print('### le partenaire = ' + str(tmp[0]['nom']) + " n'as pas de compte Stripe. on va le créer")
"""
Creation du compte de payement Stripe
"""
my_stripe_data = {}
my_stripe_data['email'] = str(tmp[0]['email'])
my_stripe_data['name'] = str(tmp[0]['nom'])
my_stripe_data['city'] = ""
if ("adr_city" in tmp[0].keys()):
if tmp[0]['adr_city']:
my_stripe_data['city'] = str(tmp[0]['adr_city'])
my_stripe_data['name'] = "str(tmp[0]['adr_country'])"
if ("adr_country" in tmp[0].keys()):
if tmp[0]['adr_country']:
my_stripe_data['country'] = str(tmp[0]['adr_country'])
local_status, part_stripe_account_id = Stripe.create_customer(my_stripe_data)
mydata['stripe_account_id'] = part_stripe_account_id
if (local_status is False):
mycommon.myprint(
str(inspect.stack()[0][3]) + " - WARNING : Impossible de créer le compte STRIPE du Client " + str(
tmp[0]['nom']))
ret_val = coll_name.find_one_and_update(
@ -682,6 +724,9 @@ cette fonction valide un compte partenaire
La modification ne s'effectue que si le compte n'est pas verrouillé.
'locked'=0
/!\ : Juste apres la validation, le compte de payement est créé dans Stripe
'''
def valide_partnair_account(value):
try:
@ -710,6 +755,32 @@ def valide_partnair_account(value):
# il faut donc créer le token et renvoyer le token.
my_token = mycommon.create_token_urlsafe()
"""
Creation du compte de payement Stripe
"""
my_stripe_data = {}
my_stripe_data['email'] = str(tmp[0]['email'])
my_stripe_data['name'] = str(tmp[0]['nom'])
my_stripe_data['city'] = ""
if ("adr_city" in tmp[0].keys()):
if tmp[0]['adr_city']:
my_stripe_data['city'] = str(tmp[0]['adr_city'])
my_stripe_data['name'] = "str(tmp[0]['adr_country'])"
if ("adr_country" in tmp[0].keys()):
if tmp[0]['adr_country']:
my_stripe_data['country'] = str(tmp[0]['adr_country'])
local_status, part_stripe_account_id = Stripe.create_customer(my_stripe_data)
if( local_status is False):
mycommon.myprint(str(inspect.stack()[0][3]) + " - WARNING : Impossible de créer le compte STRIPE du Client "+str(tmp[0]['nom']))
'''
Create default / temporary pwd for new account
'''
@ -720,6 +791,7 @@ def valide_partnair_account(value):
update={"$set":
{'active': "1","date_update":str(now),
'token':str(my_token),
'stripe_account_id':part_stripe_account_id,
}
}
)

333
strype_payement.py Normal file
View File

@ -0,0 +1,333 @@
#! /usr/bin/env python3.6
"""
Python 3.6 or newer required.
"""
import stripe
import json
import os
from flask import Flask, render_template, jsonify, request
from dotenv import load_dotenv, find_dotenv
import GlobalVariable as MYSY_GV
from pymongo import ReturnDocument
import prj_common as mycommon
import inspect
import sys, os
# Setup Stripe python client library
load_dotenv(find_dotenv())
# For sample support and debugging, not required for production:
stripe.set_app_info(
'stripe-samples/subscription-use-cases/fixed-price',
version='0.0.1',
url='https://github.com/stripe-samples/subscription-use-cases/fixed-price')
stripe.api_version = '2020-08-27'
stripe.api_key = "sk_test_51LUUfAAbmaEugrFTrWsfcBWZtbBh9r3HCa2sgeyikG808LjSk3bAdFhV6KxgRZ3vFxooa6RE0c5zBkTuOUrKkyjy00BrsIXAPs"
#static_dir = str(os.path.abspath(os.path.join(__file__, "..", os.getenv("STATIC_DIR"))))
static_dir = "./"
app = Flask(__name__, static_folder=static_dir, static_url_path="", template_folder=static_dir)
@app.route('/', methods=['GET'])
def get_index():
return render_template('register.html')
@app.route('/config', methods=['GET'])
def get_config():
# Retrieves two prices with the lookup_keys
# `sample_basic` and `sample_premium`. To
# create these prices, you can use the Stripe
# CLI fixtures command with the supplied
# `seed.json` fixture file like so:
#
# stripe fixtures seed.json
#
prices = stripe.Price.list(
)
return jsonify(
publishableKey="pk_test_51LUUfAAbmaEugrFTI25uZBD3IFjbtaL6jUfRV83diDf7nco8worna4NGKhMHbPP71WCwT5EHFRdDNatxPrJWwgZ300kgH5EO4p",
prices=prices.data,
)
"""
Creation d'un client dans Stripe
"""
def create_customer(diction):
# Reads application/json and returns a response
#data = json.loads(request.data)
try:
field_list = ['name', 'email', 'country', 'city']
# recuperation des infos du partenaire
cust_name = ""
if ("name" in diction.keys()):
if diction['name']:
cust_name = diction['name']
cust_email = ""
if ("email" in diction.keys()):
if diction['email']:
cust_email = diction['email']
cust_country = ""
if ("country" in diction.keys()):
if diction['country']:
cust_country = diction['country']
cust_city = ""
if ("city" in diction.keys()):
if diction['city']:
cust_city = diction['city']
# Create a new customer object
#customer = stripe.Customer.create(email=data['email'])
customer = stripe.Customer.create(
email=cust_email,
name=cust_name,
address={
"city": cust_city,
"country": cust_country,
},
)
if( customer and customer.id ):
mycommon.myprint(
str(inspect.stack()[0][3]) + " - le partenaire "+str(cust_email)+" a été correctement créé dans Stripe. Son Id = "+str(customer.id))
return True, str(customer.id)
else:
mycommon.myprint(
str(inspect.stack()[0][3]) + " WARNING - Impossble de créer le partenaire " + str(
cust_email) + " Stripe.")
return False, False
except Exception as e:
exc_type, exc_obj, exc_tb = sys.exc_info()
mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - ERRORRRR AT Line : " + str(exc_tb.tb_lineno))
return False, False
"""
Recuperation des mode de payement d'un customer
"""
def get_customer_payement_cards(diction):
try:
field_list = ['stripe_account_id']
# recuperation des infos du partenaire
stripe_account_id = ""
if ("stripe_account_id" in diction.keys()):
if diction['stripe_account_id']:
stripe_account_id = diction['stripe_account_id']
customer_payments = stripe.Customer.list_payment_methods(
str(stripe_account_id),
type="card",
)
print(" ### customer_payments = "+str(customer_payments))
return True
except Exception as e:
exc_type, exc_obj, exc_tb = sys.exc_info()
mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - ERRORRRR AT Line : " + str(exc_tb.tb_lineno))
return False, False
def create_subscription(diction):
# Simulating authenticated user. Lookup the logged in user in your
# database, and set customer_id to the Stripe Customer ID of that user.
customer_id = ""
if ("customerid" in diction.keys()):
if diction['customerid']:
customer_id = diction['customerid']
# Extract the price ID from environment variables given the name
# of the price passed from the front end.
#
# `price_id` is the an ID of a Price object on your account.
# This was populated using Price's `lookup_key` in the /config endpoint
price_id = ""
if ("priceid" in diction.keys()):
if diction['priceid']:
price_id = diction['priceid']
try:
# Create the subscription. Note we're using
# expand here so that the API will return the Subscription's related
# latest invoice, and that latest invoice's payment_intent
# so we can collect payment information and confirm the payment on the front end.
# Create the subscription
subscription = stripe.Subscription.create(
customer=customer_id,
items=[{
'price': price_id,
}],
payment_behavior='default_incomplete',
expand=['latest_invoice.payment_intent'],
)
return True, subscription.id, subscription.latest_invoice.payment_intent.client_secret
except Exception as e:
exc_type, exc_obj, exc_tb = sys.exc_info()
mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - ERRORRRR AT Line : " + str(exc_tb.tb_lineno))
return False, False, False,
@app.route('/cancel-subscription', methods=['POST'])
def cancel_subscription():
data = json.loads(request.data)
try:
# Cancel the subscription by deleting it
deletedSubscription = stripe.Subscription.delete(data['subscriptionId'])
return jsonify(subscription=deletedSubscription)
except Exception as e:
return jsonify(error=str(e)), 403
@app.route('/subscriptions', methods=['GET'])
def list_subscriptions():
# Simulating authenticated user. Lookup the logged in user in your
# database, and set customer_id to the Stripe Customer ID of that user.
customer_id = request.cookies.get('customer')
try:
# Cancel the subscription by deleting it
subscriptions = stripe.Subscription.list(
customer=customer_id,
status='all',
expand=['data.default_payment_method']
)
return jsonify(subscriptions=subscriptions)
except Exception as e:
return jsonify(error=str(e)), 403
@app.route('/invoice-preview', methods=['GET'])
def preview_invoice():
# Simulating authenticated user. Lookup the logged in user in your
# database, and set customer_id to the Stripe Customer ID of that user.
customer_id = request.cookies.get('customer')
subscription_id = request.args.get('subscriptionId')
new_price_lookup_key = request.args.get('newPriceLookupKey')
try:
# Retrieve the subscription
subscription = stripe.Subscription.retrieve(subscription_id)
# Retrive the Invoice
invoice = stripe.Invoice.upcoming(
customer=customer_id,
subscription=subscription_id,
subscription_items=[{
'id': subscription['items']['data'][0].id,
'price': os.getenv(new_price_lookup_key),
}],
)
return jsonify(invoice=invoice)
except Exception as e:
return jsonify(error=str(e)), 403
@app.route('/update-subscription', methods=['POST'])
def update_subscription():
data = json.loads(request.data)
try:
subscription = stripe.Subscription.retrieve(data['subscriptionId'])
update_subscription = stripe.Subscription.modify(
data['subscriptionId'],
items=[{
'id': subscription['items']['data'][0].id,
'price': os.getenv(data['newPriceLookupKey'].upper()),
}]
)
return jsonify(update_subscription)
except Exception as e:
return jsonify(error=str(e)), 403
@app.route('/webhook', methods=['POST'])
def webhook_received():
# You can use webhooks to receive information about asynchronous payment events.
# For more about our webhook events check out https://stripe.com/docs/webhooks.
webhook_secret = os.getenv('STRIPE_WEBHOOK_SECRET')
request_data = json.loads(request.data)
if webhook_secret:
# Retrieve the event by verifying the signature using the raw body and secret if webhook signing is configured.
signature = request.headers.get('stripe-signature')
try:
event = stripe.Webhook.construct_event(
payload=request.data, sig_header=signature, secret=webhook_secret)
data = event['data']
except Exception as e:
return e
event_type = event['type']
else:
data = request_data['data']
event_type = request_data['type']
data_object = data['object']
if event_type == 'invoice.payment_succeeded':
if data_object['billing_reason'] == 'subscription_create':
# The subscription automatically activates after successful payment
# Set the payment method used to pay the first invoice
# as the default payment method for that subscription
subscription_id = data_object['subscription']
payment_intent_id = data_object['payment_intent']
# Retrieve the payment intent used to pay the subscription
payment_intent = stripe.PaymentIntent.retrieve(payment_intent_id)
# Set the default payment method
stripe.Subscription.modify(
subscription_id,
default_payment_method=payment_intent.payment_method
)
print("Default payment method set for subscription:" + payment_intent.payment_method)
elif event_type == 'invoice.payment_failed':
# If the payment fails or the customer does not have a valid payment method,
# an invoice.payment_failed event is sent, the subscription becomes past_due.
# Use this webhook to notify your user that their payment has
# failed and to retrieve new card details.
# print(data)
print('Invoice payment failed: %s', event.id)
elif event_type == 'invoice.finalized':
# If you want to manually send out invoices to your customers
# or store them locally to reference to avoid hitting Stripe rate limits.
# print(data)
print('Invoice finalized: %s', event.id)
elif event_type == 'customer.subscription.deleted':
# handle subscription cancelled automatically based
# upon your subscription settings. Or if the user cancels it.
# print(data)
print('Subscription canceled: %s', event.id)
return jsonify({'status': 'success'})