本文整理汇总了Python中models.File.queue_url方法的典型用法代码示例。如果您正苦于以下问题:Python File.queue_url方法的具体用法?Python File.queue_url怎么用?Python File.queue_url使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.File
的用法示例。
在下文中一共展示了File.queue_url方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: expose_path
# 需要导入模块: from models import File [as 别名]
# 或者: from models.File import queue_url [as 别名]
def expose_path(group):
form_keys = ["path", "size", "hash", "hash_function", "modified", "signature"]
for key in form_keys:
if key not in request.form:
raise ValueError("Missing form value %s" % key)
path = request.form["path"]
signature = request.form["signature"]
# Don't include signature
d = {k: request.form[k] for k in form_keys[:-1]}
if not security.check_json_sig(d, app.config["BASEJUMP_KEY"], signature):
raise ValueError("Invalid signature provided.")
key = security.sign_path(path, app.config["SECRET_KEY"])
meta = request.form
with db_session() as s:
f = s.query(File).filter(File.key == key).all()
if f:
raise ValueError("This path is already exposed.")
last_modified = datetime.fromtimestamp(int(meta["modified"]))
f = File(path=path, group=group, key=key, size=meta["size"], checksum=meta["hash"], checksumType=meta["hash_function"], modified=last_modified)
s.add(f)
s.commit()
url_path = f.queue_url()
url = request.url_root + url_path
return jsonify({"queue_url": url})