Django app to manage following and bi-directional friendships
Django app to manage following and bi-directional friendships
This application enables you to create and manage follows, blocks and bi-directional friendships between users. It features:
AUTH_USER_MODEL.Django 4.2, 5.0, 5.1, 5.2, 6.0, and 6.1 + Python 3.10, 3.11, 3.12, 3.13, 3.14, and 3.15 (including free-threading) since v1.10.0. Python 3.15 is still in beta, so it is tested but not yet promised.
Previously:
pip install django-friendship"friendship" to INSTALLED_APPS and run python manage.py migrate.urlpatterns = [
# other paths
path("friendship/", include("friendship.urls"))
]
django-friendship provides a free API that gives you several ways to create and manage friendship requests or follows in your views. Add the following at the top of your views.py:
from django.contrib.auth.models import User
from friendship.models import Friend, Follow, Block
Friend.objects.friends(user=request.user)Friend.objects.friend_count(user=request.user)Friend.objects.unread_requests(user=request.user)Friend.objects.unrejected_requests(user=request.user)Friend.objects.unrejected_request_count(user=request.user)Friend.objects.rejected_requests(user=request.user)Friend.objects.sent_requests(user=request.user)Friend.objects.are_friends(user1=request.user, user2=other_user) == TrueFriend.objects.request_exists(from_user=request.user, to_user=other_user) == TrueFollow.objects.followers(user=request.user)Follow.objects.following(user=request.user)Block.objects.blocked(user=request.user)Block.objects.blocking(user=request.user)Block.objects.is_blocked(user1=request.user, user2=other_user) == TrueSee the cookbook for more task-oriented recipes.
other_user = User.objects.get(pk=1)
Friend.objects.add_friend(
from_user=request.user, # The sender
to_user=other_user, # The recipient
message="Hi! I would like to add you", # optional
)
from friendship.models import FriendshipRequest
friend_request = FriendshipRequest.objects.get(
from_user=request.user, to_user=other_user
)
friend_request.accept()
# or friend_request.reject()
A rejected request does not block future requests — the sender may request
again later. To cap how many friends a user can have, see
FRIENDSHIP_MAX_FRIENDS under Settings.
request.user and other_user, do the following:Friend.objects.remove_friend(from_user=request.user, to_user=other_user)
Follow.objects.add_follower(follower=request.user, followee=other_user)
Block.objects.add_block(blocker=request.user, blocked=other_user)
Block.objects.remove_block(blocker=request.user, blocked=other_user)
You can use django-friendship tags in your templates. First enter:
{% load friendshiptags %}
Then use any of the following:
{% friends request.user %}
{% followers request.user %}
{% following request.user %}
{% friend_requests request.user %}
{% blockers request.user %}
{% blocking request.user %}
django-friendship emits the following signals (from friendship.signals):
Each signal's sender is the emitting model, so you can connect a receiver
scoped to it:
from django.dispatch import receiver
from friendship.models import Follow
from friendship.signals import follower_created
@receiver(follower_created, sender=Follow)
def on_follow(sender, follower, **kwargs):
...
django-friendship supports the following settings:
FRIENDSHIP_CONTEXT_OBJECT_NAME = "user"
FRIENDSHIP_CONTEXT_OBJECT_LIST_NAME = "users"
FRIENDSHIP_MANAGER_FRIENDSHIP_REQUEST_SELECT_RELATED_STRATEGY = (
"select_related" # ('select_related', 'prefetch_related', 'none')
)
# Optional cap on the number of friends each user may have. Unset (the
# default) means unlimited, so existing projects are unaffected. When set,
# accepting a request that would put either user over the limit raises
# friendship.exceptions.MaxFriendsExceededError.
FRIENDSHIP_MAX_FRIENDS = 800
By default a user may have unlimited friends. Set FRIENDSHIP_MAX_FRIENDS to
cap it. The limit is checked when a request is accepted — if either user is
already at the limit, accept() raises MaxFriendsExceededError and no
friendship is created (the request is left intact so it can be accepted later,
e.g. after removing another friend):
from friendship.exceptions import MaxFriendsExceededError
try:
friend_request.accept()
except MaxFriendsExceededError:
... # tell the user their friend list is full
# You can check a user's current friend count directly:
Friend.objects.friend_count(user=request.user)
django-friendship works with a custom AUTH_USER_MODEL. The bundled views and
templates resolve users by your user model's USERNAME_FIELD (via
get_username()), so a model that authenticates by, say, email works out of the
box — the value captured in the friendship URLs is looked up against
USERNAME_FIELD. For the default user model this is username, so nothing
changes.
Development takes place on GitHub. Bug reports, patches, and fixes are always welcome!
REVSYS can help with your Python, Django, and infrastructure projects. If you have a question about this project, please open a GitHub issue. If you love us and want to keep track of our goings-on, here's where you can find us online:
No open issues yet, or sync has not completed.