-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ Replace
validator
by field_validator
and root_validator
by `m…
…odel_validator` (#40)
- Loading branch information
Showing
5 changed files
with
664 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,190 @@ | ||
from typing import List | ||
|
||
import libcst as cst | ||
from libcst import matchers as m | ||
from libcst._nodes.module import Module | ||
from libcst.codemod import CodemodContext, VisitorBasedCodemodCommand | ||
from libcst.codemod.visitors import AddImportsVisitor, RemoveImportsVisitor | ||
|
||
PREFIX_COMMENT = "# TODO[pydantic]: " | ||
REFACTOR_COMMENT = f"{PREFIX_COMMENT}We couldn't refactor the `{{old_name}}`, please replace it by `{{new_name}}` manually." # noqa: E501 | ||
VALIDATOR_COMMENT = REFACTOR_COMMENT.format(old_name="validator", new_name="field_validator") | ||
ROOT_VALIDATOR_COMMENT = REFACTOR_COMMENT.format(old_name="root_validator", new_name="model_validator") | ||
CHECK_LINK_COMMENT = "# Check https://docs.pydantic.dev/dev-v2/migration/#changes-to-validators for more information." | ||
|
||
IMPORT_VALIDATOR = m.Module( | ||
body=[ | ||
m.ZeroOrMore(), | ||
m.SimpleStatementLine( | ||
body=[ | ||
m.ZeroOrMore(), | ||
m.ImportFrom( | ||
module=m.Name("pydantic"), | ||
names=[ | ||
m.ZeroOrMore(), | ||
m.ImportAlias(name=m.Name("validator")), | ||
m.ZeroOrMore(), | ||
], | ||
), | ||
m.ZeroOrMore(), | ||
], | ||
), | ||
m.ZeroOrMore(), | ||
] | ||
) | ||
VALIDATOR_DECORATOR = m.Decorator(decorator=m.Call(func=m.Name("validator"))) | ||
VALIDATOR_FUNCTION = m.FunctionDef(decorators=[m.ZeroOrMore(), VALIDATOR_DECORATOR, m.ZeroOrMore()]) | ||
|
||
IMPORT_ROOT_VALIDATOR = m.Module( | ||
body=[ | ||
m.ZeroOrMore(), | ||
m.SimpleStatementLine( | ||
body=[ | ||
m.ZeroOrMore(), | ||
m.ImportFrom( | ||
module=m.Name("pydantic"), | ||
names=[ | ||
m.ZeroOrMore(), | ||
m.ImportAlias(name=m.Name("root_validator")), | ||
m.ZeroOrMore(), | ||
], | ||
), | ||
m.ZeroOrMore(), | ||
], | ||
), | ||
m.ZeroOrMore(), | ||
] | ||
) | ||
ROOT_VALIDATOR_DECORATOR = m.Decorator(decorator=m.Call(func=m.Name("root_validator"))) | ||
ROOT_VALIDATOR_FUNCTION = m.FunctionDef(decorators=[m.ZeroOrMore(), ROOT_VALIDATOR_DECORATOR, m.ZeroOrMore()]) | ||
|
||
|
||
class ValidatorCodemod(VisitorBasedCodemodCommand): | ||
def __init__(self, context: CodemodContext) -> None: | ||
super().__init__(context) | ||
|
||
self._import_pydantic_validator = self._import_pydantic_root_validator = False | ||
self._already_modified = False | ||
self._should_add_comment = False | ||
self._args: List[cst.Arg] = [] | ||
|
||
@m.visit(IMPORT_VALIDATOR) | ||
def visit_import_validator(self, node: cst.CSTNode) -> None: | ||
self._import_pydantic_validator = True | ||
self._import_pydantic_root_validator = True | ||
|
||
def leave_Module(self, original_node: Module, updated_node: Module) -> Module: | ||
self._import_pydantic_validator = False | ||
self._import_pydantic_root_validator = False | ||
return updated_node | ||
|
||
@m.visit(VALIDATOR_DECORATOR | ROOT_VALIDATOR_DECORATOR) | ||
def visit_validator_decorator(self, node: cst.Decorator) -> None: | ||
if m.matches(node.decorator, m.Call()): | ||
for arg in node.decorator.args: # type: ignore[attr-defined] | ||
pre_false = m.Arg(keyword=m.Name("pre"), value=m.Name("False")) | ||
pre_true = m.Arg(keyword=m.Name("pre"), value=m.Name("True")) | ||
if m.matches(arg, m.Arg(keyword=m.Name("allow_reuse")) | pre_false): | ||
continue | ||
if m.matches(arg, pre_true): | ||
self._args.append(arg.with_changes(keyword=cst.Name("mode"), value=cst.SimpleString('"before"'))) | ||
elif m.matches(arg.keyword, m.Name(value=m.MatchIfTrue(lambda v: v in ("each_item", "always")))): | ||
self._should_add_comment = True | ||
else: | ||
# The `check_fields` kw-argument and all positional arguments can be just copied. | ||
self._args.append(arg) | ||
else: | ||
"""This only happens for `@validator`, not with `@validator()`. The parenthesis makes it not be a `Call`""" | ||
self._should_add_comment = True | ||
|
||
# Removes the trailing comma on the last argument e.g. | ||
# `@validator(allow_reuse=True, )` -> `@validator(allow_reuse=True)` | ||
if self._args: | ||
self._args[-1] = self._args[-1].with_changes(comma=cst.MaybeSentinel.DEFAULT) | ||
|
||
@m.visit(VALIDATOR_FUNCTION) | ||
def visit_validator_func(self, node: cst.FunctionDef) -> None: | ||
# We are only able to refactor the `@validator` when the function has only `cls` and `v` as arguments. | ||
if len(node.params.params) > 2: | ||
self._should_add_comment = True | ||
|
||
@m.leave(ROOT_VALIDATOR_DECORATOR) | ||
def leave_root_validator_func(self, original_node: cst.Decorator, updated_node: cst.Decorator) -> cst.Decorator: | ||
for line in updated_node.leading_lines: | ||
if m.matches(line, m.EmptyLine(comment=m.Comment(value=CHECK_LINK_COMMENT))): | ||
return updated_node | ||
|
||
if self._should_add_comment: | ||
return self._decorator_with_leading_comment(updated_node, ROOT_VALIDATOR_COMMENT) | ||
|
||
return self._replace_validators(updated_node, "root_validator", "model_validator") | ||
|
||
@m.leave(VALIDATOR_DECORATOR) | ||
def leave_validator_decorator(self, original_node: cst.Decorator, updated_node: cst.Decorator) -> cst.Decorator: | ||
for line in updated_node.leading_lines: | ||
if m.matches(line, m.EmptyLine(comment=m.Comment(value=CHECK_LINK_COMMENT))): | ||
return updated_node | ||
|
||
if self._should_add_comment: | ||
return self._decorator_with_leading_comment(updated_node, VALIDATOR_COMMENT) | ||
|
||
return self._replace_validators(updated_node, "validator", "field_validator") | ||
|
||
@m.leave(VALIDATOR_FUNCTION | ROOT_VALIDATOR_FUNCTION) | ||
def leave_validator_func(self, original_node: cst.FunctionDef, updated_node: cst.FunctionDef) -> cst.FunctionDef: | ||
self._args = [] | ||
if self._should_add_comment: | ||
self._should_add_comment = False | ||
return updated_node | ||
classmethod_decorator = cst.Decorator(decorator=cst.Name("classmethod")) | ||
return updated_node.with_changes(decorators=[*updated_node.decorators, classmethod_decorator]) | ||
|
||
def _decorator_with_leading_comment(self, node: cst.Decorator, comment: str) -> cst.Decorator: | ||
return node.with_changes( | ||
leading_lines=[ | ||
*node.leading_lines, | ||
cst.EmptyLine(comment=cst.Comment(value=(comment))), | ||
cst.EmptyLine(comment=cst.Comment(value=(CHECK_LINK_COMMENT))), | ||
] | ||
) | ||
|
||
def _replace_validators(self, node: cst.Decorator, old_name: str, new_name: str) -> cst.Decorator: | ||
RemoveImportsVisitor.remove_unused_import(self.context, "pydantic", old_name) | ||
AddImportsVisitor.add_needed_import(self.context, "pydantic", new_name) | ||
decorator = node.decorator.with_changes(func=cst.Name(new_name), args=self._args) | ||
return node.with_changes(decorator=decorator) | ||
|
||
|
||
if __name__ == "__main__": | ||
import textwrap | ||
|
||
from rich.console import Console | ||
|
||
console = Console() | ||
|
||
source = textwrap.dedent( | ||
""" | ||
from pydantic import BaseModel, validator | ||
class Foo(BaseModel): | ||
bar: str | ||
@validator("bar", pre=True, always=True) | ||
def bar_validator(cls, v): | ||
return v | ||
""" | ||
) | ||
console.print(source) | ||
console.print("=" * 80) | ||
|
||
mod = cst.parse_module(source) | ||
context = CodemodContext(filename="main.py") | ||
wrapper = cst.MetadataWrapper(mod) | ||
command = ValidatorCodemod(context=context) | ||
# console.print(mod) | ||
|
||
mod = wrapper.visit(command) | ||
wrapper = cst.MetadataWrapper(mod) | ||
command = AddImportsVisitor(context=context) # type: ignore[assignment] | ||
mod = wrapper.visit(command) | ||
console.print(mod.code) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.