bookwyrm-mastodon/bookwyrm/models/connector.py

32 lines
1.2 KiB
Python
Raw Normal View History

2021-03-08 11:49:10 -05:00
""" manages interfaces with external sources of book data """
2020-09-17 16:09:11 -04:00
from django.db import models
from bookwyrm.connectors.settings import CONNECTORS
2020-09-17 16:09:11 -04:00
from .base_model import BookWyrmModel, DeactivationReason
2020-09-17 16:09:11 -04:00
2021-03-08 11:49:10 -05:00
ConnectorFiles = models.TextChoices("ConnectorFiles", CONNECTORS)
2020-09-21 11:16:34 -04:00
class Connector(BookWyrmModel):
2021-04-26 12:15:42 -04:00
"""book data source connectors"""
2021-03-08 11:49:10 -05:00
2020-09-17 16:09:11 -04:00
identifier = models.CharField(max_length=255, unique=True)
priority = models.IntegerField(default=2)
name = models.CharField(max_length=255, null=True, blank=True)
2021-03-08 11:49:10 -05:00
connector_file = models.CharField(max_length=255, choices=ConnectorFiles.choices)
api_key = models.CharField(max_length=255, null=True, blank=True)
active = models.BooleanField(default=True)
deactivation_reason = models.CharField(
max_length=255, choices=DeactivationReason, null=True, blank=True
)
2020-09-17 16:09:11 -04:00
base_url = models.CharField(max_length=255)
books_url = models.CharField(max_length=255)
covers_url = models.CharField(max_length=255)
search_url = models.CharField(max_length=255, null=True, blank=True)
2021-03-01 15:09:21 -05:00
isbn_search_url = models.CharField(max_length=255, null=True, blank=True)
2020-09-17 16:09:11 -04:00
def __str__(self):
2021-09-18 14:32:00 -04:00
return f"{self.identifier} ({self.id})"