| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269 |
- <?php
- namespace Sabre\VObject;
- /**
- * Document.
- *
- * A document is just like a component, except that it's also the top level
- * element.
- *
- * Both a VCALENDAR and a VCARD are considered documents.
- *
- * This class also provides a registry for document types.
- *
- * @copyright Copyright (C) fruux GmbH (https://fruux.com/)
- * @author Evert Pot (http://evertpot.com/)
- * @license http://sabre.io/license/ Modified BSD License
- */
- abstract class Document extends Component
- {
- /**
- * Unknown document type.
- */
- const UNKNOWN = 1;
- /**
- * vCalendar 1.0.
- */
- const VCALENDAR10 = 2;
- /**
- * iCalendar 2.0.
- */
- const ICALENDAR20 = 3;
- /**
- * vCard 2.1.
- */
- const VCARD21 = 4;
- /**
- * vCard 3.0.
- */
- const VCARD30 = 5;
- /**
- * vCard 4.0.
- */
- const VCARD40 = 6;
- /**
- * The default name for this component.
- *
- * This should be 'VCALENDAR' or 'VCARD'.
- *
- * @var string
- */
- public static $defaultName;
- /**
- * List of properties, and which classes they map to.
- *
- * @var array
- */
- public static $propertyMap = [];
- /**
- * List of components, along with which classes they map to.
- *
- * @var array
- */
- public static $componentMap = [];
- /**
- * List of value-types, and which classes they map to.
- *
- * @var array
- */
- public static $valueMap = [];
- /**
- * Creates a new document.
- *
- * We're changing the default behavior slightly here. First, we don't want
- * to have to specify a name (we already know it), and we want to allow
- * children to be specified in the first argument.
- *
- * But, the default behavior also works.
- *
- * So the two sigs:
- *
- * new Document(array $children = [], $defaults = true);
- * new Document(string $name, array $children = [], $defaults = true)
- */
- public function __construct()
- {
- $args = func_get_args();
- $name = static::$defaultName;
- if (0 === count($args) || is_array($args[0])) {
- $children = isset($args[0]) ? $args[0] : [];
- $defaults = isset($args[1]) ? $args[1] : true;
- } else {
- $name = $args[0];
- $children = isset($args[1]) ? $args[1] : [];
- $defaults = isset($args[2]) ? $args[2] : true;
- }
- parent::__construct($this, $name, $children, $defaults);
- }
- /**
- * Returns the current document type.
- *
- * @return int
- */
- public function getDocumentType()
- {
- return self::UNKNOWN;
- }
- /**
- * Creates a new component or property.
- *
- * If it's a known component, we will automatically call createComponent.
- * otherwise, we'll assume it's a property and call createProperty instead.
- *
- * @param string $name
- * @param string $arg1,... Unlimited number of args
- *
- * @return mixed
- */
- public function create($name)
- {
- if (isset(static::$componentMap[strtoupper($name)])) {
- return call_user_func_array([$this, 'createComponent'], func_get_args());
- } else {
- return call_user_func_array([$this, 'createProperty'], func_get_args());
- }
- }
- /**
- * Creates a new component.
- *
- * This method automatically searches for the correct component class, based
- * on its name.
- *
- * You can specify the children either in key=>value syntax, in which case
- * properties will automatically be created, or you can just pass a list of
- * Component and Property object.
- *
- * By default, a set of sensible values will be added to the component. For
- * an iCalendar object, this may be something like CALSCALE:GREGORIAN. To
- * ensure that this does not happen, set $defaults to false.
- *
- * @param string $name
- * @param array $children
- * @param bool $defaults
- *
- * @return Component
- */
- public function createComponent($name, ?array $children = null, $defaults = true)
- {
- $name = strtoupper($name);
- $class = Component::class;
- if (isset(static::$componentMap[$name])) {
- $class = static::$componentMap[$name];
- }
- if (is_null($children)) {
- $children = [];
- }
- return new $class($this, $name, $children, $defaults);
- }
- /**
- * Factory method for creating new properties.
- *
- * This method automatically searches for the correct property class, based
- * on its name.
- *
- * You can specify the parameters either in key=>value syntax, in which case
- * parameters will automatically be created, or you can just pass a list of
- * Parameter objects.
- *
- * @param string $name
- * @param mixed $value
- * @param array $parameters
- * @param string $valueType Force a specific valuetype, such as URI or TEXT
- */
- public function createProperty($name, $value = null, ?array $parameters = null, $valueType = null, ?int $lineIndex = null, ?string $lineString = null): Property
- {
- // If there's a . in the name, it means it's prefixed by a groupname.
- if (false !== ($i = strpos($name, '.'))) {
- $group = substr($name, 0, $i);
- $name = strtoupper(substr($name, $i + 1));
- } else {
- $name = strtoupper($name);
- $group = null;
- }
- $class = null;
- // If a VALUE parameter is supplied, we have to use that
- // According to https://datatracker.ietf.org/doc/html/rfc5545#section-3.2.20
- // If the property's value is the default value type, then this
- // parameter need not be specified. However, if the property's
- // default value type is overridden by some other allowable value
- // type, then this parameter MUST be specified.
- if (!$valueType) {
- $valueType = $parameters['VALUE'] ?? null;
- }
- if ($valueType) {
- // The valueType argument comes first to figure out the correct
- // class.
- $class = $this->getClassNameForPropertyValue($valueType);
- }
- // If the value parameter is not set or set to something we do not recognize
- // we do not attempt to interpret or parse the datass value as specified in
- // https://datatracker.ietf.org/doc/html/rfc5545#section-3.2.20
- // So when we so far did not get a class-name, we use the default for the property
- if (is_null($class)) {
- $class = $this->getClassNameForPropertyName($name);
- }
- if (is_null($parameters)) {
- $parameters = [];
- }
- return new $class($this, $name, $value, $parameters, $group, $lineIndex, $lineString);
- }
- /**
- * This method returns a full class-name for a value parameter.
- *
- * For instance, DTSTART may have VALUE=DATE. In that case we will look in
- * our valueMap table and return the appropriate class name.
- *
- * This method returns null if we don't have a specialized class.
- *
- * @param string $valueParam
- *
- * @return string|null
- */
- public function getClassNameForPropertyValue($valueParam)
- {
- $valueParam = strtoupper($valueParam);
- if (isset(static::$valueMap[$valueParam])) {
- return static::$valueMap[$valueParam];
- }
- }
- /**
- * Returns the default class for a property name.
- *
- * @param string $propertyName
- *
- * @return string
- */
- public function getClassNameForPropertyName($propertyName)
- {
- if (isset(static::$propertyMap[$propertyName])) {
- return static::$propertyMap[$propertyName];
- } else {
- return Property\Unknown::class;
- }
- }
- }
|