-
Notifications
You must be signed in to change notification settings - Fork 1
/
elib.py
200 lines (182 loc) · 6.79 KB
/
elib.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
#!/usr/bin/python3
#このファイルはelectrum-monaを直接使用するもの。開発終了済み
import subprocess
import re
import time
import math
import random
import json
import requests
import decimal
from decimal import (Decimal, ROUND_DOWN)
#import apim
#import sqlite3
import urllib
import MySQLdb
from datetime import datetime
import configparser
import connectrum
config = configparser.ConfigParser()
config.read('dismona.conf')
section1 = 'development'
walletpassphrase = config.get(section1, 'mona_walletpassphrase')
db_user = config.get(section1, 'db_user')
db_password = config.get(section1, 'db_password')
db_host = config.get(section1, 'db_host')
db_name = config.get(section1, 'db_name')
electrum_wallet_location = config.get(section1, 'electrum_wallet_location')
def get_user_address(userid):
address = "" #とりあえずblankにしておくけどきちんとロジックを考えてdbから出すなりハッシュとかで出すなりすること!
return address
def round_down5(value):
value = Decimal(value).quantize(Decimal('0.00001'), rounding=ROUND_DOWN)
return str(value)
def userwalletlocation(userid):
location = "" + electrum_wallet_location + "" + userid + ""
return location
def libgetbalance(userid):
walletlocation = userwalletlocation(userid)
cmdlib = "electrum-mona getbalance -{0}".format(walletlocation)
rutlib = subprocess.check_output( cmdlib.split(" ") )
balancelib = rutlib.decode()
balancelib = float(balancelib)
balancelib = str(balancelib)
return balancelib
def libgetjpybalance(userid):
headers = {
'Accept': 'application/json',
}
response = requests.get('https://public.bitbank.cc/mona_jpy/ticker', headers=headers)
response = response.json()
data = response['data']
currentprice = data['last']
currentprice = str(currentprice)
currentprice = float(currentprice)
balance = libgetbalance(userid)
balance = float(balance)
jpybalance = float(currentprice) * float(balance)
currenttime = (datetime.now().strftime("%Y/%m/%d %H:%M:%S"))
balance = str(balance)
jpybalance = str(jpybalance)
return jpybalance
def deposit(userid):
walletlocation = userwalletlocation(userid)
cmdlib = "electrum-mona listaddresses -{0}".format(walletlocation)
rut = subprocess.check_output( cmdlib.split(" ") )
address = rut.decode()
address2 = address.replace('"', '')
address3 = address2.replace(',', '')
address = address3.split()
address = address[1]
address = address.replace(']', '')
return address
def withdraw(userid, to, amount):
balancea = libgetbalance(userid)
fee = "0.005"
reamount = float(amount) - float(fee)
reamount = round_down5(reamount)
reamount = str(reamount)
minbalance = "0.01"
minbalance = float(minbalance)
minamount = "0.01"
minamount = float(minamount)
balancea = float(balancea)
amount = float(amount)
if amount >= minamount:
if amount <= balancea:
cmd = "monacoin-cli sendfrom {0} {1} {2}".format(userid, to, reamount)
rut = subprocess.check_output( cmd.split(" ") )
cmd = "monacoin-cli move {0} fee {1}".format(userid, fee)
ruta = subprocess.check_output( cmd.split(" ") )
rut = rut.decode()
m = rut
balancea = libgetbalance(userid)
if balancea <= "0":
defo = "0"
amounttosendback = float(defo) - float(balancea)
amounttosendback = str(amounttosendback)
cmd = "monacoin-cli move fee {0} {1}".format(userid, amounttosendback)
ruta = subprocess.check_output( cmd.split(" ") )
else:
#m = "<@" + userid + ">sorry, failed to complete your request: you do not have any mona at all!(message created on " + currenttime + ")"
m = "500"
else:
#m = "<@" + userid + "> sorry, failed to complete your request: you do not have enogh mona for withdraw. \n please note that the minimum withdraw amount is 0.01mona.(message created on " + currenttime + ")"
m = "500"
return m
def tiptoken(userid, to, amount, tiptoken):
pass
def tip(userid, to, amount):
connection = MySQLdb.connect(
host=db_host, user=db_user, passwd=db_password, db=db_name, charset='utf8')
cursor = connection.cursor()
balance = libgetbalance(userid)
num2 = 100000000
balance = float(balance) * float(num2)
amount = float(amount) * float(num2)
minimumtip = "1"
minimumtip = float(minimumtip)
if amount <= balance:
if amount >= minimumtip:
if userid != to:
username = userid
amount = float(amount) / float(num2)
amount = str(amount)
cmd2 = "monacoin-cli move " + userid + " " + to + " " + amount + ""
rut2 = subprocess.check_output( cmd2.split(" ") )
#m = "<@" + message.author.id + "> sent " + tipamount + " mona to <@" + tipto + ">!\n(message created on " + currenttime + " . exectime: " + elapsed_time + " sec)"
m = "200"
cursor.execute("INSERT INTO tiped (id) VALUES (%s)", (username,))
cursor.execute("INSERT INTO tiped (id) VALUES (%s)", (to,))
connection.commit()
else:
m = "e_s"
else:
#m = m = "<@" + message.author.id + ">, sorry, failed to complete your request: your tip must meet the minimum of 10 watanabe (0.00000010 Mona).\n(message created on " + currenttime + ")"
m = "e_10"
else:
#m = "<@"+ message.author.id + ">, sorry, failed to complete your request: you do not have enough Mona in your account, please double check your balance and your tip amount.\n(message created on " + currenttime + "\n DEBUG: tipamount:" + tipamount + " balance:" + balance + " "
m = "e_en"
return m
def fixselect(string):
string = str(string)
string = string.replace('(', '')
string = string.replace(')', '')
string = string.replace("b'", '')
string = string.replace("'", '')
string = string.replace(",,", ',')
string = string.replace("[", '')
string = string.replace("]", '')
string = string.split(',')
string = str(string)
return string
def register(userid):
connection = MySQLdb.connect(
host=db_host, user=db_user, passwd=db_password, db=db_name, charset='utf8')
cursor = connection.cursor()
cmd = "monacoin-cli getnewaddress " + userid + ""
rut = subprocess.check_output( cmd.split(" ") )
#cursor.execute("insert into dismona.id(id,address) values('message_author', address);")
resultaddress = rut.decode()
resultmore = resultaddress.replace('[', '')
resultmore2 = resultmore.replace(']', '')
resultmore3 = resultmore2.replace('"', '')
resultmore4 = resultmore3.replace("\n", "")
resultmore5 = resultmore4.replace(" ", "")
cursor.execute("INSERT INTO addresses (username, address) VALUES (%s, %s)", (userid, resultmore5))
currenttime = (datetime.now().strftime("%Y/%m/%d %H:%M:%S"))
connection.commit()
return resultmore5
def getpubkey(address):
cmd = "monacoin-cli validateaddress {}".format(address)
print(cmd)
rut = subprocess.check_output( cmd.split(" ") )
rut = str(rut)
rut = rut.replace("\n", '')
resultjson = rut
print(resultjson)
resultjson = json.loads(resultjson)
print(json.dumps(resultjson["pubkey"]))
pubkey = json.dumps(resultjson["pubkey"])
print(pubkey)
return pubkey