Exemple #1
0
def general(request, username_or_pk, size_p=None):
    size = size_p if size_p else 400
    size = int(request.GET.get('size')) if request.GET.get('size') else size
    if re.match(r'\d+', username_or_pk):
        try:
            profile = UserProfile.objects.get(user__pk=username_or_pk)
        except ObjectDoesNotExist:
            raise Http404('User with pk %d not found' % int(username_or_pk))
    else:
        try:
            profile = UserProfile.objects.get(user__username=username_or_pk)
        except ObjectDoesNotExist:
            raise Http404('User with username %s not found' % username_or_pk)

    if not profile.photo:
        return HttpResponseRedirect(profile.gravatar+'&s='+str(size))

    image_data, mime = resize_image(profile.photo, size=size)
    return HttpResponse(content=image_data, content_type=mime)
Exemple #2
0
def general(request, username_or_pk, size_p=None):
    size = size_p if size_p else 400
    size = int(request.GET.get('size')) if request.GET.get('size') else size
    if re.match(r'\d+', username_or_pk):
        try:
            profile = UserProfile.objects.get(user__pk=username_or_pk)
        except ObjectDoesNotExist:
            raise Http404('User with pk %d not found' % int(username_or_pk))
    else:
        try:
            profile = UserProfile.objects.get(user__username=username_or_pk)
        except ObjectDoesNotExist:
            raise Http404('User with username %s not found' % username_or_pk)

    if not profile.photo:
        return HttpResponseRedirect(profile.gravatar + '&s=' + str(size))

    image_data, mime = resize_image(profile.photo, size=size)
    return HttpResponse(content=image_data, content_type=mime)
