Files
@ a45f0dabc59c
Branch filter:
Location: hot67beta/libraries/joomla/application/component/controller.php
a45f0dabc59c
16.9 KiB
text/x-php
mneh
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 | <?php
/**
* @version $Id: controller.php 10910 2008-09-05 19:41:09Z willebil $
* @package Joomla.Framework
* @subpackage Application
* @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
// Check to ensure this file is within the rest of the framework
defined('JPATH_BASE') or die();
/**
* Base class for a Joomla Controller
*
* Controller (controllers are where you put all the actual code) Provides basic
* functionality, such as rendering views (aka displaying templates).
*
* @abstract
* @package Joomla.Framework
* @subpackage Application
* @since 1.5
*/
class JController extends JObject
{
/**
* The base path of the controller
*
* @var string
* @access protected
*/
var $_basePath = null;
/**
* The name of the controller
*
* @var array
* @access protected
*/
var $_name = null;
/**
* Array of class methods
*
* @var array
* @access protected
*/
var $_methods = null;
/**
* Array of class methods to call for a given task.
*
* @var array
* @access protected
*/
var $_taskMap = null;
/**
* Current or most recent task to be performed.
*
* @var string
* @access protected
*/
var $_task = null;
/**
* The mapped task that was performed.
*
* @var string
* @access protected
*/
var $_doTask = null;
/**
* The set of search directories for resources (views).
*
* @var array
* @access protected
*/
var $_path = array(
'view' => array()
);
/**
* URL for redirection.
*
* @var string
* @access protected
*/
var $_redirect = null;
/**
* Redirect message.
*
* @var string
* @access protected
*/
var $_message = null;
/**
* Redirect message type.
*
* @var string
* @access protected
*/
var $_messageType = null;
/**
* ACO Section for the controller.
*
* @var string
* @access protected
*/
var $_acoSection = null;
/**
* Default ACO Section value for the controller.
*
* @var string
* @access protected
*/
var $_acoSectionValue = null;
/**
* Constructor.
*
* @access protected
* @param array An optional associative array of configuration settings.
* Recognized key values include 'name', 'default_task', 'model_path', and
* 'view_path' (this list is not meant to be comprehensive).
* @since 1.5
*/
function __construct( $config = array() )
{
//Initialize private variables
$this->_redirect = null;
$this->_message = null;
$this->_messageType = 'message';
$this->_taskMap = array();
$this->_methods = array();
$this->_data = array();
// Get the methods only for the final controller class
$thisMethods = get_class_methods( get_class( $this ) );
$baseMethods = get_class_methods( 'JController' );
$methods = array_diff( $thisMethods, $baseMethods );
// Add default display method
$methods[] = 'display';
// Iterate through methods and map tasks
foreach ( $methods as $method )
{
if ( substr( $method, 0, 1 ) != '_' ) {
$this->_methods[] = strtolower( $method );
// auto register public methods as tasks
$this->_taskMap[strtolower( $method )] = $method;
}
}
//set the view name
if (empty( $this->_name ))
{
if (array_key_exists('name', $config)) {
$this->_name = $config['name'];
} else {
$this->_name = $this->getName();
}
}
// Set a base path for use by the controller
if (array_key_exists('base_path', $config)) {
$this->_basePath = $config['base_path'];
} else {
$this->_basePath = JPATH_COMPONENT;
}
// If the default task is set, register it as such
if ( array_key_exists( 'default_task', $config ) ) {
$this->registerDefaultTask( $config['default_task'] );
} else {
$this->registerDefaultTask( 'display' );
}
// set the default model search path
if ( array_key_exists( 'model_path', $config ) ) {
// user-defined dirs
$this->addModelPath($config['model_path']);
} else {
$this->addModelPath($this->_basePath.DS.'models');
}
// set the default view search path
if ( array_key_exists( 'view_path', $config ) ) {
// user-defined dirs
$this->_setPath( 'view', $config['view_path'] );
} else {
$this->_setPath( 'view', $this->_basePath.DS.'views' );
}
}
/**
* Execute a task by triggering a method in the derived class.
*
* @access public
* @param string The task to perform. If no matching task is found, the
* '__default' task is executed, if defined.
* @return mixed|false The value returned by the called method, false in
* error case.
* @since 1.5
*/
function execute( $task )
{
$this->_task = $task;
$task = strtolower( $task );
if (isset( $this->_taskMap[$task] )) {
$doTask = $this->_taskMap[$task];
} elseif (isset( $this->_taskMap['__default'] )) {
$doTask = $this->_taskMap['__default'];
} else {
return JError::raiseError( 404, JText::_('Task ['.$task.'] not found') );
}
// Record the actual task being fired
$this->_doTask = $doTask;
// Make sure we have access
if ($this->authorize( $doTask ))
{
$retval = $this->$doTask();
return $retval;
}
else
{
return JError::raiseError( 403, JText::_('Access Forbidden') );
}
}
/**
* Authorization check
*
* @access public
* @param string $task The ACO Section Value to check access on
* @return boolean True if authorized
* @since 1.5
*/
function authorize( $task )
{
// Only do access check if the aco section is set
if ($this->_acoSection)
{
// If we have a section value set that trumps the passed task ???
if ($this->_acoSectionValue) {
// We have one, so set it and lets do the check
$task = $this->_acoSectionValue;
}
// Get the JUser object for the current user and return the authorization boolean
$user = & JFactory::getUser();
return $user->authorize( $this->_acoSection, $task );
}
else
{
// Nothing set, nothing to check... so obviously its ok :)
return true;
}
}
/**
* Typical view method for MVC based architecture
*
* This function is provide as a default implementation, in most cases
* you will need to override it in your own controllers.
*
* @access public
* @param string $cachable If true, the view output will be cached
* @since 1.5
*/
function display($cachable=false)
{
$document =& JFactory::getDocument();
$viewType = $document->getType();
$viewName = JRequest::getCmd( 'view', $this->getName() );
$viewLayout = JRequest::getCmd( 'layout', 'default' );
$view = & $this->getView( $viewName, $viewType, '', array( 'base_path'=>$this->_basePath));
// Get/Create the model
if ($model = & $this->getModel($viewName)) {
// Push the model into the view (as default)
$view->setModel($model, true);
}
// Set the layout
$view->setLayout($viewLayout);
// Display the view
if ($cachable && $viewType != 'feed') {
global $option;
$cache =& JFactory::getCache($option, 'view');
$cache->get($view, 'display');
} else {
$view->display();
}
}
/**
* Redirects the browser or returns false if no redirect is set.
*
* @access public
* @return boolean False if no redirect exists.
* @since 1.5
*/
function redirect()
{
if ($this->_redirect) {
global $mainframe;
$mainframe->redirect( $this->_redirect, $this->_message, $this->_messageType );
}
return false;
}
/**
* Method to get a model object, loading it if required.
*
* @access public
* @param string The model name. Optional.
* @param string The class prefix. Optional.
* @param array Configuration array for model. Optional.
* @return object The model.
* @since 1.5
*/
function &getModel( $name = '', $prefix = '', $config = array() )
{
if ( empty( $name ) ) {
$name = $this->getName();
}
if ( empty( $prefix ) ) {
$prefix = $this->getName() . 'Model';
}
if ( $model = & $this->_createModel( $name, $prefix, $config ) )
{
// task is a reserved state
$model->setState( 'task', $this->_task );
// Lets get the application object and set menu information if its available
$app = &JFactory::getApplication();
$menu = &$app->getMenu();
if (is_object( $menu ))
{
if ($item = $menu->getActive())
{
$params =& $menu->getParams($item->id);
// Set Default State Data
$model->setState( 'parameters.menu', $params );
}
}
}
return $model;
}
/**
* Adds to the stack of model paths in LIFO order.
*
* @static
* @param string|array The directory (string), or list of directories
* (array) to add.
* @return void
*/
function addModelPath( $path )
{
jimport('joomla.application.component.model');
JModel::addIncludePath($path);
}
/**
* Gets the available tasks in the controller.
* @access public
* @return array Array[i] of task names.
* @since 1.5
*/
function getTasks()
{
return $this->_methods;
}
/**
* Get the last task that is or was to be performed.
*
* @access public
* @return string The task that was or is being performed.
* @since 1.5
*/
function getTask()
{
return $this->_task;
}
/**
* Method to get the controller name
*
* The dispatcher name by default parsed using the classname, or it can be set
* by passing a $config['name'] in the class constructor
*
* @access public
* @return string The name of the dispatcher
* @since 1.5
*/
function getName()
{
$name = $this->_name;
if (empty( $name ))
{
$r = null;
if ( !preg_match( '/(.*)Controller/i', get_class( $this ), $r ) ) {
JError::raiseError(500, "JController::getName() : Cannot get or parse class name.");
}
$name = strtolower( $r[1] );
}
return $name;
}
/**
* Method to get a reference to the current view and load it if necessary.
*
* @access public
* @param string The view name. Optional, defaults to the controller
* name.
* @param string The view type. Optional.
* @param string The class prefix. Optional.
* @param array Configuration array for view. Optional.
* @return object Reference to the view or an error.
* @since 1.5
*/
function &getView( $name = '', $type = '', $prefix = '', $config = array() )
{
static $views;
if ( !isset( $views ) ) {
$views = array();
}
if ( empty( $name ) ) {
$name = $this->getName();
}
if ( empty( $prefix ) ) {
$prefix = $this->getName() . 'View';
}
if ( empty( $views[$name] ) )
{
if ( $view = & $this->_createView( $name, $prefix, $type, $config ) ) {
$views[$name] = & $view;
} else {
$result = JError::raiseError(
500, JText::_( 'View not found [name, type, prefix]:' )
. ' ' . $name . ',' . $type . ',' . $prefix
);
return $result;
}
}
return $views[$name];
}
/**
* Add one or more view paths to the controller's stack, in LIFO order.
*
* @static
* @param string|array The directory (string), or list of directories
* (array) to add.
* @return void
*/
function addViewPath( $path )
{
$this->_addPath( 'view', $path );
}
/**
* Register (map) a task to a method in the class.
*
* @access public
* @param string The task.
* @param string The name of the method in the derived class to perform
* for this task.
* @return void
* @since 1.5
*/
function registerTask( $task, $method )
{
if ( in_array( strtolower( $method ), $this->_methods ) ) {
$this->_taskMap[strtolower( $task )] = $method;
}
}
/**
* Register the default task to perform if a mapping is not found.
*
* @access public
* @param string The name of the method in the derived class to perform if
* a named task is not found.
* @return void
* @since 1.5
*/
function registerDefaultTask( $method )
{
$this->registerTask( '__default', $method );
}
/**
* Sets the internal message that is passed with a redirect
*
* @access public
* @param string The message
* @return string Previous message
* @since 1.5
*/
function setMessage( $text )
{
$previous = $this->_message;
$this->_message = $text;
return $previous;
}
/**
* Set a URL for browser redirection.
*
* @access public
* @param string URL to redirect to.
* @param string Message to display on redirect. Optional, defaults to
* value set internally by controller, if any.
* @param string Message type. Optional, defaults to 'message'.
* @return void
* @since 1.5
*/
function setRedirect( $url, $msg = null, $type = 'message' )
{
$this->_redirect = $url;
if ($msg !== null) {
// controller may have set this directly
$this->_message = $msg;
}
$this->_messageType = $type;
}
/**
* Sets the access control levels.
*
* @access public
* @param string The ACO section (eg, the component).
* @param string The ACO section value (if using a constant value).
* @return void
* @since 1.5
*/
function setAccessControl( $section, $value = null )
{
$this->_acoSection = $section;
$this->_acoSectionValue = $value;
}
/**
* Method to load and return a model object.
*
* @access private
* @param string The name of the model.
* @param string Optional model prefix.
* @param array Configuration array for the model. Optional.
* @return mixed Model object on success; otherwise null
* failure.
* @since 1.5
*/
function &_createModel( $name, $prefix = '', $config = array())
{
$result = null;
// Clean the model name
$modelName = preg_replace( '/[^A-Z0-9_]/i', '', $name );
$classPrefix = preg_replace( '/[^A-Z0-9_]/i', '', $prefix );
$result =& JModel::getInstance($modelName, $classPrefix, $config);
return $result;
}
/**
* Method to load and return a view object. This method first looks in the
* current template directory for a match, and failing that uses a default
* set path to load the view class file.
*
* Note the "name, prefix, type" order of parameters, which differs from the
* "name, type, prefix" order used in related public methods.
*
* @access private
* @param string The name of the view.
* @param string Optional prefix for the view class name.
* @param string The type of view.
* @param array Configuration array for the view. Optional.
* @return mixed View object on success; null or error result on failure.
* @since 1.5
*/
function &_createView( $name, $prefix = '', $type = '', $config = array() )
{
$result = null;
// Clean the view name
$viewName = preg_replace( '/[^A-Z0-9_]/i', '', $name );
$classPrefix = preg_replace( '/[^A-Z0-9_]/i', '', $prefix );
$viewType = preg_replace( '/[^A-Z0-9_]/i', '', $type );
// Build the view class name
$viewClass = $classPrefix . $viewName;
if ( !class_exists( $viewClass ) )
{
jimport( 'joomla.filesystem.path' );
$path = JPath::find(
$this->_path['view'],
$this->_createFileName( 'view', array( 'name' => $viewName, 'type' => $viewType) )
);
if ($path) {
require_once $path;
if ( !class_exists( $viewClass ) ) {
$result = JError::raiseError(
500, JText::_( 'View class not found [class, file]:' )
. ' ' . $viewClass . ', ' . $path );
return $result;
}
} else {
return $result;
}
}
$result = new $viewClass($config);
return $result;
}
/**
* Sets an entire array of search paths for resources.
*
* @access protected
* @param string The type of path to set, typically 'view' or 'model'.
* @param string|array The new set of search paths. If null or false,
* resets to the current directory only.
*/
function _setPath( $type, $path )
{
// clear out the prior search dirs
$this->_path[$type] = array();
// actually add the user-specified directories
$this->_addPath( $type, $path );
}
/**
* Adds to the search path for templates and resources.
*
* @access protected
* @param string The path type (e.g. 'model', 'view'.
* @param string|array The directory or stream to search.
* @return void
*/
function _addPath( $type, $path )
{
// just force path to array
settype( $path, 'array' );
// loop through the path directories
foreach ( $path as $dir )
{
// no surrounding spaces allowed!
$dir = trim( $dir );
// add trailing separators as needed
if ( substr( $dir, -1 ) != DIRECTORY_SEPARATOR ) {
// directory
$dir .= DIRECTORY_SEPARATOR;
}
// add to the top of the search dirs
array_unshift( $this->_path[$type], $dir );
}
}
/**
* Create the filename for a resource.
*
* @access private
* @param string The resource type to create the filename for.
* @param array An associative array of filename information. Optional.
* @return string The filename.
* @since 1.5
*/
function _createFileName( $type, $parts = array() )
{
$filename = '';
switch ( $type )
{
case 'view':
if ( !empty( $parts['type'] ) ) {
$parts['type'] = '.'.$parts['type'];
}
$filename = strtolower($parts['name']).DS.'view'.$parts['type'].'.php';
break;
}
return $filename;
}
}
|