Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91896246
package-anatomy-extensions.rst
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 15, 13:32
Size
4 KB
Mime Type
text/x-python
Expires
Sun, Nov 17, 13:32 (2 d)
Engine
blob
Format
Raw Data
Handle
22343347
Attached To
R3600 invenio-infoscience
package-anatomy-extensions.rst
View Options
.. This file is part of Invenio
Copyright (C) 2014, 2015 CERN.
Invenio is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
Invenio is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with Invenio; if not, write to the Free Software Foundation, Inc.,
59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
Invenio extensions
==================
What are extensions and what is their purpose? An extension is a small piece of
code that should ease the integration of a third party library.
There are many Flask extensions which extend the functionality of the
application in various ways. For instance they can add support for databases,
user authentication & authorization, menu & breadcrumbs and other common tasks.
All extensions are automatically loaded from the
``EXTENSIONS``
configuration
option list. If they should a function
``setup_app(app)``
or function
accepting
``app``
needs to be specified (e.g.
``foo.bar:init``
,
``mymodule:setup``
).
Many Flask extensions can be found in the
`Flask Extension Registry`_
. Everyone
should check first if there is a usable extension before developing new one.
When developing an extension, follow the
`Flask Extension Development`_
guideline that will help you get your extension running.
..
_Flask Extension Registry:
http://flask.pocoo.org/extensions/
..
_Flask Extension Development:
http://flask.pocoo.org/docs/extensiondev/
Plugging an Existing Extension
------------------------------
All extensions are located in a package called
``flask_something``
where "something" is the name of the extension you want to bridge.
So for example if you plan to add support for an extension named
`login`
, you would name your extension's package
``invenio.ext.login``
.
Alternatively, if the extension only reads configuration from
``current_app.config``
, you can just list in
``EXTENSIONS``
option
as
``flask_something:Something``
, where
``Something``
has to accept
an application object as first argument
::
class Something(object):
def __init__(self, app, optional=None):
pass
So what do extensions actually look like? An extension has to ensure
that it works with multiple Flask application instances at the same time.
Code structure
--------------
So let's get started with creating such an extension bridge. This example
bridge will provide very basic support for
`Flask Login`_
.
First we'll create the following folder structure
::
invenio/ext/login/
__init__.py
legacy_user.py
README
Here's the contents of the most important files:
*
``__init__.py``
contains
``setup_app``
function:
..
code-block
::
python
from .legacy_user import UserInfo
def setup_app(app):
"""Setup login extension."""
# Let's create login manager.
_login_manager = LoginManager(app)
_login_manager.login_view = app.config.get('CFG_LOGIN_VIEW',
'webaccount.login')
_login_manager.anonymous_user = UserInfo
@_login_manager.user_loader
def _load_user(uid):
"""
Function should not raise an exception if uid is not valid
or User was not found in database.
"""
return UserInfo(int(uid))
return app
*
``legacy_user.py``
contains implementation of the
``UserMixin``
object:
..
code-block
::
python
from flask_login import UserMixin
from werkzeug.datastructures import CallbackDict, CombinedMultiDict
class UserInfo(CombinedMultiDict, UserMixin):
"""
This provides legacy implementations for methods that Flask-Login
and Invenio 1.x expect user objects to have.
"""
def __init__(self, uid=None, force=False):
...
..
_Flask Login:
https://flask-login.readthedocs.io/en/latest/
Event Timeline
Log In to Comment