Exemple #3
0
def edit(request, username, fancy=False):
    user = get_object_or_404(User, username=username)
    privileged = request.user.has_perm('auth.change_user')

    if not (user == request.user or privileged):
        from django.core.exceptions import PermissionDenied
        raise PermissionDenied

    errors = []
    status = ''

    action = request.POST.get('action')
    if action and privileged:
        if action == 'activate':
            user.is_active = True
        elif action == 'deactivate':
            user.is_active = False
        user.save()
        status = 'success'

    profile = None

    try:
        profile = user.profile
    except UserProfile.DoesNotExist:
        profile = UserProfile(user=user)

    if not user.profile.language:
        lang = language()
        lang.save()
        user.profile.language = lang
        user.profile.save()

    if not user.profile.abilities:
        abil = abilities()
        abil.save()
        user.profile.abilities = abil
        user.profile.save()

    if request.POST.get('submit'):
        if privileged and not fancy:
            username = request.POST.get('username')
            if username != user.username:
                if username:
                    if User.objects.filter(username=username).count() < 1:
                        user.username = username
                    else:
                        errors += ['username', 'username_already_taken']
                else:
                    errors += ['username', 'invalid_username']

            groups = request.POST.getlist('groups')
            old_groups = user.groups.all()
            for group in old_groups:
                if group.id not in groups:
                    user.groups.remove(group)

            for group_id in groups:
                try:
                    if group_id not in old_groups:
                        user.groups.add(Group.objects.get(id=group_id))
                except Group.DoesNotExist: pass

            profile.title = request.POST.get('title')

        user.first_name = request.POST.get('first_name')
        user.last_name = request.POST.get('last_name')

        if not fancy:
            email = request.POST.get('email', '')
            if email != user.email:
                try:
                    validate_email(email)

                    if User.objects.filter(email=email).count() < 1:
                        user.email = email
                    else:
                        errors += ['email', 'email_already_taken']
                except ValidationError:
                    errors += ['email', 'invalid_email']

        profile.display_name = request.POST.get('display_name')
        if request.POST.get('gender'):
            profile.gender = int(request.POST.get('gender'))
        profile.twenty = False if request.POST.get('twenty') == 'False' else True
        if request.POST.get('personal_id'):
            profile.personal_id = request.POST.get('personal_id')
        if request.POST.get('school'):
            profile.school = request.POST.get('school')
        if request.POST.get('grade'):
            profile.grade = request.POST.get('grade')
        if request.POST.get('phone'):
            profile.phone = request.POST.get('phone')
        if request.POST.get('residence'):
            profile.residence = request.POST.get('residence')
        if request.POST.get('shirt_size'):
            profile.shirt_size = request.POST.get('shirt_size')
        if request.POST.get('diet'):
            profile.diet = request.POST.get('diet')
        profile.transportation_aid = False if request.POST.get('transportation_aid') == 'False' else True
        profile.transportation_hr = False if request.POST.get('transportation_hr') == 'False' else True
        if request.POST.get('transportation'):
            profile.transportation = request.POST.get('transportation')
        if request.POST.get('transportation_fee'):
            profile.transportation_fee = request.POST.get('transportation_fee')
        if request.POST.get('accom'):
            profile.accom = int(request.POST.get('accom'))
        if request.POST.get('roommate'): profile.roommate = User.objects.get(id=request.POST.get('roommate'))
        profile.certificate = False if request.POST.get('certificate') == 'False' else True
        profile.cel_dinner = False if request.POST.get('cel_dinner') == 'False' else True
        profile.prev_worker = False if request.POST.get('prev_worker') == 'False' else True
        if request.POST.get('language_other'):
            profile.language.other = request.POST.get('language_other')
        if request.POST.get('abilities_other'):
            profile.abilities.other = request.POST.get('abilities_other')

        photo = request.FILES.get('photo')
        if photo:
            if photo.size > settings.AVATAR_FILE_SIZE_LIMIT:
                errors += ['photo', 'photo_too_large']
            else:
                try:
                    photo_data = resize_image(photo, size=settings.AVATAR_IMAGE_SIZE_LIMIT)
                    resized_photo = SimpleUploadedFile(name=photo.name, content=photo_data, content_type=photo.content_type)
                    profile.photo = resized_photo
                except ValueError:
                    errors += ['photo', 'photo_invalid']

        data = dict(request.POST.lists())

        try:
            data['language']
        except KeyError:
            for f in [f.name for f in language._meta.fields if type(f) == BooleanField]:
                setattr(user.profile.language, f, False)
        else:
            for f in [f.name for f in language._meta.fields if type(f) == BooleanField]:
                if f not in data['language']:
                    setattr(user.profile.language, f, False)
                else:
                    setattr(user.profile.language, f, True)

        try:
            data['abilities']
        except KeyError:
            for f in [f.name for f in abilities._meta.fields if type(f) == BooleanField]:
                setattr(user.profile.abilities, f, False)
        else:
            for f in [f.name for f in abilities._meta.fields if type(f) == BooleanField]:
                if f not in data['abilities']:
                    setattr(user.profile.abilities, f, False)
                else:
                    setattr(user.profile.abilities, f, True)

        profile.bio = request.POST.get('bio')
        profile.comment = request.POST.get('comment')

        if len(errors) < 1:
            user.save()
            profile.save()
            profile.language.save()
            profile.abilities.save()
            status = 'success'
        else:
            status = 'error'

    if fancy and status == 'success':
        render_template_url = 'users/edit_profile.html' if not fancy else 'users/fancy_edit_profile.html'
        return render(request, render_template_url, {
            'u': user,
            'categories': sorted_categories if privileged else None,
            'options': {
                'residence': settings.RESIDENCE_OPTIONS,
                'shirt_size': settings.SHIRT_SIZE_OPTIONS,
                'diet': settings.DIET_OPTIONS,
                'accom': [(0, u'不需要'), (1, u'皆可'), (2, u'需要')],
                'gender': [(1, u'男'), (2, u'女'), (9, u'其他')],
                'roommate': [(r.id, r.profile.title + " " + r.profile.display_name + " (" + r.username + ")") for r in User.objects.filter(groups=settings.STAFF_GROUP_ID).exclude(id=user.id)],
                'language': [(f.name, f.verbose_name, getattr(user.profile.language, f.name)) for f in language._meta.fields if type(f) == BooleanField],
                'abilities': [(f.name, f.verbose_name, getattr(user.profile.abilities, f.name)) for f in abilities._meta.fields if type(f) == BooleanField],
            },
            'status': status,
        })
    else:
        render_template_url = 'users/edit_profile.html' if not fancy else 'users/fancy_edit_profile.html'
        return render(request, render_template_url, {
            'u': user,
            'categories': sorted_categories if privileged else None,
            'options': {
                'residence': settings.RESIDENCE_OPTIONS,
                'shirt_size': settings.SHIRT_SIZE_OPTIONS,
                'diet': settings.DIET_OPTIONS,
                'accom': [(0, u'不需要'), (1, u'皆可'), (2, u'需要')],
                'gender': [(1, u'男'), (2, u'女'), (9, u'其他')],
                'roommate': [(r.id, r.profile.title + " " + r.profile.display_name + " (" + r.username + ")") for r in User.objects.filter(groups=settings.STAFF_GROUP_ID).exclude(id=user.id)],
                'language': [(f.name, f.verbose_name, getattr(user.profile.language, f.name)) for f in language._meta.fields if type(f) == BooleanField],
                'abilities': [(f.name, f.verbose_name, getattr(user.profile.abilities, f.name)) for f in abilities._meta.fields if type(f) == BooleanField],
            },
            'errors': errors,
            'status': status,
        })
