1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
# Create your views here.
from django.urls import reverse
from django.contrib.auth.decorators import login_required
from django.contrib.auth.models import User
from django.shortcuts import render, redirect
from django.http import HttpResponseRedirect
from django.shortcuts import get_object_or_404
from django.conf import settings
from django.contrib import messages
from forms import EditProfileForm
@login_required
def delete_me(request):
"""Show a page to inform the user what deleting means."""
context = {
'user': request.user,
'deleted_name': settings.DELETED_USERNAME,
}
return render(request, 'wlprofile/delete_me.html',
context)
@login_required
def do_delete(request):
"""Delete user specific data.
We can't really delete a user who has posted some valid posts (no spam) because otherwise
we have foreign keys constraints in the database. All we can do is to do some cleanup and
anonymization.
"""
from django.contrib.auth import logout
from wlprofile.models import Profile
from notification.models import NoticeSetting
user = get_object_or_404(User, username=request.user)
# Log the user out. We do this as early as possible but after
# we get the User object.
logout(request)
# Clean possible Playtime availabilities
from wlscheduling.models import Availabilities
try:
events = Availabilities.objects.filter(user=user)
for event in events:
event.delete()
except:
pass
# Clean the Online gaming password
from wlggz.models import GGZAuth
try:
ggz_user = GGZAuth.objects.get(user=user)
ggz_user.delete()
except:
pass
# Clean the profile
profile = user.wlprofile
upload_to = Profile._meta.get_field('avatar').upload_to
if upload_to in profile.avatar.name:
# Delete the avatar file
profile.avatar.delete()
# Delete the profile and recreate it to get a clean profile page
# We create a new one to have the anymous.png as avatar
profile.delete()
profile = Profile(user=user, deleted=True)
profile.save()
# Deactivate all subscriptions
notice_settings = NoticeSetting.objects.filter(user=user)
for setting in notice_settings:
setting.send = False
setting.save()
# Put all PMs in the trash of the user. They stay as long in the trash until the sender or recipient
# has also put the message in the trash.
from django_messages.models import Message
from datetime import datetime
messages = Message.objects.inbox_for(user)
for message in messages:
message.recipient_deleted_at = datetime.now()
message.save()
messages = Message.objects.outbox_for(user)
for message in messages:
message.sender_deleted_at = datetime.now()
message.save()
# Do some settings in django.auth.User
user.is_active = False
user.is_staff = False
user.is_superuser = False
user.email = settings.DELETED_MAIL_ADDRESS
user.save()
return redirect('mainpage')
@login_required
def view(request, user=None):
"""View the profile.
Note that login is required here to make sure that not all spam post
can harvest here
"""
if user is None:
profile = request.user.wlprofile
else:
profile = get_object_or_404(User, username=user).wlprofile
template_params = {
'profile': profile,
}
return render(request, 'wlprofile/view_profile.html',
template_params)
@login_required
def edit(request):
instance = request.user.wlprofile
if request.method == 'POST':
form = EditProfileForm(request.POST,
instance=instance, files=request.FILES)
if form.is_valid():
form.save()
messages.info(request,
'Your profile was changed successfully.')
return HttpResponseRedirect(reverse('profile_view'))
else:
form = EditProfileForm(instance=instance)
template_params = {
'profile': instance,
'profile_form': form,
}
return render(request, 'wlprofile/edit_profile.html',
template_params)
|