|
@@ -7,14 +7,13 @@ from django.db.models import QuerySet
|
|
|
|
|
|
|
|
from .schema import Link
|
|
from .schema import Link
|
|
|
from ..util import enforce_types
|
|
from ..util import enforce_types
|
|
|
-from ..config import setup_django, OUTPUT_DIR
|
|
|
|
|
|
|
+from ..config import OUTPUT_DIR
|
|
|
|
|
|
|
|
|
|
|
|
|
### Main Links Index
|
|
### Main Links Index
|
|
|
|
|
|
|
|
@enforce_types
|
|
@enforce_types
|
|
|
def parse_sql_main_index(out_dir: Path=OUTPUT_DIR) -> Iterator[Link]:
|
|
def parse_sql_main_index(out_dir: Path=OUTPUT_DIR) -> Iterator[Link]:
|
|
|
- setup_django(out_dir, check_db=True)
|
|
|
|
|
from core.models import Snapshot
|
|
from core.models import Snapshot
|
|
|
|
|
|
|
|
return (
|
|
return (
|
|
@@ -24,7 +23,6 @@ def parse_sql_main_index(out_dir: Path=OUTPUT_DIR) -> Iterator[Link]:
|
|
|
|
|
|
|
|
@enforce_types
|
|
@enforce_types
|
|
|
def remove_from_sql_main_index(snapshots: QuerySet, out_dir: Path=OUTPUT_DIR) -> None:
|
|
def remove_from_sql_main_index(snapshots: QuerySet, out_dir: Path=OUTPUT_DIR) -> None:
|
|
|
- setup_django(out_dir, check_db=True)
|
|
|
|
|
from django.db import transaction
|
|
from django.db import transaction
|
|
|
|
|
|
|
|
with transaction.atomic():
|
|
with transaction.atomic():
|
|
@@ -51,7 +49,6 @@ def write_link_to_sql_index(link: Link):
|
|
|
|
|
|
|
|
@enforce_types
|
|
@enforce_types
|
|
|
def write_sql_main_index(links: List[Link], out_dir: Path=OUTPUT_DIR) -> None:
|
|
def write_sql_main_index(links: List[Link], out_dir: Path=OUTPUT_DIR) -> None:
|
|
|
- setup_django(out_dir, check_db=True)
|
|
|
|
|
from django.db import transaction
|
|
from django.db import transaction
|
|
|
|
|
|
|
|
with transaction.atomic():
|
|
with transaction.atomic():
|
|
@@ -61,7 +58,6 @@ def write_sql_main_index(links: List[Link], out_dir: Path=OUTPUT_DIR) -> None:
|
|
|
|
|
|
|
|
@enforce_types
|
|
@enforce_types
|
|
|
def write_sql_link_details(link: Link, out_dir: Path=OUTPUT_DIR) -> None:
|
|
def write_sql_link_details(link: Link, out_dir: Path=OUTPUT_DIR) -> None:
|
|
|
- setup_django(out_dir, check_db=True)
|
|
|
|
|
from core.models import Snapshot
|
|
from core.models import Snapshot
|
|
|
from django.db import transaction
|
|
from django.db import transaction
|
|
|
|
|
|
|
@@ -84,7 +80,6 @@ def write_sql_link_details(link: Link, out_dir: Path=OUTPUT_DIR) -> None:
|
|
|
|
|
|
|
|
@enforce_types
|
|
@enforce_types
|
|
|
def list_migrations(out_dir: Path=OUTPUT_DIR) -> List[Tuple[bool, str]]:
|
|
def list_migrations(out_dir: Path=OUTPUT_DIR) -> List[Tuple[bool, str]]:
|
|
|
- setup_django(out_dir, check_db=False)
|
|
|
|
|
from django.core.management import call_command
|
|
from django.core.management import call_command
|
|
|
out = StringIO()
|
|
out = StringIO()
|
|
|
call_command("showmigrations", list=True, stdout=out)
|
|
call_command("showmigrations", list=True, stdout=out)
|
|
@@ -101,7 +96,6 @@ def list_migrations(out_dir: Path=OUTPUT_DIR) -> List[Tuple[bool, str]]:
|
|
|
|
|
|
|
|
@enforce_types
|
|
@enforce_types
|
|
|
def apply_migrations(out_dir: Path=OUTPUT_DIR) -> List[str]:
|
|
def apply_migrations(out_dir: Path=OUTPUT_DIR) -> List[str]:
|
|
|
- setup_django(out_dir, check_db=False)
|
|
|
|
|
from django.core.management import call_command
|
|
from django.core.management import call_command
|
|
|
null, out = StringIO(), StringIO()
|
|
null, out = StringIO(), StringIO()
|
|
|
call_command("makemigrations", interactive=False, stdout=null)
|
|
call_command("makemigrations", interactive=False, stdout=null)
|
|
@@ -112,6 +106,5 @@ def apply_migrations(out_dir: Path=OUTPUT_DIR) -> List[str]:
|
|
|
|
|
|
|
|
@enforce_types
|
|
@enforce_types
|
|
|
def get_admins(out_dir: Path=OUTPUT_DIR) -> List[str]:
|
|
def get_admins(out_dir: Path=OUTPUT_DIR) -> List[str]:
|
|
|
- setup_django(out_dir, check_db=False)
|
|
|
|
|
from django.contrib.auth.models import User
|
|
from django.contrib.auth.models import User
|
|
|
return User.objects.filter(is_superuser=True)
|
|
return User.objects.filter(is_superuser=True)
|