From 3762569fcee6c94fc6f813fa0e5d66c68095cabd Mon Sep 17 00:00:00 2001 From: Qiang Xue Date: Thu, 21 Jul 2011 10:11:10 -0400 Subject: [PATCH] w --- framework/base/Model.php | 624 +++++++++++++++++++++++++++++++++++++++ framework/base/ModelBehavior.php | 64 ++++ framework/base/ModelEvent.php | 39 +++ 3 files changed, 727 insertions(+) create mode 100644 framework/base/Model.php create mode 100644 framework/base/ModelBehavior.php create mode 100644 framework/base/ModelEvent.php diff --git a/framework/base/Model.php b/framework/base/Model.php new file mode 100644 index 0000000..2621a7e --- /dev/null +++ b/framework/base/Model.php @@ -0,0 +1,624 @@ + + * @link http://www.yiiframework.com/ + * @copyright Copyright © 2008-2011 Yii Software LLC + * @license http://www.yiiframework.com/license/ + */ + + +/** + * CModel is the base class providing the common features needed by data model objects. + * + * CModel defines the basic framework for data models that need to be validated. + * + * @author Qiang Xue + * @version $Id: CModel.php 3349 2011-07-08 11:27:53Z mdomba $ + * @package system.base + * @since 1.0 + */ +abstract class CModel extends CComponent implements IteratorAggregate, ArrayAccess +{ + private $_errors=array(); // attribute name => array of errors + private $_validators; // validators + private $_scenario=''; // scenario + + /** + * Returns the list of attribute names of the model. + * @return array list of attribute names. + * @since 1.0.1 + */ + abstract public function attributeNames(); + + /** + * Returns the validation rules for attributes. + * + * This method should be overridden to declare validation rules. + * Each rule is an array with the following structure: + *
+	 * array('attribute list', 'validator name', 'on'=>'scenario name', ...validation parameters...)
+	 * 
+ * where + * + * + * The following are some examples: + *
+	 * array(
+	 *     array('username', 'required'),
+	 *     array('username', 'length', 'min'=>3, 'max'=>12),
+	 *     array('password', 'compare', 'compareAttribute'=>'password2', 'on'=>'register'),
+	 *     array('password', 'authenticate', 'on'=>'login'),
+	 * );
+	 * 
+ * + * Note, in order to inherit rules defined in the parent class, a child class needs to + * merge the parent rules with child rules using functions like array_merge(). + * + * @return array validation rules to be applied when {@link validate()} is called. + * @see scenario + */ + public function rules() + { + return array(); + } + + /** + * Returns a list of behaviors that this model should behave as. + * The return value should be an array of behavior configurations indexed by + * behavior names. Each behavior configuration can be either a string specifying + * the behavior class or an array of the following structure: + *
+	 * 'behaviorName'=>array(
+	 *     'class'=>'path.to.BehaviorClass',
+	 *     'property1'=>'value1',
+	 *     'property2'=>'value2',
+	 * )
+	 * 
+ * + * Note, the behavior classes must implement {@link IBehavior} or extend from + * {@link CBehavior}. Behaviors declared in this method will be attached + * to the model when it is instantiated. + * + * For more details about behaviors, see {@link CComponent}. + * @return array the behavior configurations (behavior name=>behavior configuration) + * @since 1.0.2 + */ + public function behaviors() + { + return array(); + } + + /** + * Returns the attribute labels. + * Attribute labels are mainly used in error messages of validation. + * By default an attribute label is generated using {@link generateAttributeLabel}. + * This method allows you to explicitly specify attribute labels. + * + * Note, in order to inherit labels defined in the parent class, a child class needs to + * merge the parent labels with child labels using functions like array_merge(). + * + * @return array attribute labels (name=>label) + * @see generateAttributeLabel + */ + public function attributeLabels() + { + return array(); + } + + /** + * Performs the validation. + * + * This method executes the validation rules as declared in {@link rules}. + * Only the rules applicable to the current {@link scenario} will be executed. + * A rule is considered applicable to a scenario if its 'on' option is not set + * or contains the scenario. + * + * Errors found during the validation can be retrieved via {@link getErrors}. + * + * @param array $attributes list of attributes that should be validated. Defaults to null, + * meaning any attribute listed in the applicable validation rules should be + * validated. If this parameter is given as a list of attributes, only + * the listed attributes will be validated. + * @param boolean $clearErrors whether to call {@link clearErrors} before performing validation + * @return boolean whether the validation is successful without any error. + * @see beforeValidate + * @see afterValidate + */ + public function validate($attributes=null, $clearErrors=true) + { + if($clearErrors) + $this->clearErrors(); + if($this->beforeValidate()) + { + foreach($this->getValidators() as $validator) + $validator->validate($this,$attributes); + $this->afterValidate(); + return !$this->hasErrors(); + } + else + return false; + } + + /** + * This method is invoked after a model instance is created by new operator. + * The default implementation raises the {@link onAfterConstruct} event. + * You may override this method to do postprocessing after model creation. + * Make sure you call the parent implementation so that the event is raised properly. + */ + protected function afterConstruct() + { + if($this->hasEventHandler('onAfterConstruct')) + $this->onAfterConstruct(new CEvent($this)); + } + + /** + * This method is invoked before validation starts. + * The default implementation calls {@link onBeforeValidate} to raise an event. + * You may override this method to do preliminary checks before validation. + * Make sure the parent implementation is invoked so that the event can be raised. + * @return boolean whether validation should be executed. Defaults to true. + * If false is returned, the validation will stop and the model is considered invalid. + */ + protected function beforeValidate() + { + $event=new CModelEvent($this); + $this->onBeforeValidate($event); + return $event->isValid; + } + + /** + * This method is invoked after validation ends. + * The default implementation calls {@link onAfterValidate} to raise an event. + * You may override this method to do postprocessing after validation. + * Make sure the parent implementation is invoked so that the event can be raised. + */ + protected function afterValidate() + { + $this->onAfterValidate(new CEvent($this)); + } + + /** + * This event is raised after the model instance is created by new operator. + * @param CEvent $event the event parameter + * @since 1.0.2 + */ + public function onAfterConstruct($event) + { + $this->raiseEvent('onAfterConstruct',$event); + } + + /** + * This event is raised before the validation is performed. + * @param CModelEvent $event the event parameter + * @since 1.0.2 + */ + public function onBeforeValidate($event) + { + $this->raiseEvent('onBeforeValidate',$event); + } + + /** + * This event is raised after the validation is performed. + * @param CEvent $event the event parameter + * @since 1.0.2 + */ + public function onAfterValidate($event) + { + $this->raiseEvent('onAfterValidate',$event); + } + + /** + * Returns all the validators declared in the model. + * This method differs from {@link getValidators} in that the latter + * would only return the validators applicable to the current {@link scenario}. + * Also, since this method return a {@link CList} object, you may + * manipulate it by inserting or removing validators (useful in behaviors). + * For example, $model->validatorList->add($newValidator). + * The change made to the {@link CList} object will persist and reflect + * in the result of the next call of {@link getValidators}. + * @return CList all the validators declared in the model. + * @since 1.1.2 + */ + public function getValidatorList() + { + if($this->_validators===null) + $this->_validators=$this->createValidators(); + return $this->_validators; + } + + /** + * Returns the validators applicable to the current {@link scenario}. + * @param string $attribute the name of the attribute whose validators should be returned. + * If this is null, the validators for ALL attributes in the model will be returned. + * @return array the validators applicable to the current {@link scenario}. + * @since 1.0.1 + */ + public function getValidators($attribute=null) + { + if($this->_validators===null) + $this->_validators=$this->createValidators(); + + $validators=array(); + $scenario=$this->getScenario(); + foreach($this->_validators as $validator) + { + if($validator->applyTo($scenario)) + { + if($attribute===null || in_array($attribute,$validator->attributes,true)) + $validators[]=$validator; + } + } + return $validators; + } + + /** + * Creates validator objects based on the specification in {@link rules}. + * This method is mainly used internally. + * @return CList validators built based on {@link rules()}. + */ + public function createValidators() + { + $validators=new CList; + foreach($this->rules() as $rule) + { + if(isset($rule[0],$rule[1])) // attributes, validator name + $validators->add(CValidator::createValidator($rule[1],$this,$rule[0],array_slice($rule,2))); + else + throw new CException(Yii::t('yii','{class} has an invalid validation rule. The rule must specify attributes to be validated and the validator name.', + array('{class}'=>get_class($this)))); + } + return $validators; + } + + /** + * Returns a value indicating whether the attribute is required. + * This is determined by checking if the attribute is associated with a + * {@link CRequiredValidator} validation rule in the current {@link scenario}. + * @param string $attribute attribute name + * @return boolean whether the attribute is required + * @since 1.0.2 + */ + public function isAttributeRequired($attribute) + { + foreach($this->getValidators($attribute) as $validator) + { + if($validator instanceof CRequiredValidator) + return true; + } + return false; + } + + /** + * Returns a value indicating whether the attribute is safe for massive assignments. + * @param string $attribute attribute name + * @return boolean whether the attribute is safe for massive assignments + * @since 1.1 + */ + public function isAttributeSafe($attribute) + { + $attributes=$this->getSafeAttributeNames(); + return in_array($attribute,$attributes); + } + + /** + * Returns the text label for the specified attribute. + * @param string $attribute the attribute name + * @return string the attribute label + * @see generateAttributeLabel + * @see attributeLabels + */ + public function getAttributeLabel($attribute) + { + $labels=$this->attributeLabels(); + if(isset($labels[$attribute])) + return $labels[$attribute]; + else + return $this->generateAttributeLabel($attribute); + } + + /** + * Returns a value indicating whether there is any validation error. + * @param string $attribute attribute name. Use null to check all attributes. + * @return boolean whether there is any error. + */ + public function hasErrors($attribute=null) + { + if($attribute===null) + return $this->_errors!==array(); + else + return isset($this->_errors[$attribute]); + } + + /** + * Returns the errors for all attribute or a single attribute. + * @param string $attribute attribute name. Use null to retrieve errors for all attributes. + * @return array errors for all attributes or the specified attribute. Empty array is returned if no error. + */ + public function getErrors($attribute=null) + { + if($attribute===null) + return $this->_errors; + else + return isset($this->_errors[$attribute]) ? $this->_errors[$attribute] : array(); + } + + /** + * Returns the first error of the specified attribute. + * @param string $attribute attribute name. + * @return string the error message. Null is returned if no error. + * @since 1.0.2 + */ + public function getError($attribute) + { + return isset($this->_errors[$attribute]) ? reset($this->_errors[$attribute]) : null; + } + + /** + * Adds a new error to the specified attribute. + * @param string $attribute attribute name + * @param string $error new error message + */ + public function addError($attribute,$error) + { + $this->_errors[$attribute][]=$error; + } + + /** + * Adds a list of errors. + * @param array $errors a list of errors. The array keys must be attribute names. + * The array values should be error messages. If an attribute has multiple errors, + * these errors must be given in terms of an array. + * You may use the result of {@link getErrors} as the value for this parameter. + * @since 1.0.5 + */ + public function addErrors($errors) + { + foreach($errors as $attribute=>$error) + { + if(is_array($error)) + { + foreach($error as $e) + $this->_errors[$attribute][]=$e; + } + else + $this->_errors[$attribute][]=$error; + } + } + + /** + * Removes errors for all attributes or a single attribute. + * @param string $attribute attribute name. Use null to remove errors for all attribute. + */ + public function clearErrors($attribute=null) + { + if($attribute===null) + $this->_errors=array(); + else + unset($this->_errors[$attribute]); + } + + /** + * Generates a user friendly attribute label. + * This is done by replacing underscores or dashes with blanks and + * changing the first letter of each word to upper case. + * For example, 'department_name' or 'DepartmentName' becomes 'Department Name'. + * @param string $name the column name + * @return string the attribute label + */ + public function generateAttributeLabel($name) + { + return ucwords(trim(strtolower(str_replace(array('-','_','.'),' ',preg_replace('/(?value). + */ + public function getAttributes($names=null) + { + $values=array(); + foreach($this->attributeNames() as $name) + $values[$name]=$this->$name; + + if(is_array($names)) + { + $values2=array(); + foreach($names as $name) + $values2[$name]=isset($values[$name]) ? $values[$name] : null; + return $values2; + } + else + return $values; + } + + /** + * Sets the attribute values in a massive way. + * @param array $values attribute values (name=>value) to be set. + * @param boolean $safeOnly whether the assignments should only be done to the safe attributes. + * A safe attribute is one that is associated with a validation rule in the current {@link scenario}. + * @see getSafeAttributeNames + * @see attributeNames + */ + public function setAttributes($values,$safeOnly=true) + { + if(!is_array($values)) + return; + $attributes=array_flip($safeOnly ? $this->getSafeAttributeNames() : $this->attributeNames()); + foreach($values as $name=>$value) + { + if(isset($attributes[$name])) + $this->$name=$value; + else if($safeOnly) + $this->onUnsafeAttribute($name,$value); + } + } + + /** + * Sets the attributes to be null. + * @param array $names list of attributes to be set null. If this parameter is not given, + * all attributes as specified by {@link attributeNames} will have their values unset. + * @since 1.1.3 + */ + public function unsetAttributes($names=null) + { + if($names===null) + $names=$this->attributeNames(); + foreach($names as $name) + $this->$name=null; + } + + /** + * This method is invoked when an unsafe attribute is being massively assigned. + * The default implementation will log a warning message if YII_DEBUG is on. + * It does nothing otherwise. + * @param string $name the unsafe attribute name + * @param mixed $value the attribute value + * @since 1.1.1 + */ + public function onUnsafeAttribute($name,$value) + { + if(YII_DEBUG) + Yii::log(Yii::t('yii','Failed to set unsafe attribute "{attribute}" of "{class}".',array('{attribute}'=>$name, '{class}'=>get_class($this))),CLogger::LEVEL_WARNING); + } + + /** + * Returns the scenario that this model is used in. + * + * Scenario affects how validation is performed and which attributes can + * be massively assigned. + * + * A validation rule will be performed when calling {@link validate()} + * if its 'on' option is not set or contains the current scenario value. + * + * And an attribute can be massively assigned if it is associated with + * a validation rule for the current scenario. Note that an exception is + * the {@link CUnsafeValidator unsafe} validator which marks the associated + * attributes as unsafe and not allowed to be massively assigned. + * + * @return string the scenario that this model is in. + * @since 1.0.4 + */ + public function getScenario() + { + return $this->_scenario; + } + + /** + * Sets the scenario for the model. + * @param string $value the scenario that this model is in. + * @see getScenario + * @since 1.0.4 + */ + public function setScenario($value) + { + $this->_scenario=$value; + } + + /** + * Returns the attribute names that are safe to be massively assigned. + * A safe attribute is one that is associated with a validation rule in the current {@link scenario}. + * @return array safe attribute names + * @since 1.0.2 + */ + public function getSafeAttributeNames() + { + $attributes=array(); + $unsafe=array(); + foreach($this->getValidators() as $validator) + { + if(!$validator->safe) + { + foreach($validator->attributes as $name) + $unsafe[]=$name; + } + else + { + foreach($validator->attributes as $name) + $attributes[$name]=true; + } + } + + foreach($unsafe as $name) + unset($attributes[$name]); + return array_keys($attributes); + } + + /** + * Returns an iterator for traversing the attributes in the model. + * This method is required by the interface IteratorAggregate. + * @return CMapIterator an iterator for traversing the items in the list. + */ + public function getIterator() + { + $attributes=$this->getAttributes(); + return new CMapIterator($attributes); + } + + /** + * Returns whether there is an element at the specified offset. + * This method is required by the interface ArrayAccess. + * @param mixed $offset the offset to check on + * @return boolean + * @since 1.0.2 + */ + public function offsetExists($offset) + { + return property_exists($this,$offset); + } + + /** + * Returns the element at the specified offset. + * This method is required by the interface ArrayAccess. + * @param integer $offset the offset to retrieve element. + * @return mixed the element at the offset, null if no element is found at the offset + * @since 1.0.2 + */ + public function offsetGet($offset) + { + return $this->$offset; + } + + /** + * Sets the element at the specified offset. + * This method is required by the interface ArrayAccess. + * @param integer $offset the offset to set element + * @param mixed $item the element value + * @since 1.0.2 + */ + public function offsetSet($offset,$item) + { + $this->$offset=$item; + } + + /** + * Unsets the element at the specified offset. + * This method is required by the interface ArrayAccess. + * @param mixed $offset the offset to unset element + * @since 1.0.2 + */ + public function offsetUnset($offset) + { + unset($this->$offset); + } +} diff --git a/framework/base/ModelBehavior.php b/framework/base/ModelBehavior.php new file mode 100644 index 0000000..e76825a --- /dev/null +++ b/framework/base/ModelBehavior.php @@ -0,0 +1,64 @@ + + * @link http://www.yiiframework.com/ + * @copyright Copyright © 2008-2011 Yii Software LLC + * @license http://www.yiiframework.com/license/ + */ + +/** + * CModelBehavior is a base class for behaviors that are attached to a model component. + * The model should extend from {@link CModel} or its child classes. + * @author Qiang Xue + * @version $Id: CModelBehavior.php 2799 2011-01-01 19:31:13Z qiang.xue $ + * @package system.base + * @since 1.0.2 + */ +class CModelBehavior extends CBehavior +{ + /** + * Declares events and the corresponding event handler methods. + * The default implementation returns 'onBeforeValidate' and 'onAfterValidate' events and handlers. + * If you override this method, make sure you merge the parent result to the return value. + * @return array events (array keys) and the corresponding event handler methods (array values). + * @see CBehavior::events + */ + public function events() + { + return array( + 'onAfterConstruct'=>'afterConstruct', + 'onBeforeValidate'=>'beforeValidate', + 'onAfterValidate'=>'afterValidate', + ); + } + + /** + * Responds to {@link CModel::onAfterConstruct} event. + * Overrides this method if you want to handle the corresponding event of the {@link CBehavior::owner owner}. + * @param CEvent $event event parameter + */ + public function afterConstruct($event) + { + } + + /** + * Responds to {@link CModel::onBeforeValidate} event. + * Overrides this method if you want to handle the corresponding event of the {@link owner}. + * You may set {@link CModelEvent::isValid} to be false to quit the validation process. + * @param CModelEvent $event event parameter + */ + public function beforeValidate($event) + { + } + + /** + * Responds to {@link CModel::onAfterValidate} event. + * Overrides this method if you want to handle the corresponding event of the {@link owner}. + * @param CEvent $event event parameter + */ + public function afterValidate($event) + { + } +} diff --git a/framework/base/ModelEvent.php b/framework/base/ModelEvent.php new file mode 100644 index 0000000..a9b465a --- /dev/null +++ b/framework/base/ModelEvent.php @@ -0,0 +1,39 @@ + + * @link http://www.yiiframework.com/ + * @copyright Copyright © 2008-2011 Yii Software LLC + * @license http://www.yiiframework.com/license/ + */ + + +/** + * CModelEvent class. + * + * CModelEvent represents the event parameters needed by events raised by a model. + * + * @author Qiang Xue + * @version $Id: CModelEvent.php 2799 2011-01-01 19:31:13Z qiang.xue $ + * @package system.base + * @since 1.0 + */ +class CModelEvent extends CEvent +{ + /** + * @var boolean whether the model is in valid status and should continue its normal method execution cycles. Defaults to true. + * For example, when this event is raised in a {@link CFormModel} object that is executing {@link CModel::beforeValidate}, + * if this property is set false by the event handler, the {@link CModel::validate} method will quit after handling this event. + * If true, the normal execution cycles will continue, including performing the real validations and calling + * {@link CModel::afterValidate}. + */ + public $isValid=true; + /** + * @var CDbCrireria the query criteria that is passed as a parameter to a find method of {@link CActiveRecord}. + * Note that this property is only used by {@link CActiveRecord::onBeforeFind} event. + * This property could be null. + * @since 1.1.5 + */ + public $criteria; +}