Exemple #4
0
def edit(request, username):
    user = get_object_or_404(User, username=username)
    privileged = request.user.has_perm(
        'auth.change_user') or user.groups.filter(
            pk=request.user.profile.lead_team_id).exists()

    if not (user == request.user or privileged):
        from django.core.exceptions import PermissionDenied
        raise PermissionDenied

    errors = []
    status = ''

    action = request.POST.get('action')
    if action and privileged:
        if action == 'activate':
            user.is_active = True
        elif action == 'deactivate':
            user.is_active = False
        user.save()
        status = 'success'

    profile = None

    try:
        profile = user.profile
    except UserProfile.DoesNotExist:
        profile = UserProfile(user=user)

    if not user.profile.language:
        lang = language()
        lang.save()
        user.profile.language = lang
        user.profile.save()

    if not user.profile.abilities:
        abil = abilities()
        abil.save()
        user.profile.abilities = abil
        user.profile.save()

    if request.POST.get('submit'):

        profile.display_name = request.POST.get('display_name')
        if privileged:
            profile.title = request.POST.get('title')

            groups = request.POST.getlist('groups')
            old_groups = user.groups.all()
            for group in old_groups:
                if group.id not in groups:
                    user.groups.remove(group)
            for group_id in groups:
                try:
                    if group_id not in old_groups:
                        user.groups.add(Group.objects.get(id=group_id))
                except GroupDoesNotExist:
                    pass

        user.first_name = request.POST.get('first_name')
        user.last_name = request.POST.get('last_name')

        if request.POST.get('gender'):
            profile.gender = int(request.POST.get('gender'))
        profile.twenty = False if request.POST.get(
            'twenty') == 'False' else True
        profile.personal_id = request.POST.get('personal_id')
        profile.school = request.POST.get('school')
        profile.grade = request.POST.get('grade')
        if request.POST.get('phone'):
            profile.phone = request.POST.get('phone')
        if request.POST.get('residence'):
            profile.residence = request.POST.get('residence')
        if request.POST.get('shirt_size'):
            profile.shirt_size = request.POST.get('shirt_size')
        if request.POST.get('diet'):
            profile.diet = request.POST.get('diet')
        profile.transportation_aid = False if request.POST.get(
            'transportation_aid') == 'False' else True
        profile.transportation_hr = False if request.POST.get(
            'transportation_hr') == 'False' else True
        profile.transportation = request.POST.get('transportation')
        profile.transportation_fee = request.POST.get('transportation_fee')
        if request.POST.get('accom'):
            profile.accom = int(request.POST.get('accom'))
        profile.roommate = request.POST.get('roommate')
        profile.certificate = False if request.POST.get(
            'certificate') == 'False' else True
        profile.cel_dinner = False if request.POST.get(
            'cel_dinner') == 'False' else True
        profile.prev_worker = False if request.POST.get(
            'prev_worker') == 'False' else True
        profile.language.other = request.POST.get('language_other')
        profile.abilities.other = request.POST.get('abilities_other')

        photo = request.FILES.get('photo')
        if photo:
            if photo.size > settings.AVATAR_FILE_SIZE_LIMIT:
                errors += ['photo', 'photo_too_large']
            else:
                try:
                    image_data, mime = resize_image(
                        photo, size=settings.AVATAR_IMAGE_SIZE_LIMIT)
                    resized_photo = SimpleUploadedFile(name=photo.name,
                                                       content=image_data,
                                                       content_type=mime)
                    profile.photo = resized_photo
                except ValueError:
                    errors += ['photo', 'photo_invalid']

        data = dict(request.POST.lists())

        try:
            data['language']
        except KeyError:
            for f in [
                    f.name for f in language._meta.fields
                    if type(f) == BooleanField
            ]:
                setattr(user.profile.language, f, False)
        else:
            for f in [
                    f.name for f in language._meta.fields
                    if type(f) == BooleanField
            ]:
                if f not in data['language']:
                    setattr(user.profile.language, f, False)
                else:
                    setattr(user.profile.language, f, True)

        try:
            data['abilities']
        except KeyError:
            for f in [
                    f.name for f in abilities._meta.fields
                    if type(f) == BooleanField
            ]:
                setattr(user.profile.abilities, f, False)
        else:
            for f in [
                    f.name for f in abilities._meta.fields
                    if type(f) == BooleanField
            ]:
                if f not in data['abilities']:
                    setattr(user.profile.abilities, f, False)
                else:
                    setattr(user.profile.abilities, f, True)

        profile.bio = request.POST.get('bio')
        profile.comment = request.POST.get('comment')

        if len(errors) < 1:
            user.save()
            profile.save()
            profile.language.save()
            profile.abilities.save()
            status = 'success'
        else:
            status = 'error'

    if status == 'success':
        render_template_url = 'users/edit_profile.html'
        return render(
            request, render_template_url, {
                'u': user,
                'privileged': privileged,
                'categories': sorted_categories if privileged else None,
                'options': {
                    'residence':
                    settings.RESIDENCE_OPTIONS,
                    'shirt_size':
                    settings.SHIRT_SIZE_OPTIONS,
                    'diet':
                    settings.DIET_OPTIONS,
                    'accom': [(0, '不需要'), (1, '皆可'), (2, '需要')],
                    'gender': [(1, '男'), (2, '女'), (9, '其他')],
                    'roommate':
                    [(r.id, r.profile.title + " " + r.profile.display_name +
                      " (" + r.username + ")") for r in User.objects.filter(
                          groups=settings.STAFF_GROUP_ID).exclude(id=user.id)],
                    'language': [(f.name, f.verbose_name,
                                  getattr(user.profile.language, f.name))
                                 for f in language._meta.fields
                                 if type(f) == BooleanField],
                    'abilities': [(f.name, f.verbose_name,
                                   getattr(user.profile.abilities, f.name))
                                  for f in abilities._meta.fields
                                  if type(f) == BooleanField],
                },
                'status': status,
                'event_date': settings.EVENT_START_DATE,
                'majority_year': settings.EVENT_START_DATE.year - 20,
            })
    else:
        render_template_url = 'users/edit_profile.html'
        return render(
            request, render_template_url, {
                'u': user,
                'privileged': privileged,
                'categories': sorted_categories if privileged else None,
                'options': {
                    'residence':
                    settings.RESIDENCE_OPTIONS,
                    'shirt_size':
                    settings.SHIRT_SIZE_OPTIONS,
                    'diet':
                    settings.DIET_OPTIONS,
                    'accom': [(0, '不需要'), (1, '皆可'), (2, '需要')],
                    'gender': [(1, '男'), (2, '女'), (9, '其他')],
                    'roommate':
                    [(r.id, r.profile.title + " " + r.profile.display_name +
                      " (" + r.username + ")") for r in User.objects.filter(
                          groups=settings.STAFF_GROUP_ID).exclude(id=user.id)],
                    'language': [(f.name, f.verbose_name,
                                  getattr(user.profile.language, f.name))
                                 for f in language._meta.fields
                                 if type(f) == BooleanField],
                    'abilities': [(f.name, f.verbose_name,
                                   getattr(user.profile.abilities, f.name))
                                  for f in abilities._meta.fields
                                  if type(f) == BooleanField],
                },
                'errors': errors,
                'status': status,
                'event_date': settings.EVENT_START_DATE,
                'majority_year': settings.EVENT_START_DATE.year - 20,
            })