fixing the config section we pull things out of for basic_auth
[mediagoblin.git] / mediagoblin / plugins / basic_auth / __init__.py
CommitLineData
ee355966
RE
1# GNU MediaGoblin -- federated, autonomous media hosting
2# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
3#
4# This program is free software: you can redistribute it and/or modify
5# it under the terms of the GNU Affero General Public License as published by
6# the Free Software Foundation, either version 3 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU Affero General Public License for more details.
13#
14# You should have received a copy of the GNU Affero General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>.
f339b76a 16from mediagoblin.plugins.basic_auth import forms as auth_forms
3bcdc490 17from mediagoblin.plugins.basic_auth import tools as auth_tools
ee355966 18from mediagoblin.db.models import User
ee355966
RE
19from mediagoblin.tools import pluginapi
20from sqlalchemy import or_
21
22
ee355966 23def setup_plugin():
ac0bc6a1 24 config = pluginapi.get_config('mediagoblin.plugins.basic_auth')
ee355966
RE
25
26
b1e02e0a
RE
27def get_user(**kwargs):
28 username = kwargs.pop('username', None)
29 if username:
30 user = User.query.filter(
31 or_(
32 User.username == username,
33 User.email == username,
34 )).first()
35 return user
ee355966
RE
36
37
38def create_user(registration_form):
b1e02e0a 39 user = get_user(username=registration_form.username.data)
94d77e1f 40 if not user and 'password' in registration_form:
c94316bf 41 user = User()
569873d8
RE
42 user.username = registration_form.username.data
43 user.email = registration_form.email.data
3b8c733b 44 user.pw_hash = gen_password_hash(
c94316bf 45 registration_form.password.data)
c94316bf 46 user.save()
ee355966
RE
47 return user
48
49
ee355966
RE
50def get_login_form(request):
51 return auth_forms.LoginForm(request.form)
52
53
54def get_registration_form(request):
55 return auth_forms.RegistrationForm(request.form)
56
57
3b8c733b 58def gen_password_hash(raw_pass, extra_salt=None):
3bcdc490 59 return auth_tools.bcrypt_gen_password_hash(raw_pass, extra_salt)
9c2c9be7
RE
60
61
3b8c733b 62def check_password(raw_pass, stored_hash, extra_salt=None):
3bcdc490 63 return auth_tools.bcrypt_check_password(raw_pass, stored_hash, extra_salt)
b194f29f
RE
64
65
744f1c83
RE
66def auth():
67 return True
68
69
c94316bf
RE
70def append_to_global_context(context):
71 context['pass_auth'] = True
72 return context
73
74
75def add_to_form_context(context):
76 context['pass_auth_link'] = True
77 return context
78
79
ee355966
RE
80hooks = {
81 'setup': setup_plugin,
f65615ea 82 'authentication': auth,
ee355966
RE
83 'auth_get_user': get_user,
84 'auth_create_user': create_user,
ee355966
RE
85 'auth_get_login_form': get_login_form,
86 'auth_get_registration_form': get_registration_form,
9c2c9be7 87 'auth_gen_password_hash': gen_password_hash,
b194f29f 88 'auth_check_password': check_password,
3bcdc490 89 'auth_fake_login_attempt': auth_tools.fake_login_attempt,
c94316bf
RE
90 'template_global_context': append_to_global_context,
91 ('mediagoblin.plugins.openid.register',
92 'mediagoblin/auth/register.html'): add_to_form_context,
93 ('mediagoblin.plugins.openid.login',
94 'mediagoblin/auth/login.html'): add_to_form_context,
ee355966 95}