Skip to content

Commit fd6ab19

Browse files
committed
Introduce AnnotatedUserId, removing pydantic dependency from UserId
Change-Id: Id8f12caaaa26de505ecb703f115b0e2ac1e427a3
1 parent ca97a36 commit fd6ab19

File tree

3 files changed

+20
-26
lines changed

3 files changed

+20
-26
lines changed

cmk/gui/pagetypes.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@
7979
)
8080
from cmk.gui.table import init_rowselect, Table, table_element
8181
from cmk.gui.type_defs import (
82+
AnnotatedUserId,
8283
HTTPVariables,
8384
Icon,
8485
MegaMenu,
@@ -137,7 +138,7 @@ class BaseConfig:
137138

138139

139140
class OverridableModel(BaseModel):
140-
owner: UserId
141+
owner: AnnotatedUserId
141142
public: bool | tuple[Literal["contact_groups", "sites"], Sequence[str]] | None
142143
hidden: bool = False # TODO: Seems it is not configurable through the UI. Is it OK?
143144

cmk/gui/type_defs.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
from collections.abc import Callable, Iterable, Mapping, Sequence
1111
from dataclasses import asdict, dataclass, field
1212
from datetime import datetime
13-
from typing import Any, Literal, NamedTuple, NewType, NotRequired, TypedDict
13+
from typing import Annotated, Any, Literal, NamedTuple, NewType, NotRequired, TypedDict
1414

15-
from pydantic import BaseModel
15+
from pydantic import BaseModel, PlainValidator
1616

1717
from livestatus import SiteId
1818

@@ -699,11 +699,14 @@ class ViewProcessTracking:
699699
duration_view_render: Snapshot = Snapshot.null()
700700

701701

702+
AnnotatedUserId = Annotated[UserId, PlainValidator(UserId.parse)]
703+
704+
702705
class Key(BaseModel):
703706
certificate: str
704707
private_key: str
705708
alias: str
706-
owner: UserId
709+
owner: AnnotatedUserId
707710
date: float
708711
# Before 2.2 this field was only used for Setup backup keys. Now we add it to all key, because it
709712
# won't hurt for other types of keys (e.g. the bakery signing keys). We set a default of False

cmk/utils/user.py

+12-22
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,8 @@
33
# This file is part of Checkmk (https://checkmk.com). It is subject to the terms and
44
# conditions defined in the file COPYING, which is part of this source code package.
55

6-
7-
from __future__ import annotations
8-
96
import re
10-
from typing import Any
11-
12-
from pydantic import GetCoreSchemaHandler
13-
from pydantic_core import core_schema
7+
from typing import Self
148

159

1610
class UserId(str):
@@ -57,19 +51,7 @@ class UserId(str):
5751
# Note: livestatus.py duplicates the regex to validate incoming UserIds!
5852
USER_ID_REGEX = re.compile(r"^[\w$][-@.+\w$]*$", re.UNICODE)
5953

60-
@classmethod
61-
def __get_pydantic_core_schema__(
62-
cls, source_type: Any, _handler: GetCoreSchemaHandler
63-
) -> core_schema.CoreSchema:
64-
return core_schema.no_info_after_validator_function(
65-
cls,
66-
core_schema.union_schema(
67-
[core_schema.str_schema(), core_schema.is_instance_schema(cls)]
68-
),
69-
serialization=core_schema.to_string_ser_schema(),
70-
)
71-
72-
def __new__(cls, text: str) -> UserId:
54+
def __new__(cls, text: str) -> Self:
7355
"""Construct a new UserId object
7456
7557
UserIds are used in a variety of contexts, including HTML, file paths and other external
@@ -154,7 +136,15 @@ def __new__(cls, text: str) -> UserId:
154136
return super().__new__(cls, text)
155137

156138
@classmethod
157-
def builtin(cls) -> UserId:
139+
def parse(cls, x: object) -> Self:
140+
if isinstance(x, cls):
141+
return x
142+
if isinstance(x, str):
143+
return cls(x)
144+
raise ValueError(f"invalid username: {x!r}")
145+
146+
@classmethod
147+
def builtin(cls) -> Self:
158148
"""A special UserId signifying something is owned or created not by a real user but shipped
159149
as a built in functionality.
160150
This is mostly used in cmk.gui.visuals.
@@ -163,4 +153,4 @@ def builtin(cls) -> UserId:
163153
Moreover, be aware that it is very possible that some parts of the code use the UserId ""
164154
with a different meaning.
165155
"""
166-
return UserId("")
156+
return cls("")

0 commit comments

Comments
 (0)