pyramid_upwork
Project description
pyramid_upwork allows your users to authorize via upwork on your pyramid project.
You can find it on pypi as pyramid_upwork. Also don’t forget to check the documentation.
Requirements
pyramid-redis-sessions is used to store session in Redis database, so you need to install Redis and configure it to listen to port 127.0.0.1.
Other packages are installed automatically:
pyramid pyramid_redis_sessions python-upwork
To activate jinja2 renderer, install:
pip install pyramid_jinja2
Installation
Install with pip:
pip install pyramid_upwork
or using easy_install:
easy_install pyramid_upwork
You need to create Upwork API keys of the type Web and set appropriate permissions to the generated API key.
Usage
You can take a look at the pyramid_upwork_example application or use the instructions below.
Include following settings in your *.ini file:
[app:main] ... # Redis session settings redis.sessions.secret = FILL ME # upwork settings upwork.api.key = FILL ME upwork.api.secret = FILL ME
Then in your project’s __init__.py define the following function:
def get_acl_group(user_uid, request): """Here goes your ACL logic.""" # All authenticated users have ``view`` permission return 'view'
This function should return list of ACL group principals or None if user is not allowed to have any access groups. See pyramid documentation for security and tutorial.
Define a RootFactory in your models.py:
class RootFactory(object): """This object sets the security for our application.""" __acl__ = [ (Allow, Authenticated, 'view'), (Deny, Authenticated, 'login'), (Allow, Everyone, 'login'), ] def __init__(self, request): pass
Now register get_acl_group() function in the config registry to make authorization work. Put in your main method:
def get_acl_group(request): return ('view',) def main(global_config, **settings): """Main app configuration binding.""" config = Configurator(settings=settings, root_factory="myapp.models.RootFactory") # ACL authorization callback for pyramid-upwork config.registry.get_acl_group = get_acl_group # External includes config.include('pyramid_upwork') # Views and routing goes here # ... # config.add_view('myapp.views.MainPage', renderer='templates/main.jinja2', permission='view') return config.make_wsgi_app()
You can provide custom forbidden.jinja2 template by overriding asset in your __init__.py:
# Override forbidden template config.override_asset( to_override='pyramid_upwork:templates/forbidden.jinja2', override_with='myapp:templates/forbidden.jinja2')
See template example in pyramid_upwork/templates/forbidden.jinja2.
The “Logout” action is done also via POST request with CSRF protection, see example of “Logout” buttion in pyramid_upwork_example/templates/layout.jinja2.
Contacts
The project is made by Cyril Panshine (@CyrilPanshine). Bug reports and pull requests are very much welcomed!
1.1.6
Odesk rebranded to Upwork, now using python-upwork library.
1.1.5
Due to oDesk Public API change we need to get user information now from client.hr.get_user_me()
1.1.4
Implement bugfix for case when session is broken and request token and secret are not set.
1.1.3
Store first and last name in the session for further usage in templates
1.1.2
Login and Logout actions are performed via POST and has protection against CSRF attacks
1.1.1
Fix BaseHandler obscuring AttributeError during dispatch
1.1
Use override_offset for overriding forbidden.jinja2 template.
If user is authenticated but is not authrized for some view, render forbidden page with Log out link instead of redirect to avoid redirect loop
1.0
Initial version.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pyramid_upwork-1.1.6.tar.gz
.
File metadata
- Download URL: pyramid_upwork-1.1.6.tar.gz
- Upload date:
- Size: 6.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | de5a0d430357604429e70b0b234318362d07f8d620c1bd6f4022af70693872e1 |
|
MD5 | e7d4908eccad474bb8f0e51ba5091479 |
|
BLAKE2b-256 | 66f7c1597e47c12e8b4d5c3f9937098327bd4a8f15a9186c566040dc8a2f8ec3 |