Source for file jControllerDaoCrudDfk.class.php

Documentation is available at jControllerDaoCrudDfk.class.php

  1. <?php
  2. /**
  3. @package      jelix
  4. @subpackage   controllers
  5. @author       Laurent Jouanneau
  6. @contributor  Bastien Jaillot
  7. @contributor  Thibault Piront (nuKs)
  8. @copyright    2007-2008 Laurent Jouanneau
  9. @copyright    2007 Thibault Piront
  10. @copyright    2007,2008 Bastien Jaillot
  11. @link         http://www.jelix.org
  12. @licence      http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public Licence, see LICENCE file
  13. *
  14. */
  15.  
  16. /**
  17.  * a base class for crud controllers, for DAO which have a primary key based on
  18.  * two fields, a "static" field (a field that we know the value and which is a criteria to
  19.  * to select all viewed record), and a
  20.  * "dynamic" field (the value of the field is created by the user or autoincremented)
  21.  * @package    jelix
  22.  * @subpackage controllers
  23.  * @since 1.1
  24.  */
  25. class jControllerDaoCrudDfk extends jController {
  26.  
  27.     /**
  28.      * name of the request parameter and of the field in the dao, for the dynamic primary key
  29.      */
  30.     protected $dpkName ='id';
  31.  
  32.     /**
  33.      * name of the request parameter and of the field in the dao, for the static primary key
  34.      */
  35.     protected $spkName = 'spk';
  36.  
  37.     /**
  38.      * selector of the dao to use for the crud.
  39.      * It should be filled by child controller.
  40.      * @var string 
  41.      */
  42.     protected $dao = '';
  43.  
  44.     /**
  45.      * selector of the form to use to edit and display a record
  46.      * It should be filled by child controller.
  47.      * @var string 
  48.      */
  49.     protected $form ='';
  50.  
  51.     /**
  52.      * list of properties to show in the list page
  53.      * if empty list (default), it shows all properties.
  54.      * this property is only usefull when you use the default "list" template
  55.      * @var array 
  56.      */
  57.     protected $propertiesForList = array();
  58.  
  59.     /**
  60.      * list of properties which serve to order the record list.
  61.      * if empty list (default), the list is in a natural order.
  62.      * keys are properties name, and values are "asc" or "desc".
  63.      * @var array 
  64.      */
  65.     protected $propertiesForRecordsOrder = array();
  66.  
  67.     /**
  68.      * template to display the list of records
  69.      * @var string 
  70.      */
  71.     protected $listTemplate = 'jelix~cruddfk_list';
  72.  
  73.     /**
  74.      * template to display the form
  75.      * @var string 
  76.      */
  77.     protected $editTemplate = 'jelix~cruddfk_edit';
  78.  
  79.     /**
  80.      * template to display a record
  81.      * @var string 
  82.      */
  83.     protected $viewTemplate = 'jelix~cruddfk_view';
  84.  
  85.     /**
  86.      * number of record to display in the list page
  87.      * @var integer 
  88.      */
  89.     protected $listPageSize = 20;
  90.  
  91.     /**
  92.      * the template variable name to display a CRUD content in the main template
  93.      * of the html response
  94.      * @var string 
  95.      */
  96.     protected $templateAssign = 'MAIN';
  97.  
  98.     /**
  99.      * name of the parameter which contains the page offset, for the index action
  100.      * @var string 
  101.      */
  102.     protected $offsetParameterName = 'offset';
  103.  
  104.     /**
  105.      * id for the "pseudo" form used to show a record. You can change it if the default one corresponds to
  106.      * a possible id in your dao.
  107.      * @var string 
  108.      */
  109.     protected $pseudoFormId = 'jelix_cruddf_roxor';
  110.  
  111.     /**
  112.      * full path to the directory where uploaded files will be stored
  113.      * automatically by jForms.
  114.      * Set it to false if you want to handle yourself the uploaded files.
  115.      * Set it with an empty string if you want to stored files in the default
  116.      * var/uploads directory.
  117.      * @var string|false
  118.      */
  119.     protected $uploadsDirectory ='';
  120.  
  121.     /**
  122.      * the jDb profile to use with the dao
  123.      */
  124.     protected $dbProfile = '';
  125.  
  126.     /**
  127.      * Returned a simple html response to display CRUD contents. You can override this
  128.      * method to return a personnalized response
  129.      * @return jResponseHtml the response
  130.      */
  131.     protected function _getResponse(){
  132.         return $this->getResponse('html');
  133.     }
  134.  
  135.     /**
  136.      * returned the selector of the action corresponding of the given method of the current controller.
  137.      * @param string $method  name of one of method of this controller
  138.      * @return string an action selector
  139.      */
  140.     protected function _getAction($method){
  141.         global $gJCoord;
  142.         return $gJCoord->action->module.'~'.$gJCoord->action->controller.':'.$method;
  143.     }
  144.  
  145.     /**
  146.      * you can do your own data check of a form by overloading this method.
  147.      * You can also do some other things. It is called only if the $form->check() is ok.
  148.      * and before the save of the data.
  149.      * @param string $spk the static value of the primary key of the record
  150.      * @param jFormsBase $form the current form
  151.      * @param boolean $calltype   true for an update, false for a create
  152.      * @return boolean true if it is ok.
  153.      */
  154.     protected function _checkData($spk$form$calltype){
  155.         return true;
  156.     }
  157.  
  158.  
  159.     protected function _isPkAutoIncrement($dao=null{
  160.         if($dao == null)
  161.             $dao jDao::get($this->dao$this->dbProfile);
  162.  
  163.         $props $dao->getProperties();
  164.         return ($props[$this->dpkName]['autoIncrement'== true);
  165.     }
  166.  
  167.     protected function _getPk($spk$dpk$dao=null{
  168.         if($dao == null)
  169.             $dao jDao::get($this->dao$this->dbProfile);
  170.  
  171.         $props $dao->getProperties();
  172.         $pks $dao->getPrimaryKeyNames();
  173.         if($pks[0== $this->spkName{
  174.             return array($spk$dpk);
  175.         }
  176.         else {
  177.             return array($dpk$spk);
  178.         }
  179.     }
  180.  
  181.     /**
  182.      * list all records
  183.      */
  184.     function index(){
  185.         $offset $this->intParam($this->offsetParameterName,0,true);
  186.  
  187.         $rep $this->_getResponse();
  188.  
  189.         $dao jDao::get($this->dao$this->dbProfile);
  190.  
  191.         $cond jDao::createConditions();
  192.         $cond->addCondition($this->spkName'='$this->param($this->spkName));
  193.         $this->_indexSetConditions($cond);
  194.  
  195.         $results $dao->findBy($cond,$offset,$this->listPageSize);
  196.  
  197.         // we're using a form to have the portunity to have
  198.         // labels for each columns.
  199.         $form jForms::create($this->form$this->pseudoFormId);
  200.         $tpl new jTpl();
  201.         $tpl->assign('list',$results);
  202.         $tpl->assign('dpkName'$this->dpkName);
  203.         $tpl->assign('spkName'$this->spkName);
  204.         $tpl->assign('spk'$this->param($this->spkName));
  205.  
  206.         if(count($this->propertiesForList)) {
  207.             $prop $this->propertiesForList;
  208.         }else{
  209.             $prop array_keys($dao->getProperties());
  210.         }
  211.  
  212.         $tpl->assign('properties'$prop);
  213.         $tpl->assign('controls',$form->getControls());
  214.         $tpl->assign('editAction' $this->_getAction('preupdate'));
  215.         $tpl->assign('createAction' $this->_getAction('precreate'));
  216.         $tpl->assign('deleteAction' $this->_getAction('delete'));
  217.         $tpl->assign('viewAction' $this->_getAction('view'));
  218.         $tpl->assign('listAction' $this->_getAction('index'));
  219.         $tpl->assign('listPageSize'$this->listPageSize);
  220.         $tpl->assign('page',$offset);
  221.         $tpl->assign('recordCount',$dao->countBy($cond));
  222.         $tpl->assign('offsetParameterName',$this->offsetParameterName);
  223.  
  224.         $this->_index($rep$tpl);
  225.         $rep->body->assign($this->templateAssign$tpl->fetch($this->listTemplate));
  226.         jForms::destroy($this->form$this->pseudoFormId);
  227.         return $rep;
  228.     }
  229.  
  230.     /**
  231.      * overload this method if you wan to do additionnal things on the response and on the list template
  232.      * during the index action.
  233.      * @param jResponseHtml $resp the response
  234.      * @param jtpl $tpl the template to display the record list
  235.      */
  236.     protected function _index($resp$tpl{
  237.  
  238.     }
  239.  
  240.     /**
  241.      * overload this method if you wan to do additionnal conditions to the index's select
  242.      * during the index action.
  243.      * @param jDaoConditions $cond the conditions
  244.      */
  245.     protected function _indexSetConditions($cond{
  246.         foreach ($this->propertiesForRecordsOrder as $p=>$order{
  247.             $cond->addItemOrder($p$order);
  248.         }
  249.     }
  250.  
  251.     /**
  252.      * prepare a form to create a record.
  253.      */
  254.     function precreate({
  255.         // first, we cannot create the form directly in the create action
  256.         // because if the forms already exists, we wouldn't show
  257.         // errors or already filled field. see ticket #292
  258.         $form jForms::create($this->form);
  259.         $this->_preCreate($form);
  260.         $rep $this->getResponse('redirect');
  261.         $rep->action $this->_getAction('create');
  262.         $rep->params[$this->spkName$this->param($this->spkName);
  263.         return $rep;
  264.     }
  265.  
  266.     /**
  267.      * overload this method if you want to do additionnal during the precreate action
  268.      * @param jFormsBase $form the form
  269.      */
  270.     protected function _preCreate($form{
  271.  
  272.     }
  273.  
  274.     /**
  275.      * display a form to create a record
  276.      */
  277.     function create(){
  278.         $form jForms::get($this->form);
  279.         if($form == null){
  280.             $form jForms::create($this->form);
  281.         }
  282.         $rep $this->_getResponse();
  283.  
  284.         $tpl new jTpl();
  285.         $tpl->assign('dpk'null);
  286.         $tpl->assign('dpkName'$this->dpkName);
  287.         $tpl->assign('spkName'$this->spkName);
  288.         $tpl->assign('spk'$this->param($this->spkName));
  289.         $tpl->assign('form',$form);
  290.         $tpl->assign('submitAction'$this->_getAction('savecreate'));
  291.         $tpl->assign('listAction' $this->_getAction('index'));
  292.         $this->_create($form$rep$tpl);
  293.         $rep->body->assign($this->templateAssign$tpl->fetch($this->editTemplate));
  294.         return $rep;
  295.     }
  296.  
  297.     /**
  298.      * overload this method if you wan to do additionnal things on the response and on the edit template
  299.      * during the create action.
  300.      * @param jFormsBase $form the form
  301.      * @param jResponseHtml $resp the response
  302.      * @param jtpl $tpl the template to display the edit form
  303.      */
  304.     protected function _create($form$resp$tpl{
  305.  
  306.     }
  307.  
  308.     /**
  309.      * save data of a form in a new record
  310.      */
  311.     function savecreate(){
  312.         $form jForms::fill($this->form);
  313.         $spk $this->param($this->spkName);
  314.         $rep $this->getResponse('redirect');
  315.         $rep->params[$this->spkName$spk;
  316.  
  317.         if($form == null){
  318.             $rep->action $this->_getAction('index');
  319.             return $rep;
  320.         }
  321.  
  322.         if($form->check(&& $this->_checkData($spk$formfalse)){
  323.             $results $form->prepareDaoFromControls($this->daonull$this->dbProfile);
  324.             extract($resultsEXTR_PREFIX_ALL"form");
  325.             $form_daorec->{$this->spkName$spk;
  326.             if(!$this->_isPkAutoIncrement($form_dao)) {
  327.                 $form_daorec->{$this->dpkName$this->param($this->dpkName);
  328.             }
  329.             $this->_beforeSaveCreate($form$form_daorec);
  330.             $form_dao->insert($form_daorec);
  331.             $id $form_daorec->getPk();
  332.  
  333.             $rep->action $this->_getAction('view');
  334.             $this->_afterCreate($form$id$rep);
  335.             if ($this->uploadsDirectory !== false)
  336.                 $form->saveAllFiles($this->uploadsDirectory);
  337.             jForms::destroy($this->form);
  338.  
  339.             $pknames $form_dao->getPrimaryKeyNames();
  340.             if($pknames[0== $this->spkName{
  341.                 $rep->params[$this->spkName$id[0];
  342.                 $rep->params[$this->dpkName$id[1];
  343.             }
  344.             else {
  345.                 $rep->params[$this->spkName$id[1];
  346.                 $rep->params[$this->dpkName$id[0];
  347.             }
  348.             return $rep;
  349.         else {
  350.             $rep->action $this->_getAction('create');
  351.             return $rep;
  352.         }
  353.     }
  354.  
  355.     /**
  356.      * overload this method if you wan to do additionnal things on the dao generated by the
  357.      * jFormsBase::prepareDaoFromControls method
  358.      * @param jFormsBase $form the form
  359.      * @param jDaoRecordBase $form_daorec 
  360.      */
  361.     protected function _beforeSaveCreate($form$form_daorec{
  362.  
  363.     }
  364.  
  365.     /**
  366.      * overload this method if you wan to do additionnal things after the creation of
  367.      * a record. For example, you can handle here the uploaded files. If you do
  368.      * such handling, set the uploadsDirectory property to false, to prevent
  369.      * the default behavior on uploaded files in the controller.
  370.      * @param jFormsBase $form the form object
  371.      * @param mixed $id the new id of the inserted record
  372.      * @param jResponseHtml $resp the response
  373.      */
  374.     protected function _afterCreate($form$id$resp{
  375.  
  376.     }
  377.  
  378.     /**
  379.      * prepare a form in order to edit an existing record, and redirect to the editupdate action
  380.      */
  381.     function preupdate(){
  382.         $spk $this->param($this->spkName);
  383.         $dpk $this->param($this->dpkName);
  384.  
  385.         $rep $this->getResponse('redirect');
  386.         $rep->params[$this->spkName$spk;
  387.  
  388.         if$dpk === null ){
  389.             $rep->action $this->_getAction('index');
  390.             return $rep;
  391.         }
  392.  
  393.         $id $this->_getPk($spk$dpk);
  394.         $form jForms::create($this->form$id);
  395.  
  396.         try {
  397.             $form->initFromDao($this->dao$id$this->dbProfile);
  398.         }catch(Exception $e){
  399.             $rep->action $this->_getAction('index');
  400.             return $rep;
  401.         }
  402.  
  403.         $this->_preUpdate($form);
  404.  
  405.         $rep->params[$this->dpkName$dpk;
  406.         $rep->action $this->_getAction('editupdate');
  407.         return $rep;
  408.     }
  409.  
  410.     /**
  411.      * overload this method if you want to do additionnal things during preupdate action
  412.      * @param jFormsBase $form the form object
  413.      */
  414.     protected function _preUpdate($form{
  415.  
  416.     }
  417.  
  418.     /**
  419.      * displays a forms to edit an existing record. The form should be
  420.      * prepared with the preupdate before, so a refresh of the page
  421.      * won't cause a reset of the form
  422.      */
  423.     function editupdate(){
  424.         $spk $this->param($this->spkName);
  425.         $dpk $this->param($this->dpkName);
  426.  
  427.         $id $this->_getPk($spk$dpk);
  428.         $form jForms::get($this->form$id);
  429.         if$form === null || $dpk === null){
  430.             $rep $this->getResponse('redirect');
  431.             $rep->params[$this->spkName$spk;
  432.             $rep->action $this->_getAction('index');
  433.             return $rep;
  434.         }
  435.         $rep $this->_getResponse();
  436.  
  437.         $tpl new jTpl();
  438.         $tpl->assign('dpk'$dpk);
  439.         $tpl->assign('dpkName'$this->dpkName);
  440.         $tpl->assign('spkName'$this->spkName);
  441.         $tpl->assign('spk'$spk);
  442.         $tpl->assign('form',$form);
  443.         $tpl->assign('submitAction'$this->_getAction('saveupdate'));
  444.         $tpl->assign('listAction' $this->_getAction('index'));
  445.         $tpl->assign('viewAction' $this->_getAction('view'));
  446.         $this->_editUpdate($form$rep$tpl);
  447.         $rep->body->assign($this->templateAssign$tpl->fetch($this->editTemplate));
  448.         return $rep;
  449.     }
  450.  
  451.     /**
  452.      * overload this method if you wan to do additionnal things on the response and on the edit template
  453.      * during the editupdate action.
  454.      * @param jFormsBase $form the form
  455.      * @param jResponseHtml $resp the response
  456.      * @param jtpl $tpl the template to display the edit form
  457.      */
  458.     protected function _editUpdate($form$resp$tpl{
  459.  
  460.     }
  461.  
  462.     /**
  463.      * save data of a form in a new record
  464.      */
  465.     function saveupdate(){
  466.         $spk $this->param($this->spkName);
  467.         $dpk $this->param($this->dpkName);
  468.  
  469.         $rep $this->getResponse('redirect');
  470.         $rep->params[$this->spkName$spk;
  471.  
  472.         $id $this->_getPk($spk$dpk);
  473.         $form jForms::fill($this->form$id);
  474.         if$form === null || $dpk === null){
  475.             $rep->action $this->_getAction('index');
  476.             return $rep;
  477.         }
  478.  
  479.         $rep->params[$this->dpkName$dpk;
  480.  
  481.         if($form->check(&& $this->_checkData($spk$formtrue)){
  482.             $results $form->prepareDaoFromControls($this->dao$id$this->dbProfile);
  483.             extract($resultsEXTR_PREFIX_ALL"form");
  484.             $this->_beforeSaveUpdate($form$form_daorec$id);
  485.             $form_dao->update($form_daorec);
  486.             $rep->action $this->_getAction('view');
  487.             $this->_afterUpdate($form$id$rep);
  488.             if ($this->uploadsDirectory !== false)
  489.                 $form->saveAllFiles($this->uploadsDirectory);
  490.             jForms::destroy($this->form$id);
  491.         else {
  492.             $rep->action $this->_getAction('editupdate');
  493.         }
  494.         return $rep;
  495.     }
  496.  
  497.     /**
  498.      * overload this method if you wan to do additionnal things on the dao generated by the
  499.      * jFormsBase::prepareDaoFromControls method
  500.      * @param jFormsBase $form the form
  501.      * @param jDaoRecordBase $form_daorec 
  502.      * @param mixed $id the new id of the updated record
  503.      */
  504.     protected function _beforeSaveUpdate($form$form_daorec$id{
  505.  
  506.     }
  507.  
  508.     /**
  509.      * overload this method if you wan to do additionnal things after the update of
  510.      * a record. For example, you can handle here the uploaded files. If you do
  511.      * such handling, set the uploadsDirectory property to false, to prevent
  512.      * the default behavior on uploaded files in the controller.
  513.      * @param jFormsBase $form the form object
  514.      * @param mixed $id the new id of the updated record
  515.      * @param jResponseHtml $resp the response
  516.      */
  517.     protected function _afterUpdate($form$id$resp{
  518.  
  519.     }
  520.  
  521.     /**
  522.      * displays a record
  523.      */
  524.     function view(){
  525.  
  526.         $spk $this->param($this->spkName);
  527.         $dpk $this->param($this->dpkName);
  528.  
  529.         if$dpk === null ){
  530.             $rep $this->getResponse('redirect');
  531.             $rep->action $this->_getAction('index');
  532.             $rep->params[$this->spkName$spk;
  533.             return $rep;
  534.         }
  535.         $rep $this->_getResponse();
  536.  
  537.         $id $this->_getPk($spk$dpk);
  538.  
  539.         // we're using a form to display a record, to have the portunity to have
  540.         // labels with each values. We need also him to load easily values of some
  541.         // of controls with initControlFromDao (to use in _view method).
  542.         $form jForms::create($this->form$id);
  543.         $form->initFromDao($this->dao$id$this->dbProfile);
  544.  
  545.         $tpl new jTpl();
  546.         $tpl->assign('dpk'$dpk);
  547.         $tpl->assign('dpkName'$this->dpkName);
  548.         $tpl->assign('spkName'$this->spkName);
  549.         $tpl->assign('spk'$spk);
  550.         $tpl->assign('form',$form);
  551.         $tpl->assign('editAction' $this->_getAction('preupdate'));
  552.         $tpl->assign('deleteAction' $this->_getAction('delete'));
  553.         $tpl->assign('listAction' $this->_getAction('index'));
  554.         $this->_view($form$rep$tpl);
  555.         $rep->body->assign($this->templateAssign$tpl->fetch($this->viewTemplate));
  556.         return $rep;
  557.     }
  558.  
  559.     /**
  560.      * overload this method if you want to do additionnal things on the response and on the view template
  561.      * during the view action.
  562.      * @param jFormsBase $form the form
  563.      * @param jResponseHtml $resp the response
  564.      * @param jtpl $tpl the template to display the form content
  565.      */
  566.     protected function _view($form$resp$tpl{
  567.  
  568.     }
  569.  
  570.     /**
  571.      * delete a record
  572.      */
  573.     function delete(){
  574.         $spk $this->param($this->spkName);
  575.         $dpk $this->param($this->dpkName);
  576.  
  577.         $rep $this->getResponse('redirect');
  578.         $rep->action $this->_getAction('index');
  579.         $rep->params[$this->spkName$spk;
  580.  
  581.         $dao jDao::get($this->dao$this->dbProfile);
  582.         $id $this->_getPk($spk$dpk$dao);
  583.         if$dpk !== null && $this->_delete($spk$dpk$rep) ){
  584.             $dao->delete($id);
  585.         }
  586.         return $rep;
  587.     }
  588.  
  589.     /**
  590.      * overload this method if you want to do additionnal things before the deletion of a record
  591.      * @param mixed $spk the static value of the primary key of the record to delete
  592.      * @param mixed $dpk the dynamic value of the primary key of the record to delete
  593.      * @return boolean true if the record can be deleted
  594.      * @param jResponseHtml $resp the response
  595.      */
  596.     protected function _delete($spk$dpk$resp{
  597.         return true;
  598.     }
  599.  
  600. }

Documentation generated on Thu, 19 Sep 2013 00:02:56 +0200 by phpDocumentor 1.4.3