generated from kubernetes/kubernetes-template-project
-
Notifications
You must be signed in to change notification settings - Fork 521
/
Copy pathmkdocs-copy-geps.py
64 lines (51 loc) · 2.16 KB
/
mkdocs-copy-geps.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Copyright 2023 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import shutil
import logging
from mkdocs import plugins
from mkdocs.structure.files import File
from pathlib import Path
log = logging.getLogger(f'mkdocs.plugins.{__name__}')
@plugins.event_priority(100)
def on_files(files, config, **kwargs):
log.info("adding geps")
# Check if site-src/geps exists (files copied out-of-band from MkDocs)
site_src_geps = Path('site-src/geps')
if site_src_geps.exists() and site_src_geps.is_dir():
log.info("Found site-src/gep/ directory. Deleting...")
# Iterate over the list of files in this directory and remove them from
# MkDocs
for root_dir, _, gep_files in Path(site_src_geps).walk():
for filename in gep_files:
# Exclude the leading 'site-src/' to get the relative path as it
# exists on the site. (i.e., geps/overview.md)
path = '/'.join(root_dir.parts[1:])
existing_file = files.get_file_from_path(f'{path}/{filename}')
if existing_file:
files.remove(existing_file)
# Delete the 'site-src/geps' directory
shutil.rmtree(site_src_geps)
for root_dir, _, gep_files in Path('geps').walk():
# Iterate over the all the files in the GEP folder and add them to the site
for filename in gep_files:
file_path = str(root_dir / filename)
if files.get_file_from_path(file_path) is None:
new_file = File(
path=file_path,
src_dir='./',
dest_dir=config['site_dir'],
use_directory_urls=config['use_directory_urls']
)
files.append(new_file)
return files