Esempio n. 1
0
def photo_image(request, username, type):
    """
    Returns the raw image data of the profile
    photo of a given username
    """
    from models import get_user_photo
    return get_user_photo(getu(request, username)).to_http_response(type)
Esempio n. 2
0
def photo_image_by_uid(request, uid, image_type):
    """
    Returns the raw image data of the profile
    photo of a given username
    """
    from models import get_user_photo
    user = get_object_or_404(User, pk=uid)
    return get_user_photo(user).to_http_response(image_type)