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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501
|
from __future__ import unicode_literals
import os
from mkdocs import utils, legacy
from mkdocs.config.base import Config, ValidationError
class BaseConfigOption(object):
def __init__(self):
self.warnings = []
self.default = None
def is_required(self):
return False
def validate(self, value):
return self.run_validation(value)
def reset_warnings(self):
self.warnings = []
def pre_validation(self, config, key_name):
"""
After all options have passed validation, perform a post validation
process to do any additional changes dependant on other config values.
The post validation process method should be implemented by subclasses.
"""
def run_validation(self, value):
"""
Perform validation for a value.
The run_validation method should be implemented by subclasses.
"""
return value
def post_validation(self, config, key_name):
"""
After all options have passed validation, perform a post validation
process to do any additional changes dependant on other config values.
The post validation process method should be implemented by subclasses.
"""
class SubConfig(BaseConfigOption, Config):
def __init__(self, *config_options):
BaseConfigOption.__init__(self)
Config.__init__(self, config_options)
self.default = {}
def validate(self, value):
self.load_dict(value)
return self.run_validation(value)
def run_validation(self, value):
Config.validate(self)
return self
class OptionallyRequired(BaseConfigOption):
"""
The BaseConfigOption adds support for default values and required values
It then delegates the validation and (optional) post validation processing
to subclasses.
"""
def __init__(self, default=None, required=False):
super(OptionallyRequired, self).__init__()
self.default = default
self.required = required
def is_required(self):
return self.required
def validate(self, value):
"""
Perform some initial validation.
If the option is empty (None) and isn't required, leave it as such. If
it is empty but has a default, use that. Finally, call the
run_validation method on the subclass unless.
"""
if value is None:
if self.default is not None:
value = self.default
elif not self.required:
return
elif self.required:
raise ValidationError("Required configuration not provided.")
return self.run_validation(value)
class Type(OptionallyRequired):
"""
Type Config Option
Validate the type of a config option against a given Python type.
"""
def __init__(self, type_, length=None, **kwargs):
super(Type, self).__init__(**kwargs)
self._type = type_
self.length = length
def run_validation(self, value):
if not isinstance(value, self._type):
msg = ("Expected type: {0} but recieved: {1}"
.format(self._type, type(value)))
elif self.length is not None and len(value) != self.length:
msg = ("Expected type: {0} with lenght {2} but recieved: {1} with "
"length {3}").format(self._type, value, self.length,
len(value))
else:
return value
raise ValidationError(msg)
class Deprecated(BaseConfigOption):
def __init__(self, moved_to=None):
super(Deprecated, self).__init__()
self.default = None
self.moved_to = moved_to
def pre_validation(self, config, key_name):
if config.get(key_name) is None or self.moved_to is None:
return
warning = ('The configuration option {0} has been deprecated and will '
'be removed in a future release of MkDocs.')
self.warnings.append(warning)
if '.' not in self.moved_to:
target = config
target_key = self.moved_to
else:
move_to, target_key = self.moved_to.rsplit('.', 1)
target = config
for key in move_to.split('.'):
target = target.setdefault(key, {})
if not isinstance(target, dict):
# We can't move it for the user
return
target[target_key] = config.pop(key_name)
class URL(OptionallyRequired):
"""
URL Config Option
Validate a URL by requiring a scheme is present.
"""
def run_validation(self, value):
try:
parsed_url = utils.urlparse(value)
except (AttributeError, TypeError):
raise ValidationError("Unable to parse the URL.")
if parsed_url.scheme:
return value
raise ValidationError(
"The URL isn't valid, it should include the http:// (scheme)")
class RepoURL(URL):
"""
Repo URL Config Option
A small extension to the URL config that sets the repo_name, based on the
url if it hasn't already been provided.
"""
def post_validation(self, config, key_name):
if config['repo_url'] is not None and config.get('repo_name') is None:
repo_host = utils.urlparse(
config['repo_url']).netloc.lower()
if repo_host == 'github.com':
config['repo_name'] = 'GitHub'
elif repo_host == 'bitbucket.org':
config['repo_name'] = 'Bitbucket'
else:
config['repo_name'] = repo_host.split('.')[0].title()
class Dir(Type):
"""
Dir Config Option
Validate a path to a directory, optionally verifying that it exists.
"""
def __init__(self, exists=False, **kwargs):
super(Dir, self).__init__(type_=utils.string_types, **kwargs)
self.exists = exists
def run_validation(self, value):
value = super(Dir, self).run_validation(value)
if self.exists and not os.path.isdir(value):
raise ValidationError("The path {0} doesn't exist".format(value))
return os.path.abspath(value)
class SiteDir(Dir):
"""
SiteDir Config Option
Validates the site_dir and docs_dir directories do not contain each other.
"""
def post_validation(self, config, key_name):
# Validate that the docs_dir and site_dir don't contain the
# other as this will lead to copying back and forth on each
# and eventually make a deep nested mess.
if config['docs_dir'].startswith(config['site_dir']):
raise ValidationError(
("The 'docs_dir' should not be within the 'site_dir' as this "
"can mean the source files are overwritten by the output or "
"it will be deleted if --clean is passed to mkdocs build."
"(site_dir: '{0}', docs_dir: '{1}')"
).format(config['site_dir'], config['docs_dir']))
elif config['site_dir'].startswith(config['docs_dir']):
self.warnings.append(
("The 'site_dir' should not be within the 'docs_dir' as this "
"leads to the build directory being copied into itself and "
"duplicate nested files in the 'site_dir'."
"(site_dir: '{0}', docs_dir: '{1}')"
).format(config['site_dir'], config['docs_dir']))
class ThemeDir(Dir):
"""
ThemeDir Config Option
Post validation, verify the theme_dir and do some path munging.
TODO: This could probably be improved and/or moved from here. It's a tad
gross really.
"""
def post_validation(self, config, key_name):
theme_in_config = any(['theme' in c for c in config.user_configs])
package_dir = os.path.abspath(
os.path.join(os.path.dirname(__file__), '..'))
theme_dir = [utils.get_themes()[config['theme']], ]
config['mkdocs_templates'] = os.path.join(package_dir, 'templates')
if config['theme_dir'] is not None:
# If the user has given us a custom theme but not a
# builtin theme name then we don't want to merge them.
if not theme_in_config:
theme_dir = []
theme_dir.insert(0, config['theme_dir'])
config['theme_dir'] = theme_dir
# Add the search assets to the theme_dir, this means that
# they will then we copied into the output directory but can
# be overwritten by themes if needed.
search_assets = os.path.join(package_dir, 'assets', 'search')
config['theme_dir'].append(search_assets)
class Theme(OptionallyRequired):
"""
Theme Config Option
Validate that the theme is one of the builtin Mkdocs theme names.
"""
def run_validation(self, value):
themes = utils.get_theme_names()
if value in themes:
# These themes have been moved to the mkdocs-bootstrap and
# mkdocs-bootswatch packages. At some point we wont depend on
# these by default.
moved_themes = [
'bootstrap', 'amelia', 'cerulean', 'cosmo', 'cyborg',
'flatly', 'journal', 'readable', 'simplex', 'slate',
'spacelab', 'united', 'yeti'
]
if value not in moved_themes:
return value
self.warnings.append(
("The theme '{0}' will be removed in an upcoming MkDocs "
"release. See http://www.mkdocs.org/about/release-notes/ "
"for more details").format(value)
)
return value
raise ValidationError(
"Unrecognised theme '{0}'. The available installed themes"
"are: ".format(value, ', '.join(themes))
)
class Extras(OptionallyRequired):
"""
Extras Config Option
Validate the extra configs are a list and populate them with a set of files
if not provided.
"""
def __init__(self, file_match=None, **kwargs):
super(Extras, self).__init__(**kwargs)
self.file_match = file_match
def run_validation(self, value):
if isinstance(value, list):
return value
else:
raise ValidationError(
"Expected a list, got {0}".format(type(value)))
def walk_docs_dir(self, docs_dir):
if self.file_match is None:
raise StopIteration
for (dirpath, dirs, filenames) in os.walk(docs_dir):
dirs.sort()
for filename in sorted(filenames):
fullpath = os.path.join(dirpath, filename)
# Some editors (namely Emacs) will create temporary symlinks
# for internal magic. We can just ignore these files.
if os.path.islink(fullpath):
fp = os.path.join(dirpath, os.readlink(fullpath))
if not os.path.exists(fp):
continue
relpath = os.path.normpath(os.path.relpath(fullpath, docs_dir))
if self.file_match(relpath):
yield relpath
def post_validation(self, config, key_name):
if config[key_name] is not None:
return
extras = []
for filename in self.walk_docs_dir(config['docs_dir']):
extras.append(filename)
config[key_name] = extras
class Pages(Extras):
"""
Pages Config Option
Validate the pages config, performing comparability if the config appears
to be the old structure. Automatically add all markdown files if none are
provided.
"""
def __init__(self, **kwargs):
super(Pages, self).__init__(utils.is_markdown_file, **kwargs)
def run_validation(self, value):
if not isinstance(value, list):
raise ValidationError(
"Expected a list, got {0}".format(type(value)))
if len(value) == 0:
return
# TODO: Remove in 1.0
config_types = set(type(l) for l in value)
if config_types.issubset(set([utils.text_type, dict, str])):
return value
if config_types.issubset(set([utils.text_type, list, str])):
return legacy.pages_compat_shim(value)
raise ValidationError("Invalid pages config. {0} {1}".format(
config_types,
set([utils.text_type, dict, ])
))
def post_validation(self, config, key_name):
if config[key_name] is not None:
return
pages = []
for filename in self.walk_docs_dir(config['docs_dir']):
if os.path.splitext(filename)[0] == 'index':
pages.insert(0, filename)
else:
pages.append(filename)
config[key_name] = utils.nest_paths(pages)
class NumPages(OptionallyRequired):
"""
NumPages Config Option
Set the value to True if the number of pages is greater than the given
number (defaults to 1).
"""
def __init__(self, at_lest=1, **kwargs):
super(NumPages, self).__init__(**kwargs)
self.at_lest = at_lest
def post_validation(self, config, key_name):
if config[key_name] is not None:
return
try:
config[key_name] = len(config['pages']) > self.at_lest
except TypeError:
config[key_name] = False
class Private(OptionallyRequired):
"""
Private Config Option
A config option only for internal use. Raises an error if set by the user.
"""
def run_validation(self, value):
raise ValidationError('For internal use only.')
class MarkdownExtensions(OptionallyRequired):
"""
Markdown Extensions Config Option
A list of extensions. If a list item contains extension configs,
those are set on the private setting passed to `configkey`. The
`builtins` keyword accepts a list of extensions which cannot be
overriden by the user. However, builtins can be duplicated to define
config options for them if desired.
"""
def __init__(self, builtins=None, configkey='mdx_configs', **kwargs):
super(MarkdownExtensions, self).__init__(**kwargs)
self.builtins = builtins or []
self.configkey = configkey
self.configdata = {}
def run_validation(self, value):
if not isinstance(value, (list, tuple)):
raise ValidationError('Invalid Markdown Extensions configuration')
extensions = []
for item in value:
if isinstance(item, dict):
if len(item) > 1:
raise ValidationError('Invalid Markdown Extensions configuration')
ext, cfg = item.popitem()
extensions.append(ext)
if cfg is None:
continue
if not isinstance(cfg, dict):
raise ValidationError('Invalid config options for Markdown '
"Extension '{0}'.".format(ext))
self.configdata[ext] = cfg
elif isinstance(item, utils.string_types):
extensions.append(item)
else:
raise ValidationError('Invalid Markdown Extensions configuration')
return utils.reduce_list(self.builtins + extensions)
def post_validation(self, config, key_name):
config[self.configkey] = self.configdata
|