Exemple #1
0
def create(response):
    # get the variables we need using get_field
    title = response.get_field("title")
    firstword = response.get_field("firstword")
    # a list of strings of things that went wrong
    # we will give this to the template.
    errors = []

    username = response.get_secure_cookie('username')
    if not username:
        errors.append('You must be logged in to post a story')
        variables = {'errors': errors, 'user': get_current_user(response)}

        return render(
            "templates/createastory.html",
            variables,
        )

    if response.request.method == "POST":
        if not title:
            #we didn't get given a title
            errors.append("You didn't enter a title!")
        if len(title) > 50:
            errors.append("Your title was too long!")
        if not firstword:
            errors.append("You didn't enter a starting word!")
        if ' ' in firstword:
            errors.append("Please only enter one word")
        if len(firstword) > 25:
            errors.append("Your word is too long. Word must be below 26 characters long")
        author = get_current_user(response)
        if author is None:
            errors.append('You must be logged in to create a story')
        if not errors:
            #write to the database
            new_story = story.Story(title, firstword, author)
            story_id = new_story.story_id
            response.redirect("/story/" + str(story_id))
            return

        #if there are errors, relay back to user
        errors.append("Please try again.")

    variables = {
        'errors': errors,
        'user': get_current_user(response),
        'title': title,
        'firstword': firstword
    }

    response.write(render(
        "templates/createastory.html",
        variables,
    ))
Exemple #2
0
def not_found_handler(request):
    request.write(
        render(
            '404.html', {
                'users': db.User.find_all(),
                'signed_in': authenticate_cookie(request),
                'username': get_username(request)
            }))
Exemple #3
0
def handle_list_users(request):
    request.write(
        render(
            'list_users.html', {
                'users': db.User.find_all(),
                'signed_in': authenticate_cookie(request),
                'username': get_username(request)
            }))
Exemple #4
0
def signin_handler(request):
    username = request.get_field('username')
    password = request.get_field('password')
    signin = {
        'username': username,
        'password': password,
        'signed_in': authenticate_cookie(request),
        'username': get_username(request)
    }
    request.write(render('signin.html', signin))
Exemple #5
0
def render_stories(response, stories):
    variables = {
        'stories': stories,
        'user': get_current_user(response)
    }

    response.write(render(
        'templates/stories.html',
        variables
    ))
Exemple #6
0
def scoreboard(response):
    variables = {
        'users': user.User.user_list(),
        'user': get_current_user(response)
    }

    response.write(render(
        'templates/scoreboard.html',
        variables
    ))
Exemple #7
0
def view_story(response, sid):
    story_inst = story.Story.from_id(sid)
    if not story_inst:
        raise tornado.web.HTTPError(404)

    variables = {
        "story": story_inst,
        "user": get_current_user(response)
    }

    response.write(render(
        "templates/viewstory.html",
        variables
    ))
Exemple #8
0
def profile(response, username):
        # get request, the list of stories they have made,
        # list of stories they have contributed to maybe, last visit?,
        display_user = user.User.from_username(username)
        current_user = get_current_user(response)

        context = {
            "current_user": current_user,
            "display_user": display_user
        }

        response.write(render(
            "templates/userProfile.html",
            context
        ))
Exemple #9
0
def signup_handler(request):
    request.write(
        render(
            'signup.html', {
                'signed_in': authenticate_cookie(request),
                'username': get_username(request)
            }))
    ident = request.get_field('id')
    username = request.get_field('username')
    email = request.get_field('email')
    password = request.get_field('password')
    doc = request.get_field('doc')
    gender = request.get_field('gender')
    dob = request.get_field('dob')
    if username is not None:
        request.set_secure_cookie("current_user", username)
Exemple #10
0
def index_handler(request):
    posts = db.Post.find_all()
    if not posts: posts = []
    posts = [{
        'image': i.file if i.file != [] else 'notfound.jpg',
        'question': i.title,
        'id': i.id
    } for i in posts]
    request.write(
        render(
            'index.html', {
                'posts': posts,
                'signed_in': authenticate_cookie(request),
                'username': get_username(request),
                'link': 'view/()'
            }))  # { 'post1': (image location, comment}
Exemple #11
0
def stories(response):
    """
    function:   stories()
    arguments:  response
    description:
        When the page is called for listing the stories avaliable.
    """

    variables = {
        'stories': story.Story.story_list(),
        'user': get_current_user(response)
    }

    response.write(render(
        'templates/stories.html',
        variables
    ))
