mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 01:05:42 +00:00
Move the last bits of the settings package to the user package
This commit is contained in:
parent
6abf119c0c
commit
77fc8a42f1
16
app/static/js/Requests/users/settings.js
Normal file
16
app/static/js/Requests/users/settings.js
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
/*****************************************************************************
|
||||||
|
* Settings *
|
||||||
|
* Fetch requests for /users/<entity>/settings routes *
|
||||||
|
*****************************************************************************/
|
||||||
|
Requests.users.entity.settings = {};
|
||||||
|
|
||||||
|
Requests.users.entity.settings.profilePrivacy = {};
|
||||||
|
|
||||||
|
Requests.users.entity.settings.profilePrivacy.update = (userId, profilePrivacySetting, enabled) => {
|
||||||
|
let input = `/users/${userId}/settings/profile-privacy/${profilePrivacySetting}`;
|
||||||
|
let init = {
|
||||||
|
method: 'PUT',
|
||||||
|
body: JSON.stringify(enabled)
|
||||||
|
};
|
||||||
|
return Requests.JSONfetch(input, init);
|
||||||
|
}
|
@ -14,25 +14,12 @@ Requests.users.entity.delete = (userId) => {
|
|||||||
return Requests.JSONfetch(input, init);
|
return Requests.JSONfetch(input, init);
|
||||||
};
|
};
|
||||||
|
|
||||||
Requests.users.entity.settings = {};
|
Requests.users.entity.avatar = {};
|
||||||
|
|
||||||
Requests.users.entity.settings.avatar = {};
|
Requests.users.entity.avatar.delete = (userId) => {
|
||||||
|
let input = `/users/${userId}/avatar`;
|
||||||
Requests.users.entity.settings.avatar.delete = (userId) => {
|
|
||||||
let input = `/users/${userId}/settings/avatar`;
|
|
||||||
let init = {
|
let init = {
|
||||||
method: 'DELETE'
|
method: 'DELETE'
|
||||||
};
|
};
|
||||||
return Requests.JSONfetch(input, init);
|
return Requests.JSONfetch(input, init);
|
||||||
}
|
}
|
||||||
|
|
||||||
Requests.users.entity.settings.profilePrivacy = {};
|
|
||||||
|
|
||||||
Requests.users.entity.settings.profilePrivacy.update = (userId, profilePrivacySetting, enabled) => {
|
|
||||||
let input = `/users/${userId}/settings/profile-privacy/${profilePrivacySetting}`;
|
|
||||||
let init = {
|
|
||||||
method: 'PUT',
|
|
||||||
body: JSON.stringify(enabled)
|
|
||||||
};
|
|
||||||
return Requests.JSONfetch(input, init);
|
|
||||||
}
|
|
||||||
|
@ -66,7 +66,8 @@
|
|||||||
'js/Requests/corpora/files.js',
|
'js/Requests/corpora/files.js',
|
||||||
'js/Requests/corpora/followers.js',
|
'js/Requests/corpora/followers.js',
|
||||||
'js/Requests/jobs/jobs.js',
|
'js/Requests/jobs/jobs.js',
|
||||||
'js/Requests/users/users.js'
|
'js/Requests/users/users.js',
|
||||||
|
'js/Requests/users/settings.js'
|
||||||
%}
|
%}
|
||||||
<script src="{{ ASSET_URL }}"></script>
|
<script src="{{ ASSET_URL }}"></script>
|
||||||
{%- endassets %}
|
{%- endassets %}
|
||||||
|
@ -213,7 +213,7 @@ avatarUploadElement.addEventListener('change', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
document.querySelector('#delete-avatar').addEventListener('click', () => {
|
document.querySelector('#delete-avatar').addEventListener('click', () => {
|
||||||
Requests.users.entity.settings.avatar.delete({{ user.hashid|tojson }})
|
Requests.users.entity.avatar.delete({{ user.hashid|tojson }})
|
||||||
.then(
|
.then(
|
||||||
(response) => {
|
(response) => {
|
||||||
avatarPreviewElement.src = {{ url_for('static', filename='images/user_avatar.png')|tojson }};
|
avatarPreviewElement.src = {{ url_for('static', filename='images/user_avatar.png')|tojson }};
|
||||||
|
@ -2,5 +2,5 @@ from flask import Blueprint
|
|||||||
|
|
||||||
|
|
||||||
bp = Blueprint('users', __name__)
|
bp = Blueprint('users', __name__)
|
||||||
from . import events, routes
|
from . import events, json_routes, routes
|
||||||
from . import settings
|
from . import settings
|
||||||
|
@ -3,7 +3,7 @@ from flask_login import current_user, login_required, logout_user
|
|||||||
from threading import Thread
|
from threading import Thread
|
||||||
from app import db
|
from app import db
|
||||||
from app.decorators import content_negotiation
|
from app.decorators import content_negotiation
|
||||||
from app.models import User
|
from app.models import Avatar, User
|
||||||
from . import bp
|
from . import bp
|
||||||
|
|
||||||
|
|
||||||
@ -22,7 +22,7 @@ def delete_user(user_id):
|
|||||||
abort(403)
|
abort(403)
|
||||||
thread = Thread(
|
thread = Thread(
|
||||||
target=_delete_user,
|
target=_delete_user,
|
||||||
args=(current_app._get_current_object(), user_id)
|
args=(current_app._get_current_object(), user.id)
|
||||||
)
|
)
|
||||||
if user == current_user:
|
if user == current_user:
|
||||||
logout_user()
|
logout_user()
|
||||||
@ -31,3 +31,28 @@ def delete_user(user_id):
|
|||||||
'message': f'User "{user.username}" marked for deletion'
|
'message': f'User "{user.username}" marked for deletion'
|
||||||
}
|
}
|
||||||
return response_data, 202
|
return response_data, 202
|
||||||
|
|
||||||
|
|
||||||
|
@bp.route('/<hashid:user_id>/avatar', methods=['DELETE'])
|
||||||
|
@content_negotiation(produces='application/json')
|
||||||
|
def delete_user_avatar(user_id):
|
||||||
|
def _delete_avatar(app, avatar_id):
|
||||||
|
with app.app_context():
|
||||||
|
avatar = Avatar.query.get(avatar_id)
|
||||||
|
avatar.delete()
|
||||||
|
db.session.commit()
|
||||||
|
|
||||||
|
user = User.query.get_or_404(user_id)
|
||||||
|
if user.avatar is None:
|
||||||
|
abort(404)
|
||||||
|
if not (user == current_user or current_user.is_administrator()):
|
||||||
|
abort(403)
|
||||||
|
thread = Thread(
|
||||||
|
target=_delete_avatar,
|
||||||
|
args=(current_app._get_current_object(), user.avatar.id)
|
||||||
|
)
|
||||||
|
thread.start()
|
||||||
|
response_data = {
|
||||||
|
'message': f'Avatar marked for deletion'
|
||||||
|
}
|
||||||
|
return response_data, 202
|
||||||
|
@ -1,38 +1,11 @@
|
|||||||
from flask import abort, current_app, request
|
from flask import abort, request
|
||||||
from flask_login import current_user, login_required
|
from flask_login import current_user, login_required
|
||||||
from threading import Thread
|
|
||||||
import os
|
|
||||||
from app import db
|
from app import db
|
||||||
from app.decorators import content_negotiation
|
from app.decorators import content_negotiation
|
||||||
from app.models import Avatar, User, ProfilePrivacySettings
|
from app.models import User, ProfilePrivacySettings
|
||||||
from . import bp
|
from . import bp
|
||||||
|
|
||||||
|
|
||||||
@bp.route('/<hashid:user_id>/settings/avatar', methods=['DELETE'])
|
|
||||||
@content_negotiation(produces='application/json')
|
|
||||||
def delete_user_avatar(user_id):
|
|
||||||
def _delete_avatar(app, avatar_id):
|
|
||||||
with app.app_context():
|
|
||||||
avatar = Avatar.query.get(avatar_id)
|
|
||||||
avatar.delete()
|
|
||||||
db.session.commit()
|
|
||||||
|
|
||||||
user = User.query.get_or_404(user_id)
|
|
||||||
if user.avatar is None:
|
|
||||||
abort(404)
|
|
||||||
if not (user == current_user or current_user.is_administrator()):
|
|
||||||
abort(403)
|
|
||||||
thread = Thread(
|
|
||||||
target=_delete_avatar,
|
|
||||||
args=(current_app._get_current_object(), user.avatar.id)
|
|
||||||
)
|
|
||||||
thread.start()
|
|
||||||
response_data = {
|
|
||||||
'message': f'Avatar marked for deletion'
|
|
||||||
}
|
|
||||||
return response_data, 202
|
|
||||||
|
|
||||||
|
|
||||||
@bp.route('/<hashid:user_id>/settings/profile-privacy/is-public', methods=['PUT'])
|
@bp.route('/<hashid:user_id>/settings/profile-privacy/is-public', methods=['PUT'])
|
||||||
@login_required
|
@login_required
|
||||||
@content_negotiation(consumes='application/json', produces='application/json')
|
@content_negotiation(consumes='application/json', produces='application/json')
|
||||||
|
Loading…
Reference in New Issue
Block a user