-
Notifications
You must be signed in to change notification settings - Fork 4
/
payments.py
148 lines (125 loc) · 3.99 KB
/
payments.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
#this script counts the payment operations occurring on the Pi Network mainnet
import sqlite3
import os
import socket
import sys
from urllib import request as urlrequest
import ssl
import time
import json
import _remote as remote
import re
import requests
HEADER = { 'User-Agent' : 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.61 Safari/537.36' }
def initialize_database():
print("Initalizaing Database")
lcursor.execute("""CREATE TABLE IF NOT EXISTS age (
id INTEGER,
cnt INTEGER DEFAULT 0);""")
lcursor.execute("insert into age (id,cnt) values (2,1)")
connection.commit()
#progress storage DB
connection=sqlite3.connect("payments.db")
lcursor = connection.cursor()
#check if table exists
lcursor.execute("SELECT count(name) FROM sqlite_master WHERE type='table' AND name='age'")
if lcursor.fetchone()[0] !=1:
initialize_database()
def get_json(url):
headers = requests.utils.default_headers()
headers.update = ( HEADER,)
#proxy = {'https' : 'http://10.77.32.83:3128'}
proxy = {}
e = False
while True:
try:
response = requests.get(url, headers=headers, proxies=proxy)
except Exception as err:
print(f"Error Sleeping - URL = {url} \n{err}")
e = True
time.sleep(60)
pass
else:
if e:
print("continuing...")
break
res=response.text
jres=json.loads(res)
return jres
#remote update
def updateDB(id,c,lat):
url=(f"http://www.remoteserver.com/insert-pay.php?network=transactions&id={id}&c={c}&lat={lat}")
try:
response = requests.get(url, headers=HEADER)
except Exception as err:
print(f"Remote url: {url}")
print(f"Error: {err}")
else:
print(f"Remote Commit: {response.text}")
#read initial values
#read values
lcursor.execute("select * from age")
db_res=lcursor.fetchone()
current=db_res[0]
count=db_res[1]
cursor=""
print(f"Continuining at ledger #{current} count={count}")
#get dictionary for a ledger page and the nextpage cursor
def get_page(b,c=""):
page=get_json(f"https://api.mainnet.minepi.com/ledgers/{b}/operations?limit=200&cursor={c}")
ncursor=re.search(r"\d{15,20}",page["_links"]["next"]["href"])
return page,ncursor.group()
#count operations in dictionary,
#return last cursor as well
def count_ops(p):
this_page_count=0
for record in p['_embedded']['records']:
if record['type'] == "payment":
this_page_count+=1
return this_page_count
while True:
current+=1
print(f"MN: {current}")
#Update DB + Commit (need to check before continues)
if current%100==0:
lcursor.execute(f"update age set id={current}, cnt={count}")
connection.commit()
updateDB(current,count,latest)
print(f"commiting changes at ledger:{current} cnt={count}")
#get latest ledger id
latest=get_json("https://api.mainnet.minepi.com/")['core_latest_ledger']
#sleep if caught up
if current == latest:
print("Caught Up - Sleeping")
time.sleep(300)
continue
#get number of operations in current ledger
operations=get_json(f"https://api.mainnet.minepi.com/ledgers/{current}")['operation_count']
if operations > 400:
print("Operations more than 400 detected..exiting")
sys.exit()
elif operations == 0:
continue
#reset local count
thiscount=0
if operations > 0:
#how many pages
pages=int((operations/200))+1
#get first page
ledger,cursor=get_page(current)
#count ops first page
thiscount=count_ops(ledger)
#count ops in extra pages
if pages > 1:
for _ in range(2,pages+1):
ledger,cursor=get_page(current,cursor)
ops=count_ops(ledger)
thiscount+=ops
if thiscount > 200:
print("Killswitch thiscount>200 need to check")
sys.exit()
count+=thiscount
print(f"---------pages={pages} OPS={operations},countedOPS={thiscount}, total={count}")
if thiscount > 0 :
with open(".\log.txt", "a") as f:
f.write(f"{current} : {thiscount} payments\n")