Esempio n. 1
0
def toggle_follow_object(request, model_name = None, object_id = None):
    """if object is followed then unfollows
    otherwise follows

    returns json
    {
        'status': 'success', # or 'error'
        'following': True, #or False
    }

    
    unfollows an object and returns status 'success' or
    'error' - via the decorator :func:`~followit.utils.followit_ajax_view`
    """
    obj = utils.get_object(model_name, object_id)
    if request.user.is_following(obj):
        toggle_func = getattr(request.user, 'unfollow_' + model_name)
        following = False
    else:
        toggle_func = getattr(request.user, 'follow_' + model_name)
        following = True

    toggle_func(obj)
    return {
        'status': 'success',
        'following': following
    }
Esempio n. 2
0
def unfollow_object(request, model_name=None, object_id=None):
    """unfollows an object and returns status 'success' or
    'error' - via the decorator :func:`~followit.utils.followit_ajax_view`
    """
    obj = utils.get_object(model_name, object_id)
    unfollow_func = getattr(request.user, 'unfollow_' + model_name)
    unfollow_func(obj)
    return {'status': 'success'}
Esempio n. 3
0
def unfollow_object(request, model_name = None, object_id = None):
    """unfollows an object and returns status 'success' or
    'error' - via the decorator :func:`~followit.utils.followit_ajax_view`
    """
    obj = utils.get_object(model_name, object_id)
    unfollow_func = getattr(request.user, 'unfollow_' + model_name)
    unfollow_func(obj)
    return {'status': 'success'}
Esempio n. 4
0
def follow_object(request, model_name=None, object_id=None):
    """follows an object and returns status:
    * 'success' - if an object was successfully followed
    * the decorator takes care of the error situations
    """
    obj = utils.get_object(model_name, object_id)
    follow_func = getattr(request.user, 'follow_' + model_name)
    follow_func(obj)
    return {'status': 'success'}
Esempio n. 5
0
def follow_object(request, model_name = None, object_id = None):
    """follows an object and returns status:
    * 'success' - if an object was successfully followed
    * the decorator takes care of the error situations
    """
    obj = utils.get_object(model_name, object_id)
    follow_func = getattr(request.user, 'follow_' + model_name)
    follow_func(obj)
    return {'status': 'success'}
Esempio n. 6
0
def follow_object(request, model_name=None, object_id=None):
    """follows an object and returns status:
    * 'success' - if an object was successfully followed
    * 'noop' - if the same object was followed before by the same user
    * the decorator takes care of the error situations
    """

    obj = utils.get_object(model_name, object_id)
    follow_func = getattr(request.user, 'follow_' + model_name)
    created = follow_func(obj)
    if created:
        return {'status': 'success'}
    else:
        return {'status': 'noop'}
Esempio n. 7
0
def follow_object(request, model_name=None, object_id=None):
    """follows an object and returns status:
    * 'success' - if an object was successfully followed
    * 'noop' - if the same object was followed before by the same user
    * the decorator takes care of the error situations
    """

    obj = utils.get_object(model_name, object_id)
    follow_func = getattr(request.user, "follow_" + model_name)
    created = follow_func(obj)
    if created:
        return {"status": "success"}
    else:
        return {"status": "noop"}
Esempio n. 8
0
def toggle_follow_object(request, model_name=None, object_id=None):
    """if object is followed then unfollows
    otherwise follows

    returns json
    {
        'status': 'success', # or 'error'
        'following': True, #or False
    }

    
    unfollows an object and returns status 'success' or
    'error' - via the decorator :func:`~followit.utils.followit_ajax_view`
    """
    obj = utils.get_object(model_name, object_id)
    if request.user.is_following(obj):
        toggle_func = getattr(request.user, 'unfollow_' + model_name)
        following = False
    else:
        toggle_func = getattr(request.user, 'follow_' + model_name)
        following = True

    toggle_func(obj)
    return {'status': 'success', 'following': following}