Source code for icalendar.prop.text
"""TEXT values from :rfc:`5545`."""
from typing import Any, ClassVar
from icalendar.compatibility import Self
from icalendar.error import JCalParsingError
from icalendar.parser import Parameters, escape_char
from icalendar.parser_tools import DEFAULT_ENCODING, ICAL_TYPE, to_unicode
[docs]
class vText(str):
"""Simple text."""
default_value: ClassVar[str] = "TEXT"
params: Parameters
__slots__ = ("encoding", "params")
def __new__(
cls,
value,
encoding=DEFAULT_ENCODING,
/,
params: dict[str, Any] | None = None,
):
value = to_unicode(value, encoding=encoding)
self = super().__new__(cls, value)
self.encoding = encoding
self.params = Parameters(params)
return self
def __repr__(self) -> str:
return f"vText({self.to_ical()!r})"
[docs]
def to_ical(self) -> bytes:
return escape_char(self).encode(self.encoding)
[docs]
@classmethod
def from_ical(cls, ical: ICAL_TYPE):
return cls(ical)
@property
def ical_value(self) -> str:
"""The string value of the text."""
return str(self)
from icalendar.param import ALTREP, GAP, LANGUAGE, RELTYPE, VALUE
[docs]
def to_jcal(self, name: str) -> list:
"""The jCal representation of this property according to :rfc:`7265`."""
if name == "request-status": # TODO: maybe add a vRequestStatus class?
return [name, {}, "text", self.split(";", 2)]
return [name, self.params.to_jcal(), self.VALUE.lower(), str(self)]
[docs]
@classmethod
def examples(cls):
"""Examples of vText."""
return [cls("Hello World!")]
[docs]
@classmethod
def from_jcal(cls, jcal_property: list) -> Self:
"""Parse jCal from :rfc:`7265`.
Parameters:
jcal_property: The jCal property to parse.
Raises:
~error.JCalParsingError: If the provided jCal is invalid.
"""
JCalParsingError.validate_property(jcal_property, cls)
name = jcal_property[0]
if name == "categories":
from icalendar.prop import vCategory
return vCategory.from_jcal(jcal_property)
string = jcal_property[3] # TODO: accept list or string but join with ;
if name == "request-status": # TODO: maybe add a vRequestStatus class?
JCalParsingError.validate_list_type(jcal_property[3], str, cls, 3)
string = ";".join(jcal_property[3])
JCalParsingError.validate_value_type(string, str, cls, 3)
return cls(
string,
params=Parameters.from_jcal_property(jcal_property),
)
[docs]
@classmethod
def parse_jcal_value(cls, jcal_value: Any) -> Self:
"""Parse a jCal value into a vText."""
JCalParsingError.validate_value_type(jcal_value, (str, int, float), cls)
return cls(str(jcal_value))
__all__ = ["vText"]