Source for file jCmdLineRequest.class.php

Documentation is available at jCmdLineRequest.class.php

  1. <?php
  2. /**
  3. @package     jelix
  4. @subpackage  core_request
  5. @author      Laurent Jouanneau
  6. @contributor Loic Mathaud
  7. @contributor Thibault PIRONT < nuKs >
  8. @contributor Thiriot Christophe
  9. @copyright   2005-2008 Laurent Jouanneau, 2006-2007 Loic Mathaud
  10. @copyright   2007 Thibault PIRONT
  11. @copyright   2008 Thiriot Christophe
  12. @link        http://www.jelix.org
  13. @licence     GNU Lesser General Public Licence see LICENCE file or http://www.gnu.org/licenses/lgpl.html
  14. */
  15.  
  16. /**
  17.  * a request object for scripts used in a command line
  18.  * @package     jelix
  19.  * @subpackage  core_request
  20.  */
  21. class jCmdLineRequest extends jRequest {
  22.  
  23.     public $type = 'cmdline';
  24.  
  25.     public $defaultResponseType = 'cmdline';
  26.  
  27.     protected $onlyDefaultAction = false;
  28.     
  29.     /**
  30.      * If you want to have a CLI script dedicated to the default action,
  31.      * tell it by given true, so you haven't to indicate the action
  32.      * on the command line. It means of course you couldn't execute any other
  33.      * actions with this script.
  34.      * @param boolean $onlyDefaultAction 
  35.      */
  36.     function __construct($onlyDefaultAction false){
  37.         $this->onlyDefaultAction = $onlyDefaultAction;
  38.     }
  39.  
  40.     public function isAllowedResponse($respclass){
  41.         return ('jResponseCmdline' == $respclass);
  42.     }
  43.  
  44.     protected function _initUrlData()
  45.         global $gJConfig
  46.         $this->urlScriptPath = '/'
  47.         $this->urlScriptName = $this->urlScript = $_SERVER['SCRIPT_NAME']
  48.         $this->urlPathInfo = ''
  49.     }
  50.  
  51.     protected function _initParams(){
  52.         global $gJConfig;
  53.  
  54.         $argv $_SERVER['argv'];
  55.         $scriptName array_shift($argv)// shift the script name
  56.  
  57.         if ($this->onlyDefaultAction{
  58.             $mod $gJConfig->startModule;
  59.             $act $gJConfig->startAction;
  60.             if ($_SERVER['argc'&& $argv[0== 'help'{
  61.                 $mod 'jelix';
  62.                 $act 'help:index';
  63.                 $argv[0$gJConfig->startModule.'~'.$gJConfig->startAction;
  64.             }
  65.         }
  66.         else {
  67.             // note: we cannot use jSelectorAct to parse the action
  68.             // because in the opt edition, jSelectorAct needs an initialized jCoordinator
  69.             // and this is not the case here. see bug #725.
  70.     
  71.             if ($_SERVER['argc'== 1{
  72.                 $mod $gJConfig->startModule;
  73.                 $act $gJConfig->startAction;
  74.             else {
  75.                 $argsel array_shift($argv)// get the module~action selector
  76.                 if ($argsel == 'help'{
  77.                     $mod 'jelix';
  78.                     $act 'help:index';
  79.                 }else if (($pos strpos($argsel,'~')) !== false{
  80.                     $mod substr($argsel,0,$pos);
  81.                     $act substr($argsel,$pos+1);
  82.                 }else {
  83.                     $mod$gJConfig->startModule;
  84.                     $act$argsel;
  85.                 }
  86.             }
  87.         }
  88.         $this->params = $argv;
  89.         $this->params['module'$mod;
  90.         $this->params['action'$act;
  91.     }
  92. }

Documentation generated on Thu, 22 Mar 2012 22:14:09 +0100 by phpDocumentor 1.4.3