2018-10-04 11:36:11 +00:00
|
|
|
from django.db import models
|
|
|
|
|
2018-10-08 00:01:35 +00:00
|
|
|
|
2018-10-04 11:36:11 +00:00
|
|
|
class SubscriptionFolder(models.Model):
|
|
|
|
name = models.TextField(null=False)
|
|
|
|
parent = models.ForeignKey('self', on_delete=models.CASCADE, null=True, blank=True)
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return self.name
|
|
|
|
|
|
|
|
|
2018-10-08 00:01:35 +00:00
|
|
|
class Channel(models.Model):
|
|
|
|
channel_id = models.TextField(null=False, unique=True)
|
|
|
|
username = models.TextField(null=True, unique=True)
|
|
|
|
custom_url = models.TextField(null=True, unique=True)
|
|
|
|
name = models.TextField()
|
|
|
|
description = models.TextField()
|
|
|
|
icon_default = models.TextField()
|
|
|
|
icon_best = models.TextField()
|
|
|
|
upload_playlist_id = models.TextField()
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def find_by_channel_id(channel_id):
|
|
|
|
result = Channel.objects.filter(channel_id=channel_id)
|
|
|
|
if len(result) > 0:
|
|
|
|
return result.first()
|
|
|
|
return None
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def find_by_username(username):
|
|
|
|
result = Channel.objects.filter(username=username)
|
|
|
|
if len(result) > 0:
|
|
|
|
return result.first()
|
|
|
|
return None
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def find_by_custom_url(custom_url):
|
|
|
|
result = Channel.objects.filter(custom_url=custom_url)
|
|
|
|
if len(result) > 0:
|
|
|
|
return result.first()
|
|
|
|
return None
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return self.name
|
|
|
|
|
|
|
|
|
2018-10-04 11:36:11 +00:00
|
|
|
class Subscription(models.Model):
|
|
|
|
name = models.TextField(null=False)
|
|
|
|
parent_folder = models.ForeignKey(SubscriptionFolder, on_delete=models.SET_NULL, null=True, blank=True)
|
2018-10-08 00:01:35 +00:00
|
|
|
playlist_id = models.TextField(null=False, unique=True)
|
|
|
|
description = models.TextField()
|
|
|
|
channel = models.ForeignKey(Channel, on_delete=models.CASCADE)
|
|
|
|
icon_default = models.TextField()
|
|
|
|
icon_best = models.TextField()
|
|
|
|
|
2018-10-04 11:36:11 +00:00
|
|
|
def __str__(self):
|
|
|
|
return self.name
|
|
|
|
|
|
|
|
|
|
|
|
class Video(models.Model):
|
2018-10-08 00:01:35 +00:00
|
|
|
video_id = models.TextField(null=False)
|
2018-10-04 11:36:11 +00:00
|
|
|
name = models.TextField(null=False)
|
2018-10-08 00:01:35 +00:00
|
|
|
description = models.TextField()
|
2018-10-04 11:36:11 +00:00
|
|
|
watched = models.BooleanField(default=False, null=False)
|
2018-10-08 00:01:35 +00:00
|
|
|
downloaded_path = models.TextField(null=True, blank=True)
|
2018-10-04 11:36:11 +00:00
|
|
|
subscription = models.ForeignKey(Subscription, on_delete=models.CASCADE)
|
2018-10-08 00:01:35 +00:00
|
|
|
playlist_index = models.IntegerField(null=False)
|
|
|
|
publish_date = models.DateTimeField(null=False)
|
|
|
|
icon_default = models.TextField()
|
|
|
|
icon_best = models.TextField()
|
2018-10-04 11:36:11 +00:00
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return self.name
|