Esempio n. 1
0
def move_file(P, req):
    uid = UR.getUserId(req)
    f_auth = auth.canMoveFile if P[
        "item_type"] == "file" else auth.canMoveFolder
    if not f_auth(uid, P["id"], P["dest"]):
        return UR.prepare_response({}, 1, "NOT ALLOWED")
    return UR.prepare_response(
        {P["item_type"] + "s": annotations.move_file(uid, P)})
Esempio n. 2
0
def move_file(P,req): 
    uid = UR.getUserId(req)
    f_auth = auth.canMoveFile if P["item_type"]=="file" else auth.canMoveFolder
    if not f_auth(uid, P["id"], P["dest"]):
        return UR.prepare_response({}, 1,  "NOT ALLOWED")
    return UR.prepare_response({P["item_type"]+"s": annotations.move_file(uid, P)})
Esempio n. 3
0
def move_file(P,req): 
    uid = UR.getUserId(req)
    if not auth.canMoveFile(uid, P["id"]):
        return UR.prepare_response({}, 1,  "NOT ALLOWED")
    return UR.prepare_response({"files": annotations.move_file(uid, P)})
Esempio n. 4
0
def move_file(P, req):
    uid = UR.getUserId(req)
    if not auth.canMoveFile(uid, P["id"]):
        return UR.prepare_response({}, 1, "NOT ALLOWED")
    return UR.prepare_response({"files": annotations.move_file(uid, P)})