220 lines
6.2 KiB
Python
220 lines
6.2 KiB
Python
import os
|
|
import sys
|
|
import uuid
|
|
|
|
import redis
|
|
|
|
from cryptography.fernet import Fernet
|
|
from flask import abort, Flask, render_template, request, jsonify
|
|
from redis.exceptions import ConnectionError
|
|
from urllib.parse import quote_plus
|
|
from urllib.parse import unquote_plus
|
|
from distutils.util import strtobool
|
|
from flask_babel import Babel
|
|
|
|
NO_SSL = bool(strtobool(os.environ.get('NO_SSL', 'False')))
|
|
URL_PREFIX = os.environ.get('URL_PREFIX', None)
|
|
HOST_OVERRIDE = os.environ.get('HOST_OVERRIDE', None)
|
|
TOKEN_SEPARATOR = '~'
|
|
|
|
# Initialize Flask Application
|
|
app = Flask(__name__)
|
|
if os.environ.get('DEBUG'):
|
|
app.debug = True
|
|
app.secret_key = os.environ.get('SECRET_KEY', 'Secret Key')
|
|
app.config.update(
|
|
dict(STATIC_URL=os.environ.get('STATIC_URL', 'static')))
|
|
|
|
# Set up Babel
|
|
def get_locale():
|
|
return request.accept_languages.best_match(['en', 'es', 'de', 'nl'])
|
|
babel = Babel(app, locale_selector=get_locale)
|
|
|
|
# Initialize Redis
|
|
if os.environ.get('MOCK_REDIS'):
|
|
from fakeredis import FakeStrictRedis
|
|
redis_client = FakeStrictRedis()
|
|
elif os.environ.get('REDIS_URL'):
|
|
redis_client = redis.StrictRedis.from_url(os.environ.get('REDIS_URL'))
|
|
else:
|
|
redis_host = os.environ.get('REDIS_HOST', 'localhost')
|
|
redis_port = os.environ.get('REDIS_PORT', 6379)
|
|
redis_db = os.environ.get('SNAPPASS_REDIS_DB', 0)
|
|
redis_client = redis.StrictRedis(
|
|
host=redis_host, port=redis_port, db=redis_db)
|
|
REDIS_PREFIX = os.environ.get('REDIS_PREFIX', 'snappass')
|
|
|
|
TIME_CONVERSION = {'two weeks': 1209600, 'week': 604800, 'day': 86400, 'hour': 3600}
|
|
|
|
|
|
def check_redis_alive(fn):
|
|
def inner(*args, **kwargs):
|
|
try:
|
|
if fn.__name__ == 'main':
|
|
redis_client.ping()
|
|
return fn(*args, **kwargs)
|
|
except ConnectionError as e:
|
|
print('Failed to connect to redis! %s' % e.message)
|
|
if fn.__name__ == 'main':
|
|
sys.exit(0)
|
|
else:
|
|
return abort(500)
|
|
return inner
|
|
|
|
def encrypt(password):
|
|
"""
|
|
Take a password string, encrypt it with Fernet symmetric encryption,
|
|
and return the result (bytes), with the decryption key (bytes)
|
|
"""
|
|
encryption_key = Fernet.generate_key()
|
|
fernet = Fernet(encryption_key)
|
|
encrypted_password = fernet.encrypt(password.encode('utf-8'))
|
|
return encrypted_password, encryption_key
|
|
|
|
|
|
def decrypt(password, decryption_key):
|
|
"""
|
|
Decrypt a password (bytes) using the provided key (bytes),
|
|
and return the plain-text password (bytes).
|
|
"""
|
|
fernet = Fernet(decryption_key)
|
|
return fernet.decrypt(password)
|
|
|
|
|
|
def parse_token(token):
|
|
token_fragments = token.split(TOKEN_SEPARATOR, 1) # Split once, not more.
|
|
storage_key = token_fragments[0]
|
|
|
|
try:
|
|
decryption_key = token_fragments[1].encode('utf-8')
|
|
except IndexError:
|
|
decryption_key = None
|
|
|
|
return storage_key, decryption_key
|
|
|
|
|
|
@check_redis_alive
|
|
def set_password(password, ttl):
|
|
"""
|
|
Encrypt and store the password for the specified lifetime.
|
|
|
|
Returns a token comprised of the key where the encrypted password
|
|
is stored, and the decryption key.
|
|
"""
|
|
storage_key = REDIS_PREFIX + uuid.uuid4().hex
|
|
encrypted_password, encryption_key = encrypt(password)
|
|
redis_client.setex(storage_key, ttl, encrypted_password)
|
|
encryption_key = encryption_key.decode('utf-8')
|
|
token = TOKEN_SEPARATOR.join([storage_key, encryption_key])
|
|
return token
|
|
|
|
|
|
@check_redis_alive
|
|
def get_password(token):
|
|
"""
|
|
From a given token, return the initial password.
|
|
|
|
If the token is tilde-separated, we decrypt the password fetched from Redis.
|
|
If not, the password is simply returned as is.
|
|
"""
|
|
storage_key, decryption_key = parse_token(token)
|
|
password = redis_client.get(storage_key)
|
|
redis_client.delete(storage_key)
|
|
|
|
if password is not None:
|
|
|
|
if decryption_key is not None:
|
|
password = decrypt(password, decryption_key)
|
|
|
|
return password.decode('utf-8')
|
|
|
|
|
|
@check_redis_alive
|
|
def password_exists(token):
|
|
storage_key, decryption_key = parse_token(token)
|
|
return redis_client.exists(storage_key)
|
|
|
|
|
|
def empty(value):
|
|
if not value:
|
|
return True
|
|
|
|
|
|
def clean_input():
|
|
"""
|
|
Make sure we're not getting bad data from the front end,
|
|
format data to be machine readable
|
|
"""
|
|
if empty(request.form.get('password', '')):
|
|
abort(400)
|
|
|
|
if empty(request.form.get('ttl', '')):
|
|
abort(400)
|
|
|
|
time_period = request.form['ttl'].lower()
|
|
if time_period not in TIME_CONVERSION:
|
|
abort(400)
|
|
|
|
return TIME_CONVERSION[time_period], request.form['password']
|
|
|
|
|
|
@app.route('/', methods=['GET'])
|
|
def index():
|
|
return render_template('set_password.html')
|
|
|
|
|
|
@app.route('/', methods=['POST'])
|
|
def handle_password():
|
|
ttl, password = clean_input()
|
|
token = set_password(password, ttl)
|
|
|
|
if NO_SSL:
|
|
if HOST_OVERRIDE:
|
|
base_url = f'http://{HOST_OVERRIDE}/'
|
|
else:
|
|
base_url = request.url_root
|
|
else:
|
|
if HOST_OVERRIDE:
|
|
base_url = f'https://{HOST_OVERRIDE}/'
|
|
else:
|
|
base_url = request.url_root.replace("http://", "https://")
|
|
if URL_PREFIX:
|
|
base_url = base_url + URL_PREFIX.strip("/") + "/"
|
|
link = base_url + quote_plus(token)
|
|
if request.accept_mimetypes.accept_json and not request.accept_mimetypes.accept_html:
|
|
return jsonify(link=link, ttl=ttl)
|
|
else:
|
|
return render_template('confirm.html', password_link=link)
|
|
|
|
|
|
@app.route('/<password_key>', methods=['GET'])
|
|
def preview_password(password_key):
|
|
password_key = unquote_plus(password_key)
|
|
if not password_exists(password_key):
|
|
return render_template('expired.html'), 404
|
|
|
|
return render_template('preview.html')
|
|
|
|
|
|
@app.route('/<password_key>', methods=['POST'])
|
|
def show_password(password_key):
|
|
password_key = unquote_plus(password_key)
|
|
password = get_password(password_key)
|
|
if not password:
|
|
return render_template('expired.html'), 404
|
|
|
|
return render_template('password.html', password=password)
|
|
|
|
|
|
@app.route('/_/_/health', methods=['GET'])
|
|
@check_redis_alive
|
|
def health_check():
|
|
return {}
|
|
|
|
|
|
@check_redis_alive
|
|
def main():
|
|
app.run(host='0.0.0.0')
|
|
|
|
if __name__ == '__main__':
|
|
main()
|