funkwhale/api/funkwhale_api/playlists/models.py

138 wiersze
4.8 KiB
Python
Czysty Zwykły widok Historia

2018-06-10 08:55:16 +00:00
from django.db import models, transaction
from django.utils import timezone
from rest_framework import exceptions
2018-06-10 08:55:16 +00:00
from funkwhale_api.common import fields, preferences
2018-05-08 21:06:29 +00:00
class PlaylistQuerySet(models.QuerySet):
def with_tracks_count(self):
2018-06-09 13:36:16 +00:00
return self.annotate(_tracks_count=models.Count("playlist_tracks"))
2018-05-08 21:06:29 +00:00
class Playlist(models.Model):
name = models.CharField(max_length=50)
2017-12-15 23:36:06 +00:00
user = models.ForeignKey(
2018-06-09 13:36:16 +00:00
"users.User", related_name="playlists", on_delete=models.CASCADE
)
creation_date = models.DateTimeField(default=timezone.now)
2018-06-09 13:36:16 +00:00
modification_date = models.DateTimeField(auto_now=True)
privacy_level = fields.get_privacy_field()
2018-05-08 21:06:29 +00:00
objects = PlaylistQuerySet.as_manager()
def __str__(self):
return self.name
@transaction.atomic
def insert(self, plt, index=None):
"""
Given a PlaylistTrack, insert it at the correct index in the playlist,
and update other tracks index if necessary.
"""
old_index = plt.index
move = old_index is not None
if index is not None and index == old_index:
# moving at same position, just skip
return index
existing = self.playlist_tracks.select_for_update()
if move:
existing = existing.exclude(pk=plt.pk)
total = existing.filter(index__isnull=False).count()
if index is None:
# we simply increment the last track index by 1
index = total
if index > total:
2018-06-09 13:36:16 +00:00
raise exceptions.ValidationError("Index is not continuous")
if index < 0:
2018-06-09 13:36:16 +00:00
raise exceptions.ValidationError("Index must be zero or positive")
if move:
# we remove the index temporarily, to avoid integrity errors
plt.index = None
2018-06-09 13:36:16 +00:00
plt.save(update_fields=["index"])
if index > old_index:
# new index is higher than current, we decrement previous tracks
2018-06-09 13:36:16 +00:00
to_update = existing.filter(index__gt=old_index, index__lte=index)
to_update.update(index=models.F("index") - 1)
if index < old_index:
# new index is lower than current, we increment next tracks
to_update = existing.filter(index__lt=old_index, index__gte=index)
2018-06-09 13:36:16 +00:00
to_update.update(index=models.F("index") + 1)
else:
to_update = existing.filter(index__gte=index)
2018-06-09 13:36:16 +00:00
to_update.update(index=models.F("index") + 1)
plt.index = index
2018-06-09 13:36:16 +00:00
plt.save(update_fields=["index"])
self.save(update_fields=["modification_date"])
return index
@transaction.atomic
def remove(self, index):
existing = self.playlist_tracks.select_for_update()
2018-06-09 13:36:16 +00:00
self.save(update_fields=["modification_date"])
to_update = existing.filter(index__gt=index)
2018-06-09 13:36:16 +00:00
return to_update.update(index=models.F("index") - 1)
@transaction.atomic
def insert_many(self, tracks):
existing = self.playlist_tracks.select_for_update()
now = timezone.now()
total = existing.filter(index__isnull=False).count()
2018-06-09 13:36:16 +00:00
max_tracks = preferences.get("playlists__max_tracks")
if existing.count() + len(tracks) > max_tracks:
raise exceptions.ValidationError(
2018-06-09 13:36:16 +00:00
"Playlist would reach the maximum of {} tracks".format(max_tracks)
)
self.save(update_fields=["modification_date"])
start = total
plts = [
PlaylistTrack(
2018-06-09 13:36:16 +00:00
creation_date=now, playlist=self, track=track, index=start + i
)
for i, track in enumerate(tracks)
]
return PlaylistTrack.objects.bulk_create(plts)
2018-06-09 13:36:16 +00:00
class PlaylistTrackQuerySet(models.QuerySet):
def for_nested_serialization(self):
2018-06-09 13:36:16 +00:00
return (
self.select_related()
.select_related("track__album__artist")
.prefetch_related(
"track__tags", "track__files", "track__artist__albums__tracks__tags"
)
)
class PlaylistTrack(models.Model):
2017-12-15 23:36:06 +00:00
track = models.ForeignKey(
2018-06-09 13:36:16 +00:00
"music.Track", related_name="playlist_tracks", on_delete=models.CASCADE
)
index = models.PositiveIntegerField(null=True, blank=True)
2017-12-15 23:36:06 +00:00
playlist = models.ForeignKey(
2018-06-09 13:36:16 +00:00
Playlist, related_name="playlist_tracks", on_delete=models.CASCADE
)
creation_date = models.DateTimeField(default=timezone.now)
objects = PlaylistTrackQuerySet.as_manager()
class Meta:
2018-06-09 13:36:16 +00:00
ordering = ("-playlist", "index")
unique_together = ("playlist", "index")
def delete(self, *args, **kwargs):
playlist = self.playlist
index = self.index
2018-06-09 13:36:16 +00:00
update_indexes = kwargs.pop("update_indexes", False)
r = super().delete(*args, **kwargs)
if index is not None and update_indexes:
playlist.remove(index)
return r