Exemple #12
0
def register(response):
        logged_name = response.get_secure_cookie('username')
        if logged_name is not None:
                response.redirect('/')
                return
        username = response.get_field('name')
        password = response.get_field('password')
        email = response.get_field('email')
        # the vars to pass to the register form
        p_username = username
        p_password = password
        p_email = email

        errors = []
        if username and password is not None:
            if EMAIL_RE.match(email) is None:
                errors.append('Invalid email')
            if re.match(r'^\w{3,12}$', username) is None:
                errors.append('Invalid username, usernames must be 3-12 characters and alphanumeric, optionally containing underscores')
            if user.User.from_username(username) is not None:
                errors.append('Invalid username, username already taken')
            if len(password) < 5:
                errors.append('Invalid password, passwords must be at least 5  characters long')
            if not errors:
                response.set_secure_cookie('username', username)
                user.User.create(username, password, email=email)
                response.redirect('/')
                return

            else:
                username = password = None
        else:
            username = password = None

        context = {
            'user': username,
            'errors': errors,
            'username': p_username,
            'password': p_password,
            'email': p_email
        }
        response.write(render(
            'templates/register.html',
            context
        ))
Exemple #13
0
def my_stories(response):
    # pretty much the same as stories above

    username = get_current_user(response)
    if username is None:
        response.redirect("/")
        return

    else:
        variables = {
            'stories': username.own_stories,
            'user': get_current_user(response)
        }

        response.write(render(
            'templates/mystories.html',
            variables
        ))
Exemple #14
0
def view_handler(request, username):
    user = db.User.find_by_username(username)
    if user is None:
        request.write("username is not in db")
    else:
        request.write(
            render(
                'profile.html', {
                    'user':
                    user,
                    'picture':
                    get_picture(user),
                    'signed_in':
                    authenticate_cookie(request),
                    'same_user':
                    authenticate_correct_username(request, user.username),
                    'username':
                    user.username
                })
        )  # username required for pages that do not build a user object
Exemple #15
0
def add_word(response, sid, wid):
    story_inst = story.Story.from_id(sid)
    word_inst = word.Word.from_id(wid)
    errors = []

    new_word = response.get_field('word').strip()

    if not new_word:
        errors.append('Please enter a word')

    if ' ' in new_word:
        errors.append('Please only enter one word')

    if len(new_word) > 50:
        errors.append('Your word is too long. Word must be below 51 characters long')

    author = get_current_user(response)
    if author is None:
        errors.append('You must be logged in to post a word')

    if not errors:  # if there are no errors
        try:
            word_inst.add_child(new_word, author)
        except DuplicateWordException:
            errors.append('Your word has already been entered')
        else:
            story_inst.prune()
            response.redirect('/story/{}'.format(story_inst.story_id))
            return

    errors.append('Please try again.')

    variables = {
        'errors': errors,
        'story': story_inst,
        'user': get_current_user(response)
    }
    response.write(render(
        'templates/viewstory.html',
        variables,
    ))
Exemple #16
0
def add_word(response, sid, wid):
    story_inst = story.Story.from_id(sid)
    word_inst = word.Word.from_id(wid)
    errors = []

    new_word = response.get_field("word").strip()

    if not new_word:
        errors.append("Please enter a word")

    if " " in new_word:
        errors.append("Please only enter one word")

    if len(new_word) > 50:
        errors.append("Your word is too long. Word must be below 51 characters long")

    author = get_current_user(response)
    if author is None:
        errors.append('You must be logged in to post a word')

    if not errors:  # if there are no errors
        word_inst.add_child(new_word, author)
        story_inst.prune()
        response.redirect("/story/{}".format(story_inst.story_id))
        return

    errors.append("Please try again.")

    variables = {
        'errors': errors,
        "story": story_inst,
        'user': get_current_user(response)
    }
    response.write(render(
        "templates/viewstory.html",
        variables,
    ))
Exemple #17
0
def login(response):
        username = response.get_field('name')
        password = response.get_field('password')
        logged_name = response.get_secure_cookie('username')
        login_fail = False
        if logged_name is not None:
            username = logged_name.decode()
            print('logged in, user ='******'username', username)
                    response.redirect('/')
                    return
                else:
                    login_fail = True
                    username = password = None
            else:
                username = password = None

        response.write(render(
            'templates/login.html',
            {'user': username, 'login_fail': login_fail}
        ))
Exemple #18
0
def render_no_login(request):
    request.write(render('notsignedin.html', {'signed_in':authenticate_cookie(request), 'username': get_username(request)}))