Code Monkey home page Code Monkey logo

Comments (8)

aharelick avatar aharelick commented on May 9, 2024

@sandlerben, @jondubin: How do people feel about having another decorator like @confirmed to put on top of routes that require it. Understandably, this may be a little excessive. I think the overlap between @login_required and something like @confirmed would be pretty large, but just wanted to gauge opinions.

from flask-base.

sandlerben avatar sandlerben commented on May 9, 2024

Could we create a better version of login_required and put it in decorators.py?

from flask-base.

jondubin avatar jondubin commented on May 9, 2024

How about we pass an argument into the decorator to indicate whether the acct needs to be confirmed or not?

from flask-base.

sandlerben avatar sandlerben commented on May 9, 2024

That's a good idea. Every endpoint that is login protected should also require confirmation except the confirm account endpoint.

from flask-base.

abhisuri97 avatar abhisuri97 commented on May 9, 2024

Is this still an error? I just tried this in my app and the expected behavior is what is happening currently. I think that the following found in app/account/views.py takes care of the issue (or at least it should):

@account.before_app_request
def before_request():
    """Force user to confirm email before accessing login-required routes."""
    if current_user.is_authenticated() \
            and not current_user.confirmed \
            and request.endpoint[:8] != 'account.' \
            and request.endpoint != 'static':
        return redirect(url_for('account.unconfirmed'))


@account.route('/unconfirmed')
def unconfirmed():
    """Catch users with unconfirmed emails."""
    if current_user.is_anonymous() or current_user.confirmed:
        return redirect(url_for('main.index'))
    return render_template('account/unconfirmed.html')

from flask-base.

sandlerben avatar sandlerben commented on May 9, 2024

It's possible I fixed it without closing the issue. I'll check and update
this issue.

On Sun, Mar 20, 2016, 2:58 AM Abhinav Suri [email protected] wrote:

Is this still an error? I just tried this in my app and the expected
behavior is what is happening currently. I think that the following found
in app/account/views.py takes care of the issue (or at least it should):

@account.before_app_request
def before_request():
"""Force user to confirm email before accessing login-required routes."""
if current_user.is_authenticated()
and not current_user.confirmed
and request.endpoint[:8] != 'account.'
and request.endpoint != 'static':
return redirect(url_for('account.unconfirmed'))

@account.route('/unconfirmed')
def unconfirmed():
"""Catch users with unconfirmed emails."""
if current_user.is_anonymous() or current_user.confirmed:
return redirect(url_for('main.index'))
return render_template('account/unconfirmed.html')


You are receiving this because you were mentioned.
Reply to this email directly or view it on GitHub
#17 (comment)

from flask-base.

abhisuri97 avatar abhisuri97 commented on May 9, 2024

permission to close the issue? tested and it seems to be fixed.

from flask-base.

sandlerben avatar sandlerben commented on May 9, 2024

yes this looks fixed! sorry for the delayed response

from flask-base.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.