2022-08-02 18:20:45 -07:00
|
|
|
import click
|
2022-08-02 22:30:15 -07:00
|
|
|
import os
|
|
|
|
import shutil
|
|
|
|
import subprocess
|
2022-08-02 18:20:45 -07:00
|
|
|
import sys
|
|
|
|
import typer
|
2022-08-02 22:30:15 -07:00
|
|
|
import webbrowser
|
2022-08-02 18:20:45 -07:00
|
|
|
|
2022-08-02 22:49:01 -07:00
|
|
|
import site_tools as st
|
|
|
|
|
2022-08-02 18:20:45 -07:00
|
|
|
from enum import Enum
|
2022-08-02 22:30:15 -07:00
|
|
|
from livereload import Server
|
|
|
|
from pelican import main as pelican_main
|
2022-08-02 22:40:49 -07:00
|
|
|
from site_tools.content_manager import create
|
2022-08-02 22:30:15 -07:00
|
|
|
|
2022-08-02 22:49:01 -07:00
|
|
|
|
2022-08-02 22:30:15 -07:00
|
|
|
CONFIG = {
|
2022-08-02 22:49:01 -07:00
|
|
|
'settings_base': st.DEV_SETTINGS_FILE_BASE,
|
|
|
|
'settings_publish': st.PUB_SETTINGS_FILE_BASE,
|
2022-08-02 22:30:15 -07:00
|
|
|
# Output path. Can be absolute or relative to tasks.py. Default: 'output'
|
2022-08-02 22:49:01 -07:00
|
|
|
'deploy_path': st.SETTINGS['OUTPUT_PATH'],
|
2022-08-02 22:30:15 -07:00
|
|
|
# Remote server configuration
|
|
|
|
'ssh_user': 'greg',
|
|
|
|
'ssh_host': 'froghat.club',
|
|
|
|
'ssh_port': '22',
|
|
|
|
'ssh_path': '/usr/local/deploy/deadsands/',
|
|
|
|
# Host and port for `serve`
|
|
|
|
'host': 'localhost',
|
|
|
|
'port': 8000,
|
|
|
|
# content manager config
|
|
|
|
'templates_path': 'markdown-templates',
|
|
|
|
}
|
2022-08-02 18:20:45 -07:00
|
|
|
|
|
|
|
app = typer.Typer()
|
|
|
|
|
|
|
|
|
|
|
|
class ContentType(str, Enum):
|
|
|
|
post = 'post'
|
|
|
|
lore = 'lore'
|
|
|
|
monster = 'monster'
|
|
|
|
region = 'region'
|
|
|
|
page = 'page'
|
|
|
|
|
|
|
|
|
2022-08-02 22:30:15 -07:00
|
|
|
def pelican_run(cmd: list = [], publish=False) -> None:
|
|
|
|
settings = CONFIG['settings_publish' if publish else 'settings_base']
|
|
|
|
pelican_main(['-s', settings] + cmd)
|
|
|
|
|
|
|
|
|
|
|
|
@app.command()
|
|
|
|
def clean() -> None:
|
|
|
|
if os.path.isdir(CONFIG['deploy_path']):
|
|
|
|
shutil.rmtree(CONFIG['deploy_path'])
|
|
|
|
os.makedirs(CONFIG['deploy_path'])
|
|
|
|
|
|
|
|
|
|
|
|
@app.command()
|
|
|
|
def build() -> None:
|
|
|
|
pelican_run()
|
|
|
|
|
|
|
|
|
|
|
|
@app.command()
|
|
|
|
def serve() -> None:
|
|
|
|
|
|
|
|
url = 'http://{host}:{port}/'.format(**CONFIG)
|
|
|
|
|
|
|
|
def cached_build():
|
|
|
|
pelican_run(['-e', 'CACHE_CONTENT=true', 'LOAD_CONTENT_CACHE=true',
|
|
|
|
'SHOW_DRAFTS=true', f'SITEURL="{url}"'])
|
|
|
|
|
|
|
|
clean()
|
|
|
|
cached_build()
|
|
|
|
server = Server()
|
2022-08-02 22:49:01 -07:00
|
|
|
theme_path = st.SETTINGS['THEME']
|
2022-08-02 22:30:15 -07:00
|
|
|
watched_globs = [
|
|
|
|
CONFIG['settings_base'],
|
|
|
|
'{}/templates/**/*.html'.format(theme_path),
|
|
|
|
]
|
|
|
|
|
|
|
|
content_file_extensions = ['.md', '.rst']
|
|
|
|
for extension in content_file_extensions:
|
2022-08-02 22:49:01 -07:00
|
|
|
content_glob = '{0}/**/*{1}'.format(st.SETTINGS['PATH'], extension)
|
2022-08-02 22:30:15 -07:00
|
|
|
watched_globs.append(content_glob)
|
|
|
|
|
|
|
|
static_file_extensions = ['.css', '.js']
|
|
|
|
for extension in static_file_extensions:
|
|
|
|
static_file_glob = '{0}/static/**/*{1}'.format(theme_path, extension)
|
|
|
|
watched_globs.append(static_file_glob)
|
|
|
|
|
|
|
|
for glob in watched_globs:
|
|
|
|
server.watch(glob, cached_build)
|
|
|
|
|
2022-08-02 22:49:01 -07:00
|
|
|
if st.OPEN_BROWSER_ON_SERVE:
|
2022-08-02 22:30:15 -07:00
|
|
|
webbrowser.open(url)
|
|
|
|
|
|
|
|
server.serve(host=CONFIG['host'], port=CONFIG['port'],
|
|
|
|
root=CONFIG['deploy_path'])
|
|
|
|
|
|
|
|
|
|
|
|
@app.command()
|
2022-08-02 22:40:49 -07:00
|
|
|
def publish() -> None:
|
2022-08-02 22:30:15 -07:00
|
|
|
clean()
|
|
|
|
pelican_run(publish=True)
|
|
|
|
subprocess.call(
|
|
|
|
'rsync --delete --exclude ".DS_Store" -pthrvz -c '
|
|
|
|
'-e "ssh -p {ssh_port}" '
|
|
|
|
'{} {ssh_user}@{ssh_host}:{ssh_path}'.format(
|
|
|
|
CONFIG['deploy_path'].rstrip('/') + '/',
|
|
|
|
**CONFIG
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2022-08-02 18:20:45 -07:00
|
|
|
@app.command()
|
|
|
|
def new(
|
|
|
|
content_type: ContentType = typer.Argument(
|
|
|
|
...,
|
|
|
|
help="The type of content to create.",
|
|
|
|
),
|
|
|
|
title: str = typer.Argument(
|
|
|
|
...,
|
|
|
|
help="The title of the content.",
|
|
|
|
),
|
|
|
|
category: str = typer.Argument(
|
|
|
|
None,
|
|
|
|
help='Override the default category; required for "post" content.',
|
|
|
|
),
|
|
|
|
template: str = typer.Argument(
|
|
|
|
None,
|
|
|
|
help="Override the default template for the content_type.",
|
|
|
|
),
|
|
|
|
template_dir: str = typer.Argument(
|
|
|
|
CONFIG['templates_path'],
|
|
|
|
help="Override the default location for markdown templates.",
|
|
|
|
)
|
|
|
|
) -> None:
|
|
|
|
if not category:
|
|
|
|
match content_type:
|
|
|
|
case 'post':
|
|
|
|
print("You must specify a category for 'post' content.")
|
|
|
|
sys.exit()
|
|
|
|
case 'monster':
|
|
|
|
category = 'beastiary'
|
|
|
|
case 'region':
|
|
|
|
category = 'regions'
|
|
|
|
case _:
|
|
|
|
category = content_type
|
2022-08-02 22:49:01 -07:00
|
|
|
click.edit(filename=create(content_type.value, title, template_dir,
|
|
|
|
category, template or content_type.value))
|
2022-08-02 18:20:45 -07:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
app()
|