2

crypt添付された属性が暗号化されて保存され、復号化された文字列として取得されるように、AR モデルに添付できる動作クラスを実装しました。

class User extends CActiveRecord 
{
    public function behaviors()
    {
        return array(
            'crypt' => array(
            // this assumes that the behavior is in the folder: protected/behaviors/
            'class' => 'application.behaviors.CryptBehavior',
            // this sets that the attributes to be encrypted/decrypted are encryptedfieldname of the model
            'attributes' => array('password'),
            'useAESMySql' => true
           )
        );
    }
}

これはうまくいっています。Myuserまた、モデルを拡張Userしてカスタム関数を作成するカスタム クラスも用意しているので、userテーブルに変更を加えてモデルを再生成しても、独自の関数が失われることはありません。

behavior関数をクラスMyUserに移動すると、動作がアタッチされず、期待どおりに動作しません

class MyUser extends User 
{
    public function behaviors()
    {
        return array(
            'crypt' => array(
            // this assumes that the behavior is in the folder: protected/behaviors/
            'class' => 'application.behaviors.CryptBehavior',
            // this sets that the attributes to be encrypted/decrypted are encryptedfieldname of the model
            'attributes' => array('password'),
            'useAESMySql' => true
           )
        );
    }

    public function customfn1()
    {
         //some code goes here...
    }
}

どんな助けでも大歓迎です。参照リンク:クリプトの動作

4

2 に答える 2

1

これが実用的なソリューションです。すべてのシナリオをテストする必要があります。あなたの機能について@bool.devに感謝します。

class MyUser extends User 
{
    public static function model($className=__CLASS__)
    {
       return parent::model($className);
    }

    public function behaviors()
    {
        return array(
            'crypt' => array(
            // this assumes that the behavior is in the folder: protected/behaviors/
            'class' => 'application.behaviors.CryptBehavior',
           // this sets that the attributes to be encrypted/decrypted are encryptedfieldname of the model
            'attributes' => array('password'),
           'useAESMySql' => true
          )
       );
    }

   public static function getUserByID($id)
   {
      //validation of $id goes here..

      return MyUser::model()->findByPk($id);
   }
}

私のコントローラーで

$userModel = MyUser::getUserByID(1);

私からしてみれば

$userModel->password; //gives me the decrypted password; for easy understanding, i used password field here....
于 2012-10-29T12:42:22.107 に答える
0

static modelまた、クラスの関数をサブクラスに追加する必要があります。これだけでうまくいくはずです:

public static function model($className=__CLASS__)
{
    return parent::model($className);
}
于 2012-10-26T13:43:30.493 に答える