Ejemplo n.º 1
0
def index():
    """ Posts """

    conf = Config()

    per_page = conf.PER_PAGE
    page, per_page, offset = get_page_args()

    with MySQL() as c:
        c.execute("SELECT * FROM posts")
        c.fetchall()
        num_rows = c.rowcount

    pagination = Pagination(page=page,
                            per_page=per_page,
                            total=num_rows,
                            bs_version=4,
                            alignment="center")

    with MySQL() as c:
        c.execute(
            f"SELECT post_id, post_title, post_content, DATE_FORMAT(post_date, '%d, %M, %Y at %h:%i %p') as post_date, author_id FROM posts ORDER BY post_id DESC LIMIT {offset}, {per_page}"
        )
        result_post = c.fetchall()
    """ Account """
    # if user has ticked remember_me before, we set its session login to true and stop executing the code below.
    if (session.get("remember_me")):
        setUserLoggedIn(True)
        return render_template("index.html",
                               active='home',
                               pagination=pagination,
                               news=result_post,
                               admins=retrieveAdmins())

    # if the method we get is not post, we send the user back to index.html

    if (request.method == "POST"):
        # set username variable to form input.
        # set password variable to password input.
        username = request.form.get("username")
        password = request.form.get("password")

        ret = loginUser(username, password)

        if (ret == 0):
            return jsonify(success=False,
                           error_msg="Invalid username, please try again.")
        elif (ret == 1):
            return jsonify(success=False,
                           error_msg="Wrong password, please try again.")
        if (ret == 2):
            flash("You have  successfully logged in", "success")
            return jsonify(success=True)

    return render_template("index.html",
                           active='home',
                           pagination=pagination,
                           news=result_post,
                           admins=retrieveAdmins())
Ejemplo n.º 2
0
def news_edit(postid):
    # if the user is not signed in and logged in, disallow from accessing this link.
    if (not isUserLoggedIn()):
        return abort(403)

    result = editPost(postid)
    return render_template("news_edit.html",
                           post_data=result,
                           admins=retrieveAdmins())
Ejemplo n.º 3
0
def search(username):
    if (username == None):
        return render_template("search.html",
                               username=username,
                               active='search',
                               admins=retrieveAdmins())

    with MySQL() as c:
        c.execute("SELECT accountID FROM accounts WHERE username = %s",
                  username)
        result = c.fetchone()

    result_account, result_skill, result_item = retrieveUserData(
        result['accountID'])

    return render_template("search.html",
                           active='search',
                           account=result_account,
                           skill=result_skill,
                           item=result_item,
                           admins=retrieveAdmins())
Ejemplo n.º 4
0
def search():
    if(request.method == "GET"):
        username = request.args.get("search")

        if(username == None):
            return render_template("search.html",
                username=username,
                active='search',
                admins=retrieveAdmins()
            )

        with MySQL() as c:
            c.execute("SELECT accountID FROM accounts WHERE username = %s", username)
            result = c.fetchone()

        if(result == None):
            flash("Invalid username, please try again.","danger")
            return redirect(url_for("main.search"))

        result_account, result_skill, result_item = retrieveUserData(result['accountID'])

        return render_template("search.html",
            active='search',
            account=result_account,
            skill=result_skill,
            item=result_item,
            admins=retrieveAdmins()
        )
    if(request.method == "POST"):
        # set username variable to form input.
        # set password variable to password input.
        username = request.form.get("username")
        password = request.form.get("password")

        loginUser(username, password)
        flash("Successfully logged in", "success")
    return redirect(url_for("main.search"));
Ejemplo n.º 5
0
def dashboard(accountid):
    # if user is not logged in, show him an error message saying he can't access this page.
    if (not isUserLoggedIn()):
        return abort(403)

    # if the session accountid is not the same as accountid passed to dashboard param then don't allow this process.
    if (session.get('accountid') != accountid):
        return abort(403)

    result_account, result_skill, result_item = retrieveUserData(accountid)

    return render_template("dashboard.html",
                           active='dashboard',
                           account=result_account,
                           skill=result_skill,
                           item=result_item,
                           admins=retrieveAdmins())
Ejemplo n.º 6
0
def news_write():
    # if the user is not signed in and logged in, disallow from accessing this link.
    if (not isUserLoggedIn()):
        return abort(403)

    return render_template("news_write.html", admins=retrieveAdmins())