- flask
- python-odesk
- python-oauth2
Before you may use oDesk APIs, you will need to obtain your pair of API keys. Visit the oDesk API Center documentation for full details. Please note, that Flask-oDesk uses authorization via OAuth and it needs keys with auth type "OAuth".
Please make sure, that SECRET_KEY which is necessary for sessions, based on the secure cookies, is indicated in settings.py:
SECRET_KEY = '(your random secret key)'
You need to store your pair of oDesk API keys in settings.py:
ODESK_KEY = '(your oDesk public key)' ODESK_SECRET = '(your oDesk secret key)'
You can also set the list of teams in settings.py, which will be able to authorize. If you do not specify this option or leave the list empty, then all oDesk users will be able to authorize:
ODESK_AUTH_TEAMS = ('odesk:odeskpsbootcamp',)
Please make sure, that you have registered odesk module in your app.py correctly. Please keep in mind, that url_prefix can be whatever you like:
from flask import Flask from flaskext.odesk import odesk app = Flask(__name__) app.config.from_pyfile('settings.py') app.register_module(odesk, url_prefix='/odesk')
Please use the decorator login_required to close the access for anonymous users to the certain parts of your website:
@app.route('/only/for/odesk/users') @odesk.login_required def admin(): return "Welcome, oDesk user!"
If you want to indicate login or logout links in the template, than you can use url_for function and odesk_is_authorized variable:
{% if odesk_is_authorized %} <a href="{{ url_for('odesk.logout') }}">Log out</a> {% else %} <a href="{{ url_for('odesk.login') }}">oDesk log in</a> {% endif %}
To check the authorization of the current user you can use is_authorized method:
@app.route('/test') def test(): if odesk.is_authorized(): return "You are authorized." else: return "You are not authorized yet."
If you need, you can start the authorization process manually from your code:
if not odesk.is_authorized(): return odesk.login()
You can also use next parameter to indicate URL, where will be redirect after the authorization process ends:
if not odesk.is_authorized(): return odesk.login(next='/blah/blah')
You can use logout method for user's logging out. Please pay attention, that unlike login this method do not return the bulk of redirects. It simply deletes the OAuth session. You should return response manually:
if odesk.is_authorized(): odesk.logout() return redirect('/')
If you want to expand autorization process, you can use after_login decorator, that indicates your function, which will be called after successfully authorization:
@odesk.after_login def save_session(): # Getting current user's data. Please, see below how to use the Client. session['user'] = odesk.get_client().hr.get_user('me')
If you have used after_login and saved something to the session, please, do not forget to delete this session after logging out, using decorator after_logout:
@odesk.after_logout def delete_session(): if 'user' in session: del session['user']
You can use get_access_token method to get the current access token and access token secret, that can be stored in DB and used for access to the client later, if necessary:
if odesk.is_authorized(): access_token, access_token_secret = odesk.get_access_token()
You can use get_client method to get the client:
if odesk.is_authorized(): c = odesk.get_client() c.team.get_teamrooms()
Or you can use the client even if the current user is not authorized, but you have the access token and access token secret:
if not odesk.is_authorized(): c = odesk.get_client(access_token, access_token_secret) c.team.get_teamrooms()
June 2011
- Initial version (version keeped in sync with suitable python-odesk version)
- Git repo: https://github.com/odesk/flask-odesk
- Issues: http://github.com/odesk/flask-odesk/issues
- Documentation: http://odesk.github.com/flask-odesk/
- Mailing list: http://groups.google.com/group/python-odesk ([email protected])
Copyright (c) 2011, oDesk http://www.odesk.com
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
- Neither the name of oDesk nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.