I'd like to create a decorator for Flask routes to flag certain routes as public, so I can do things like this:

@public
@app.route('/welcome')
def welcome():
    return render_template('/welcome.html')

Elsewhere, here's what I was thinking the decorator and check would look like:

_public_urls = set()

def public(route_function):
    # add route_function's url to _public_urls
    # _public_urls.add(route_function ...?.url_rule)
    def decorator(f):
        return f

def requested_url_is_public():
    from flask import request
    return request.url_rule in _public_urls

Then when a request is made, I have a context function that checks requested_url_is_public.

I'm a bit stumped because I don't know how to get the url rule for a given function in the public decorator.

Perhaps this isn't the best design choice for Flask, but I'd expect there's another simple & elegant way to achieve this.

I've seen this patterns like this before, and would like to mimic it. For example, this is something of a counterpart to Django's login_required decorator.

I'd enjoy reading thoughts on this.

link|improve this question

feedback

1 Answer

Flask already has a login_required decorator (see view decorators). If you are using public_urls to decide which urls to require authentication for, you are most likely better off using that.

link|improve this answer
Magic! Cheers for this. – Brian M. Hunt Nov 19 '11 at 22:19
Oops - I just realized that, as close as this is to what I want, I'm not quite sure it's the answer I need. I've about 4 public urls and over 100 private. I don't want to pollute the code w/@login_required, so I'd like to have an eg before_request that denies all public requests unless there's an @public on the view. I hope you can see why this isn't quite the answer, but what you've posted is definitely a great lead. If I come up with the answer I'll mark this correct and post what I've done. Cheers. – Brian M. Hunt Nov 19 '11 at 23:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.