示例#1
0
def gen_round_response(post_data):
    try: last_round = post_data['last_round'] == "True"
    except: last_round = None
    try: round_type = post_data['type']
    except: round_type = None
    r = None
    messages = {"success": "Thanks for playing!", "unknowntype": "Unknown round_type."}
    
    if round_type == "F":
        form1 = forms.make_game(post_data, prefix="form1")
        form2 = forms.make_new_round(post_data, prefix="form2")
        if form1.is_valid() and form2.is_valid():
            g = form1.save()
            
            r = form2.save(commit=False)
            r.round_type = "T"
            r.game = g
            
            chk = r.save()
            out = messages["success"] if chk == None else chk
                
        else: out = str(form1.errors) + str(form2.errors)
    elif round_type == "T":
        form2 = forms.make_text_round(post_data, prefix="form2") if last_round == False else forms.make_last_text(post_data, prefix="form2")
        if form2.is_valid():
            r = form2.save(commit=False)
            
            r.game = get_game(post_data['game'])
            r.round_type = "T"
            if last_round == True: r.email_address = ""
            
            chk = r.save()
            out = messages["success"] if chk == None else chk
        else: out = str(form2.errors)   
    elif round_type == "P":
        form2 = forms.make_picture_round(post_data, prefix="form2") if last_round == False else forms.make_last_picture(post_data, prefix="form2")
        form3 = forms.SaveImgForm(post_data)
        if form2.is_valid() and form3.is_valid():
            r = form2.save(commit=False)
            
            r.game = get_game(post_data['game'])
            r.round_type = "P"
            r.submission = form3.cleaned_data["img"].replace("data:image/png;base64,", "")
            if last_round == True: r.email_address = ""
            
            chk = r.save()
            out = messages["success"] if chk == None else chk
        else: out = str(form2.errors)
    else: out = messages["unknowntype"]

    if last_round == True and r != None and type(out) == type("str"):
        out += " Click <a href='/view/" + r.game.game_code + "'>here</a> to view the game."
    
    return(out)
示例#2
0
def select_forms(round_type, last_round=False):
    out = {"form1": None, "form2": None, "form3": None}
    if round_type == "F":
        out["form1"] = forms.make_game(prefix="form1")
        out["form2"] = forms.make_new_round(prefix="form2")
    elif round_type == "T":
        out["form2"] = forms.make_text_round(prefix="form2") if last_round == False else forms.make_last_text(prefix="form2")
    elif round_type == "P":
        out["form3"] = forms.SaveImgForm()
        out["form2"] = forms.make_picture_round(prefix="form2") if last_round == False else forms.make_last_picture(prefix="form2")
    return(out)
示例#3
0
def select_forms(round_type, last_round=False):
    out = {"form1": None, "form2": None, "form3": None}
    if round_type == "F":
        out["form1"] = forms.make_game(prefix="form1")
        out["form2"] = forms.make_new_round(prefix="form2")
    elif round_type == "T":
        out["form2"] = forms.make_text_round(
            prefix="form2") if last_round == False else forms.make_last_text(
                prefix="form2")
    elif round_type == "P":
        out["form3"] = forms.SaveImgForm()
        out["form2"] = forms.make_picture_round(
            prefix="form2"
        ) if last_round == False else forms.make_last_picture(prefix="form2")
    return (out)
示例#4
0
def gen_round_response(post_data):
    try:
        last_round = post_data['last_round'] == "True"
    except:
        last_round = None
    try:
        round_type = post_data['type']
    except:
        round_type = None
    r = None
    messages = {
        "success": "Thanks for playing!",
        "unknowntype": "Unknown round_type."
    }

    if round_type == "F":
        form1 = forms.make_game(post_data, prefix="form1")
        form2 = forms.make_new_round(post_data, prefix="form2")
        if form1.is_valid() and form2.is_valid():
            g = form1.save()

            r = form2.save(commit=False)
            r.round_type = "T"
            r.game = g

            chk = r.save()
            out = messages["success"] if chk == None else chk

        else:
            out = str(form1.errors) + str(form2.errors)
    elif round_type == "T":
        form2 = forms.make_text_round(
            post_data,
            prefix="form2") if last_round == False else forms.make_last_text(
                post_data, prefix="form2")
        if form2.is_valid():
            r = form2.save(commit=False)

            r.game = get_game(post_data['game'])
            r.round_type = "T"
            if last_round == True: r.email_address = ""

            chk = r.save()
            out = messages["success"] if chk == None else chk
        else:
            out = str(form2.errors)
    elif round_type == "P":
        form2 = forms.make_picture_round(
            post_data, prefix="form2"
        ) if last_round == False else forms.make_last_picture(post_data,
                                                              prefix="form2")
        form3 = forms.SaveImgForm(post_data)
        if form2.is_valid() and form3.is_valid():
            r = form2.save(commit=False)

            r.game = get_game(post_data['game'])
            r.round_type = "P"
            r.submission = form3.cleaned_data["img"].replace(
                "data:image/png;base64,", "")
            if last_round == True: r.email_address = ""

            chk = r.save()
            out = messages["success"] if chk == None else chk
        else:
            out = str(form2.errors)
    else:
        out = messages["unknowntype"]

    if last_round == True and r != None and type(out) == type("str"):
        out += " Click <a href='/view/" + r.game.game_code + "'>here</a> to view the game."

    return (out)