2022-09-02 11:08:01 +00:00
|
|
|
from flask import current_app, flash, redirect, render_template, url_for
|
|
|
|
from flask_login import login_required
|
|
|
|
from threading import Thread
|
2022-02-08 11:26:20 +00:00
|
|
|
from app import db, hashids
|
|
|
|
from app.decorators import admin_required
|
2022-02-09 15:02:37 +00:00
|
|
|
from app.models import Role, User, UserSettingJobStatusMailNotificationLevel
|
2023-03-13 14:04:44 +00:00
|
|
|
from app.users.forms import (
|
2022-02-08 11:26:20 +00:00
|
|
|
EditNotificationSettingsForm
|
|
|
|
)
|
2022-12-23 17:08:33 +00:00
|
|
|
from app.users.forms import EditProfileSettingsForm
|
2021-09-13 09:45:43 +00:00
|
|
|
from . import bp
|
2022-02-08 11:26:20 +00:00
|
|
|
from .forms import AdminEditUserForm
|
2019-08-15 13:56:53 +00:00
|
|
|
|
|
|
|
|
2021-12-13 11:20:32 +00:00
|
|
|
@bp.before_request
|
2021-01-13 10:57:46 +00:00
|
|
|
@login_required
|
|
|
|
@admin_required
|
2021-12-13 11:20:32 +00:00
|
|
|
def before_request():
|
|
|
|
'''
|
|
|
|
Ensures that the routes in this package can be visited only by users with
|
|
|
|
administrator privileges (login_required and admin_required).
|
|
|
|
'''
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2022-09-02 11:08:01 +00:00
|
|
|
@bp.route('')
|
2021-01-13 10:57:46 +00:00
|
|
|
def index():
|
|
|
|
return redirect(url_for('.users'))
|
|
|
|
|
|
|
|
|
2021-09-13 09:45:43 +00:00
|
|
|
@bp.route('/users')
|
2020-10-23 08:17:14 +00:00
|
|
|
def users():
|
2023-01-09 07:45:47 +00:00
|
|
|
users = [x.to_json_serializeable(backrefs=True) for x in User.query.all()]
|
2021-11-30 15:22:16 +00:00
|
|
|
return render_template(
|
2022-02-08 11:26:20 +00:00
|
|
|
'admin/users.html.j2',
|
2023-01-09 07:45:47 +00:00
|
|
|
users=users,
|
2022-02-08 11:26:20 +00:00
|
|
|
title='Users'
|
|
|
|
)
|
2019-08-15 13:56:53 +00:00
|
|
|
|
|
|
|
|
2021-11-30 15:22:16 +00:00
|
|
|
@bp.route('/users/<hashid:user_id>')
|
2019-11-15 10:45:04 +00:00
|
|
|
def user(user_id):
|
|
|
|
user = User.query.get_or_404(user_id)
|
2020-10-28 14:34:12 +00:00
|
|
|
return render_template('admin/user.html.j2', title='User', user=user)
|
2019-08-15 13:56:53 +00:00
|
|
|
|
|
|
|
|
2022-02-08 11:26:20 +00:00
|
|
|
@bp.route('/users/<hashid:user_id>/edit', methods=['GET', 'POST'])
|
2021-01-13 10:57:46 +00:00
|
|
|
def edit_user(user_id):
|
2019-09-10 11:49:01 +00:00
|
|
|
user = User.query.get_or_404(user_id)
|
2022-02-08 11:26:20 +00:00
|
|
|
admin_edit_user_form = AdminEditUserForm(
|
2022-11-24 11:24:29 +00:00
|
|
|
data={'confirmed': user.confirmed, 'role': user.role.hashid},
|
2022-09-02 11:08:01 +00:00
|
|
|
prefix='admin-edit-user-form'
|
2022-02-08 11:26:20 +00:00
|
|
|
)
|
2022-11-30 13:36:42 +00:00
|
|
|
edit_profile_settings_form = EditProfileSettingsForm(
|
2022-02-08 11:26:20 +00:00
|
|
|
user,
|
2022-11-24 11:24:29 +00:00
|
|
|
data=user.to_json_serializeable(),
|
2022-11-30 13:36:42 +00:00
|
|
|
prefix='edit-profile-settings-form'
|
2022-02-08 11:26:20 +00:00
|
|
|
)
|
|
|
|
edit_notification_settings_form = EditNotificationSettingsForm(
|
2022-11-24 11:24:29 +00:00
|
|
|
data=user.to_json_serializeable(),
|
2022-09-02 11:08:01 +00:00
|
|
|
prefix='edit-notification-settings-form'
|
2022-02-08 11:26:20 +00:00
|
|
|
)
|
2022-09-02 11:08:01 +00:00
|
|
|
if (admin_edit_user_form.submit.data
|
|
|
|
and admin_edit_user_form.validate()):
|
2022-02-08 11:26:20 +00:00
|
|
|
user.confirmed = admin_edit_user_form.confirmed.data
|
|
|
|
role_id = hashids.decode(admin_edit_user_form.role.data)
|
|
|
|
user.role = Role.query.get(role_id)
|
2022-09-02 11:08:01 +00:00
|
|
|
db.session.commit()
|
2022-02-08 11:26:20 +00:00
|
|
|
flash('Your changes have been saved')
|
|
|
|
return redirect(url_for('.edit_user', user_id=user.id))
|
2022-11-30 13:36:42 +00:00
|
|
|
if (edit_profile_settings_form.submit.data
|
|
|
|
and edit_profile_settings_form.validate()):
|
|
|
|
user.email = edit_profile_settings_form.email.data
|
|
|
|
user.username = edit_profile_settings_form.username.data
|
2022-02-08 11:26:20 +00:00
|
|
|
db.session.commit()
|
|
|
|
flash('Your changes have been saved')
|
|
|
|
return redirect(url_for('.edit_user', user_id=user.id))
|
2022-09-02 11:08:01 +00:00
|
|
|
if (edit_notification_settings_form.submit.data
|
|
|
|
and edit_notification_settings_form.validate()):
|
2022-02-08 11:26:20 +00:00
|
|
|
user.setting_job_status_mail_notification_level = \
|
2022-02-09 15:02:37 +00:00
|
|
|
UserSettingJobStatusMailNotificationLevel[
|
2022-02-08 11:26:20 +00:00
|
|
|
edit_notification_settings_form.job_status_mail_notification_level.data # noqa
|
|
|
|
]
|
2019-09-10 11:49:01 +00:00
|
|
|
db.session.commit()
|
2022-02-08 11:26:20 +00:00
|
|
|
flash('Your changes have been saved')
|
2021-01-13 10:57:46 +00:00
|
|
|
return redirect(url_for('.edit_user', user_id=user.id))
|
2021-12-13 11:20:32 +00:00
|
|
|
return render_template(
|
2022-02-08 11:26:20 +00:00
|
|
|
'admin/edit_user.html.j2',
|
|
|
|
admin_edit_user_form=admin_edit_user_form,
|
2022-11-30 13:36:42 +00:00
|
|
|
edit_profile_settings_form=edit_profile_settings_form,
|
2022-02-08 11:26:20 +00:00
|
|
|
edit_notification_settings_form=edit_notification_settings_form,
|
|
|
|
title='Edit user',
|
|
|
|
user=user
|
|
|
|
)
|
2022-09-02 11:08:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
@bp.route('/users/<hashid:user_id>/delete', methods=['DELETE'])
|
|
|
|
def delete_user(user_id):
|
|
|
|
def _delete_user(app, user_id):
|
|
|
|
with app.app_context():
|
|
|
|
user = User.query.get(user_id)
|
|
|
|
user.delete()
|
|
|
|
db.session.commit()
|
|
|
|
|
|
|
|
User.query.get_or_404(user_id)
|
|
|
|
thread = Thread(
|
|
|
|
target=_delete_user,
|
|
|
|
args=(current_app._get_current_object(), user_id)
|
|
|
|
)
|
|
|
|
thread.start()
|
|
|
|
return {}, 202
|