28 lines
712 B
Python
28 lines
712 B
Python
|
from flask import Flask
|
||
|
from flask_gnupg import GnuPG
|
||
|
import json
|
||
|
from nagrest.nag_parse import NagParse
|
||
|
|
||
|
app = Flask(__name__)
|
||
|
app.config['GPG_HOME_DIR'] = "/root/.gnupg"
|
||
|
app.config['GPG_BINARY'] = "/usr/bin/gpg"
|
||
|
gpg = GnuPG(app)
|
||
|
parser = NagParse()
|
||
|
|
||
|
@app.route('/')
|
||
|
def index():
|
||
|
keys_list = gpg.list_keys()
|
||
|
for key in keys_list:
|
||
|
gpg.trust_keys(key['fingerprint'], 'TRUST_ULTIMATE')
|
||
|
file = "/app/keys/test.sig"
|
||
|
with open(file, 'rb') as fh:
|
||
|
verified = gpg.decrypt_file(fh)
|
||
|
if verified.trust_level == verified.TRUST_ULTIMATE:
|
||
|
return str(verified).strip()
|
||
|
return '{}'
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
# use 0.0.0.0 to use it in container
|
||
|
app.run(host='0.0.0.0')
|