Compare commits
3 Commits
afc227b5b4
...
feat/insta
| Author | SHA1 | Date | |
|---|---|---|---|
|
0fc95d0eb1
|
|||
|
65eedff61c
|
|||
|
461e2cdbe9
|
2
.gitignore
vendored
2
.gitignore
vendored
@@ -14,5 +14,5 @@ plugins/signatures.json
|
|||||||
user_data/
|
user_data/
|
||||||
customPlugins/
|
customPlugins/
|
||||||
cache/
|
cache/
|
||||||
build/
|
|
||||||
dist/
|
dist/
|
||||||
|
build/
|
||||||
Binary file not shown.
@@ -436,6 +436,7 @@ def send(account,address,amount):
|
|||||||
def isOwnDomain(account,name: str):
|
def isOwnDomain(account,name: str):
|
||||||
domains = getDomains(account)
|
domains = getDomains(account)
|
||||||
for domain in domains:
|
for domain in domains:
|
||||||
|
print(domain)
|
||||||
if domain['name'] == name:
|
if domain['name'] == name:
|
||||||
return True
|
return True
|
||||||
return False
|
return False
|
||||||
@@ -1138,6 +1139,7 @@ def getxPub(account):
|
|||||||
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
print(account_name)
|
||||||
response = hsw.getAccountInfo(account_name,"default")
|
response = hsw.getAccountInfo(account_name,"default")
|
||||||
if 'error' in response:
|
if 'error' in response:
|
||||||
return {
|
return {
|
||||||
|
|||||||
10
main.py
10
main.py
@@ -551,6 +551,7 @@ def finalize(domain: str):
|
|||||||
return redirect("/logout")
|
return redirect("/logout")
|
||||||
|
|
||||||
domain = domain.lower()
|
domain = domain.lower()
|
||||||
|
print(domain)
|
||||||
response = account_module.finalize(request.cookies.get("account"),domain)
|
response = account_module.finalize(request.cookies.get("account"),domain)
|
||||||
if response['error'] != None:
|
if response['error'] != None:
|
||||||
print(response)
|
print(response)
|
||||||
@@ -569,6 +570,7 @@ def cancelTransfer(domain: str):
|
|||||||
return redirect("/logout")
|
return redirect("/logout")
|
||||||
|
|
||||||
domain = domain.lower()
|
domain = domain.lower()
|
||||||
|
print(domain)
|
||||||
response = account_module.cancelTransfer(request.cookies.get("account"),domain)
|
response = account_module.cancelTransfer(request.cookies.get("account"),domain)
|
||||||
if 'error' in response:
|
if 'error' in response:
|
||||||
if response['error'] != None:
|
if response['error'] != None:
|
||||||
@@ -883,6 +885,7 @@ def auction(domain):
|
|||||||
# Get TX
|
# Get TX
|
||||||
revealInfo = account_module.getRevealTX(reveal)
|
revealInfo = account_module.getRevealTX(reveal)
|
||||||
reveal['bid'] = revealInfo
|
reveal['bid'] = revealInfo
|
||||||
|
print(revealInfo)
|
||||||
bids = render.bids(bids,reveals)
|
bids = render.bids(bids,reveals)
|
||||||
|
|
||||||
|
|
||||||
@@ -944,6 +947,7 @@ def rescan_auction(domain):
|
|||||||
domain = domain.lower()
|
domain = domain.lower()
|
||||||
|
|
||||||
response = account_module.rescan_auction(account,domain)
|
response = account_module.rescan_auction(account,domain)
|
||||||
|
print(response)
|
||||||
return redirect("/auction/" + domain)
|
return redirect("/auction/" + domain)
|
||||||
|
|
||||||
@app.route('/auction/<domain>/bid')
|
@app.route('/auction/<domain>/bid')
|
||||||
@@ -1019,7 +1023,7 @@ def bid_confirm(domain):
|
|||||||
response = account_module.bid(request.cookies.get("account"),domain,
|
response = account_module.bid(request.cookies.get("account"),domain,
|
||||||
float(bid),
|
float(bid),
|
||||||
float(blind))
|
float(blind))
|
||||||
|
print(response)
|
||||||
if 'error' in response:
|
if 'error' in response:
|
||||||
return redirect("/auction/" + domain + "?error=" + response['error']['message'])
|
return redirect("/auction/" + domain + "?error=" + response['error']['message'])
|
||||||
|
|
||||||
@@ -1041,7 +1045,7 @@ def open_auction(domain):
|
|||||||
if 'error' in response:
|
if 'error' in response:
|
||||||
if response['error'] != None:
|
if response['error'] != None:
|
||||||
return redirect("/auction/" + domain + "?error=" + response['error']['message'])
|
return redirect("/auction/" + domain + "?error=" + response['error']['message'])
|
||||||
|
print(response)
|
||||||
return redirect("/success?tx=" + response['hash'])
|
return redirect("/success?tx=" + response['hash'])
|
||||||
|
|
||||||
@app.route('/auction/<domain>/reveal')
|
@app.route('/auction/<domain>/reveal')
|
||||||
@@ -1609,4 +1613,4 @@ if __name__ == '__main__':
|
|||||||
if "--debug" in sys.argv:
|
if "--debug" in sys.argv:
|
||||||
app.run(debug=True,host='0.0.0.0')
|
app.run(debug=True,host='0.0.0.0')
|
||||||
else:
|
else:
|
||||||
app.run(host='0.0.0.0')
|
app.run(host='0.0.0.0',threaded=True)
|
||||||
63
main.spec
Normal file
63
main.spec
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
# -*- mode: python ; coding: utf-8 -*-
|
||||||
|
|
||||||
|
import compileall
|
||||||
|
from PyInstaller.utils.hooks import collect_data_files
|
||||||
|
import os
|
||||||
|
|
||||||
|
compileall.compile_dir('.', force=True)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
datas = [
|
||||||
|
('templates', 'templates'),
|
||||||
|
('assets', 'assets'),
|
||||||
|
('themes', 'themes'),
|
||||||
|
('plugins', 'plugins')
|
||||||
|
]
|
||||||
|
hiddenimports = [
|
||||||
|
'plugins.automations',
|
||||||
|
'plugins.batching',
|
||||||
|
'plugins.customPlugins',
|
||||||
|
'plugins.renewal',
|
||||||
|
'plugins.varo'
|
||||||
|
]
|
||||||
|
|
||||||
|
# Copy the plugins folder to the dist folder
|
||||||
|
os.system(f'cp -r plugins dist/')
|
||||||
|
|
||||||
|
a = Analysis(
|
||||||
|
['main.py'],
|
||||||
|
pathex=[],
|
||||||
|
binaries=[],
|
||||||
|
datas=datas,
|
||||||
|
hiddenimports=hiddenimports,
|
||||||
|
hookspath=[],
|
||||||
|
hooksconfig={},
|
||||||
|
runtime_hooks=[],
|
||||||
|
excludes=[],
|
||||||
|
noarchive=False,
|
||||||
|
optimize=0,
|
||||||
|
)
|
||||||
|
pyz = PYZ(a.pure)
|
||||||
|
|
||||||
|
exe = EXE(
|
||||||
|
pyz,
|
||||||
|
a.scripts,
|
||||||
|
a.binaries,
|
||||||
|
a.datas,
|
||||||
|
[],
|
||||||
|
name='FireWallet',
|
||||||
|
debug=False,
|
||||||
|
bootloader_ignore_signals=False,
|
||||||
|
strip=False,
|
||||||
|
upx=True,
|
||||||
|
upx_exclude=[],
|
||||||
|
runtime_tmpdir=None,
|
||||||
|
console=False,
|
||||||
|
disable_windowed_traceback=False,
|
||||||
|
argv_emulation=False,
|
||||||
|
target_arch=None,
|
||||||
|
codesign_identity=None,
|
||||||
|
entitlements_file=None,
|
||||||
|
onefile=False,
|
||||||
|
)
|
||||||
@@ -9,4 +9,3 @@ requests-doh
|
|||||||
Flask-QRcode
|
Flask-QRcode
|
||||||
PySocks
|
PySocks
|
||||||
python-git-info
|
python-git-info
|
||||||
waitress
|
|
||||||
58
server.py
58
server.py
@@ -1,44 +1,38 @@
|
|||||||
import os
|
from flask import Flask
|
||||||
import sys
|
|
||||||
import platform
|
|
||||||
from main import app
|
from main import app
|
||||||
from waitress import serve
|
import main
|
||||||
|
from gunicorn.app.base import BaseApplication
|
||||||
|
import os
|
||||||
|
|
||||||
|
|
||||||
threads = 4
|
class GunicornApp(BaseApplication):
|
||||||
|
def __init__(self, app, options=None):
|
||||||
|
self.options = options or {}
|
||||||
|
self.application = app
|
||||||
|
super().__init__()
|
||||||
|
|
||||||
def gunicornServer():
|
def load_config(self):
|
||||||
from gunicorn.app.base import BaseApplication
|
for key, value in self.options.items():
|
||||||
class GunicornApp(BaseApplication):
|
if key in self.cfg.settings and value is not None:
|
||||||
def __init__(self, app, options=None):
|
self.cfg.set(key.lower(), value)
|
||||||
self.options = options or {}
|
|
||||||
self.application = app
|
|
||||||
super().__init__()
|
|
||||||
|
|
||||||
def load_config(self):
|
def load(self):
|
||||||
for key, value in self.options.items():
|
return self.application
|
||||||
if key in self.cfg.settings and value is not None:
|
|
||||||
self.cfg.set(key.lower(), value)
|
|
||||||
|
|
||||||
def load(self):
|
if __name__ == '__main__':
|
||||||
return self.application
|
workers = 1
|
||||||
|
threads = 2
|
||||||
|
if workers is None:
|
||||||
|
workers = 1
|
||||||
|
if threads is None:
|
||||||
|
threads = 2
|
||||||
|
workers = int(workers)
|
||||||
|
threads = int(threads)
|
||||||
options = {
|
options = {
|
||||||
'bind': '0.0.0.0:5000',
|
'bind': '0.0.0.0:5000',
|
||||||
'workers': 2,
|
'workers': workers,
|
||||||
'threads': threads,
|
'threads': threads,
|
||||||
}
|
}
|
||||||
gunicorn_app = GunicornApp(app, options)
|
gunicorn_app = GunicornApp(app, options)
|
||||||
print(f'Starting server with Gunicorn on {platform.system()} with {threads} threads...', flush=True)
|
print('Starting server with ' + str(workers) + ' workers and ' + str(threads) + ' threads', flush=True)
|
||||||
gunicorn_app.run()
|
gunicorn_app.run()
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
|
||||||
# Check if --gunicorn is in the command line arguments
|
|
||||||
if "--gunicorn" in sys.argv:
|
|
||||||
gunicornServer()
|
|
||||||
sys.exit()
|
|
||||||
|
|
||||||
print(f'Starting server with Waitress on {platform.system()} with {threads} threads...', flush=True)
|
|
||||||
print(f'Press Ctrl+C to stop the server', flush=True)
|
|
||||||
print(f'Serving on http://0.0.0.0:5000/', flush=True)
|
|
||||||
serve(app, host="0.0.0.0", port=5000, threads=threads)
|
|
||||||
|
|||||||
@@ -64,7 +64,7 @@
|
|||||||
</nav>
|
</nav>
|
||||||
<div class="container-fluid" style="margin-bottom: 20px;">
|
<div class="container-fluid" style="margin-bottom: 20px;">
|
||||||
<h3 class="text-dark mb-1">{{name}}</h3>
|
<h3 class="text-dark mb-1">{{name}}</h3>
|
||||||
<h4 class="text-dark mb-1">{{description|safe}}</h4>{{output|safe}}
|
<h4 class="text-dark mb-1">{{description}}</h4>{{output|safe}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<footer class="sticky-footer" style="background: var(--bs-primary-text-emphasis);">
|
<footer class="sticky-footer" style="background: var(--bs-primary-text-emphasis);">
|
||||||
|
|||||||
Reference in New Issue
Block a user