def link_location_host_post(link_id, location_id): if settings.app.demo_mode: return utils.demo_blocked() lnk = link.get_by_id(link_id) if not lnk: return flask.abort(404) loc = lnk.get_location(location_id) if not loc: return flask.abort(404) name = utils.filter_str(flask.request.json.get('name')) or 'undefined' hst = link.Host( link=lnk, location=loc, name=name, link_id=lnk.id, location_id=loc.id, ) hst.generate_secret() hst.commit() event.Event(type=LINKS_UPDATED) return utils.jsonify(hst.dict())
def link_location_host_post(link_id, location_id): if not settings.local.sub_plan or \ 'enterprise' not in settings.local.sub_plan: return flask.abort(404) if settings.app.demo_mode: return utils.demo_blocked() lnk = link.get_by_id(link_id) if not lnk: return flask.abort(404) loc = lnk.get_location(location_id) if not loc: return flask.abort(404) name = utils.filter_str(flask.request.json.get('name')) or 'undefined' timeout = int(flask.request.json.get('timeout') or 0) or None priority = abs(int(flask.request.json.get('priority') or 1)) or 1 static = bool(flask.request.json.get('static')) public_address = utils.filter_str( flask.request.json.get('public_address')) local_address = utils.filter_str( flask.request.json.get('local_address')) hst = link.Host( link=lnk, location=loc, link_id=lnk.id, location_id=loc.id, name=name, timeout=timeout, priority=priority, static=static, public_address=public_address, local_address=local_address, ) hst.generate_secret() hst.commit() event.Event(type=LINKS_UPDATED) return utils.jsonify(hst.dict())