Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97279630
webaccount_user_settings.py
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
Sat, Jan 4, 00:20
Size
2 KB
Mime Type
text/x-python
Expires
Mon, Jan 6, 00:20 (2 d)
Engine
blob
Format
Raw Data
Handle
23372207
Attached To
R3600 invenio-infoscience
webaccount_user_settings.py
View Options
# -*- coding: utf-8 -*-
##
## This file is part of Invenio.
## Copyright (C) 2012 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.
"""WebAccount User Settings"""
from
flask
import
Blueprint
,
session
,
make_response
,
g
,
render_template
,
\
request
,
flash
,
jsonify
,
redirect
,
url_for
,
current_app
from
invenio.websession_model
import
User
from
invenio.webinterface_handler_flask_utils
import
_
from
invenio.webuser_flask
import
current_user
from
invenio.jinja2utils
import
render_template_to_string
from
invenio.settings
import
Settings
,
UserSettingsStorage
,
\
ModelSettingsStorageBuilder
from
invenio.websession_model
import
User
from
invenio.webaccount_forms
import
ChangeUserEmailSettingsForm
class
WebAccountSettings
(
Settings
):
keys
=
[
'email'
]
form_builder
=
ChangeUserEmailSettingsForm
storage_builder
=
ModelSettingsStorageBuilder
(
lambda
:
User
.
query
.
get
(
current_user
.
get_id
()))
def
__init__
(
self
):
super
(
WebAccountSettings
,
self
)
.
__init__
()
self
.
icon
=
'user'
self
.
title
=
_
(
'Account'
)
self
.
edit
=
url_for
(
'youraccount.edit'
,
name
=
__name__
.
split
(
'.'
)[
-
1
])
def
widget
(
self
):
template
=
"""
{{ _("You are logged in as %s") | format(current_user.nickname) }}
"""
return
render_template_to_string
(
template
,
_from_string
=
True
)
widget
.
size
=
4
@property
def
is_authorized
(
self
):
return
current_user
.
is_authenticated
()
## Compulsory plugin interface
settings
=
WebAccountSettings
#__all__ = ['WebAccountSettings']
Event Timeline
Log In to Comment