I can't figure out for the life of me how to ensure a user is authenticated in Piston. Here's what I've tried.
- Login_required decorator in Piston. This doesn't seem to work, so I looked and found authentication in Piston.
- HTTPBasicAuthentication seems to log a user in, rather than ensures a user is_authenticated. I just want to make sure they're authenticated before posting data.
- Wrote code manually to check if user.is_authenticated. But then when a user is not authenticated, how do I raise an error that is consistent with Piston's error response?
After this, I was stuck. Thanks for any help.
UPDATE: ok, I figured out the error part. At the very least, I can do this manually. In case anyone wants to know, it's this.
from piston.utils import rc
resp = rc.BAD_REQUEST
resp.write("Need to be logged in yo")
return resp