|
|
|
@ -1,9 +1,6 @@
|
|
|
|
|
from pathlib import Path
|
|
|
|
|
from django.core.management.base import BaseCommand
|
|
|
|
|
|
|
|
|
|
from bs4 import BeautifulSoup
|
|
|
|
|
from django.core.management.base import BaseCommand, CommandError
|
|
|
|
|
|
|
|
|
|
from ...models import Page
|
|
|
|
|
from ...parser import import_pages
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Command(BaseCommand):
|
|
|
|
@ -16,30 +13,9 @@ class Command(BaseCommand):
|
|
|
|
|
parser.add_argument("pages", help="Specify which pages to import", nargs="*")
|
|
|
|
|
|
|
|
|
|
def handle(self, *args, **options):
|
|
|
|
|
content_path = Path(__file__).resolve().parent.parent.parent / "default_content"
|
|
|
|
|
for file in content_path.iterdir():
|
|
|
|
|
if (pages := options["pages"]) and file.stem not in pages:
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
slug = file.stem
|
|
|
|
|
p, created = Page.objects.get_or_create(url=slug)
|
|
|
|
|
if (not created) and (not options["force"]):
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
soup = BeautifulSoup(file.read_text(), "html.parser")
|
|
|
|
|
pages = import_pages(options["force"], options["pages"])
|
|
|
|
|
|
|
|
|
|
if soup.title:
|
|
|
|
|
p.title = soup.title.string
|
|
|
|
|
soup.title.decompose()
|
|
|
|
|
else:
|
|
|
|
|
p.title = slug.title()
|
|
|
|
|
|
|
|
|
|
if visible := soup.find("meta", attrs={"name": "visible"}):
|
|
|
|
|
p.visible = "content" not in visible.attrs or visible.attrs[
|
|
|
|
|
"content"
|
|
|
|
|
].lower() in ("1", "true", "yes")
|
|
|
|
|
visible.decompose()
|
|
|
|
|
|
|
|
|
|
p.content = str(soup).strip()
|
|
|
|
|
p.save()
|
|
|
|
|
print(f'created new page "{p.title}" for slug {slug}')
|
|
|
|
|
for p in pages:
|
|
|
|
|
self.stderr.write(
|
|
|
|
|
self.style.SUCCESS(f'created new page "{p.title}" for slug {p.url}')
|
|
|
|
|
)
|
|
|
|
|