chg: Sanity check in email send

pull/86/head
Raphaël Vinot 2020-08-20 15:05:27 +02:00
parent a33c5eaabe
commit fa57435433
2 changed files with 4 additions and 0 deletions

View File

@ -563,6 +563,7 @@ class Lookyloo():
s.quit()
except Exception as e:
self.logger.exception(e)
self.logger.warning(msg.as_string())
def _ensure_meta(self, capture_dir: Path, tree: CrawledTree) -> None:
metafile = capture_dir / 'meta'

View File

@ -387,6 +387,9 @@ def cache_tree(tree_uuid: str):
@app.route('/tree/<string:tree_uuid>/send_mail', methods=['POST', 'GET'])
def send_mail(tree_uuid: str):
email: str = request.form.get('email') if request.form.get('email') else '' # type: ignore
if '@' not in email:
# skip clearly incorrect emails
email = ''
comment: str = request.form.get('comment') if request.form.get('comment') else '' # type: ignore
lookyloo.send_mail(tree_uuid, email, comment)
return redirect(url_for('tree', tree_uuid=tree_uuid))