Mixte CLI/GUI

This commit is contained in:
poka 2020-11-15 09:12:37 +01:00
parent 2a1819e0f3
commit 7b8c0c82bc
2 changed files with 115 additions and 86 deletions

View File

@ -1,25 +1,36 @@
#!/usr/bin/env python3
from tkinter import *
import pay
from pay import *
window = Tk()
title = Label(window, text="Paiement Ḡ1")
title.pack()
# Issuer input
issuer = StringVar()
xIssuer = Entry(window, textvariable=issuer, width=30)
xIssuer.pack()
# Recipient input
recipientEntry = Entry()
# xRecipient = Entry(window, textvariable=recipient, width=30)
recipientEntry.pack()
# Amount input
AmountEntry = Entry()
AmountEntry.pack()
# Comment input
comment = StringVar()
xComment = Entry(window, textvariable=comment, width=30)
xComment.pack()
commentEntry = Entry()
commentEntry.pack()
def ProceedPaiement():
print("Paiement en cours ...")
recipient = str(recipientEntry.get())
amount = int(AmountEntry.get())
comment = str(commentEntry.get())
print("Paiement en cours ... " + recipient)
returnGen = sendGenDoc(recipient, amount, comment)
checkTXDoc(returnGen)
returnSigned = signDoc(returnGen)
sendTXDoc(returnSigned)
sendButton = Button(window, text="Envoyer", command=ProceedPaiement)
sendButton.pack()

34
pay.py
View File

@ -17,17 +17,22 @@ if not (dunikey):
# Define Duniter GVA node
transport = AIOHTTPTransport(url=node)
client = Client(transport=transport, fetch_schema_from_transport=True)
issuer = get_privkey(dunikey, "pubsec").pubkey
try:
recipient = sys.argv[1]
amount = int(sys.argv[2])
if len(sys.argv) > 3:
comment = sys.argv[3]
else:
comment = ""
graphic = False
except:
graphic = True
## GraphQL queries
# Build the TX Document
def sendGenDoc(recipient, amount, comment):
# Build TX generation document
queryBuild = gql(
"""
query ($recipient: String!, $issuer: String!, $amount: Int!, $comment: String!){ genTxs(
@ -49,14 +54,15 @@ paramsBuild = {
# Send TX document
try:
txDoc = str(client.execute(queryBuild, variable_values=paramsBuild))[13:-3].replace('\\n','\n')
return txDoc
except Exception as e:
#e = json.dumps(str(e))
sys.stderr.write("Echec de la génération du document:\n" + str(e) + "\n")
sys.exit(1)
# Check document
# print(txDoc) # For debug
# Check document
def checkTXDoc(txDoc):
docList = txDoc.splitlines()
for i, line in enumerate(docList):
if re.search("Issuers:", line):
@ -74,15 +80,19 @@ if issuerRaw != issuer or int(outAmount) != amount or outPubkey != recipient or
sys.exit(1)
else:
print("Le document généré est conforme.")
return True
# sys.exit(0) # For debug
def signDoc(txDoc):
# Sign TX document
signature = fmt["64"](sign(txDoc.encode(), get_privkey(dunikey, "pubsec"))[:-len(txDoc.encode())])
signedDoc = txDoc + signature.decode()
#print(signedDoc) # For debug
return signedDoc
def sendTXDoc(signedDoc):
# Build TX document
querySign = gql(
"""
mutation ($signedDoc: String!){ tx(
@ -101,12 +111,20 @@ paramsSign = {
# Send TX Signed document
try:
sentTX = client.execute(querySign, variable_values=paramsSign)
client.execute(querySign, variable_values=paramsSign)
print(colored("Transaction effectué avec succès !", "green"))
except Exception as e:
sys.stderr.write("Echec de la transaction:\n" + str(e) + "\n")
sys.exit(1)
# Execute workflow
if not graphic:
returnGen = sendGenDoc(recipient, amount, comment)
docIsOK = checkTXDoc(returnGen)
returnSigned = signDoc(returnGen)
sendTXDoc(returnSigned)
#print(sentTX) #For debug