Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
thalia
concrexit
Commits
7fbba5d0
Commit
7fbba5d0
authored
Oct 16, 2017
by
Gijs Hendriksen
Browse files
Resize profile images on upload
parent
dc9cf187
Changes
1
Hide whitespace changes
Inline
Side-by-side
website/members/models.py
View file @
7fbba5d0
...
...
@@ -17,6 +17,8 @@ from activemembers.models import Committee
from
utils.snippets
import
datetime_to_lectureyear
from
utils.validators
import
validate_file_extension
from
PIL
import
Image
class
ActiveMemberManager
(
models
.
Manager
):
"""Get all active members"""
...
...
@@ -373,6 +375,13 @@ class Member(models.Model):
def
get_absolute_url
(
self
):
return
reverse
(
'members:profile'
,
args
=
[
str
(
self
.
user
.
pk
)])
def
__init__
(
self
,
*
args
,
**
kwargs
):
super
(
Member
,
self
).
__init__
(
*
args
,
**
kwargs
)
if
self
.
photo
:
self
.
_orig_image
=
self
.
photo
.
path
else
:
self
.
_orig_image
=
""
def
clean
(
self
):
super
().
clean
()
errors
=
{}
...
...
@@ -384,6 +393,16 @@ class Member(models.Model):
'display name'
)})
raise
ValidationError
(
errors
)
def
save
(
self
,
*
args
,
**
kwargs
):
super
(
Member
,
self
).
save
(
args
,
kwargs
)
if
self
.
photo
and
self
.
_orig_image
!=
self
.
photo
.
path
:
image_path
=
self
.
photo
.
path
image
=
Image
.
open
(
image_path
)
# Image.thumbnail does not upscale an image that is smaller
image
.
thumbnail
(
settings
.
PHOTO_UPLOAD_SIZE
,
Image
.
ANTIALIAS
)
image
.
save
(
image_path
,
"JPEG"
)
self
.
_orig_image
=
self
.
photo
.
path
def
__str__
(
self
):
return
'{} ({})'
.
format
(
self
.
get_full_name
(),
self
.
user
.
username
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment