Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
5855b7c1
Commit
5855b7c1
authored
Jan 28, 2013
by
Qiang Xue
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of git.yiisoft.com:yii2
parents
7ff5d025
3fa22483
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
461 additions
and
469 deletions
+461
-469
Component.md
docs/api/base/Component.md
+10
-9
YiiBase.php
framework/YiiBase.php
+4
-4
Application.php
framework/base/Application.php
+68
-119
Controller.php
framework/base/Controller.php
+157
-134
InvalidRequestException.php
framework/base/InvalidRequestException.php
+21
-0
InvalidRouteException.php
framework/base/InvalidRouteException.php
+3
-3
Module.php
framework/base/Module.php
+113
-89
View.php
framework/base/View.php
+1
-1
Widget.php
framework/base/Widget.php
+1
-1
Application.php
framework/console/Application.php
+4
-4
HelpController.php
framework/console/controllers/HelpController.php
+2
-2
DbTarget.php
framework/logging/DbTarget.php
+5
-4
EmailTarget.php
framework/logging/EmailTarget.php
+5
-4
FileTarget.php
framework/logging/FileTarget.php
+17
-8
Logger.php
framework/logging/Logger.php
+13
-20
Router.php
framework/logging/Router.php
+8
-13
Target.php
framework/logging/Target.php
+13
-52
FileHelper.php
framework/util/FileHelper.php
+3
-2
StringHelper.php
framework/util/StringHelper.php
+13
-0
No files found.
docs/api/base/Component.md
View file @
5855b7c1
...
@@ -3,15 +3,15 @@ its parent class [[Object]].
...
@@ -3,15 +3,15 @@ its parent class [[Object]].
Event is a way to "inject" custom code into existing code at certain places. For example, a comment object can trigger
Event is a way to "inject" custom code into existing code at certain places. For example, a comment object can trigger
an "add" event when the user adds a comment. We can write custom code and attach it to this event so that when the event
an "add" event when the user adds a comment. We can write custom code and attach it to this event so that when the event
is triggered, our custom code will be executed.
is triggered
(i.e. comment will be added)
, our custom code will be executed.
An event is identified by a name
(unique within the class it is defined)
. Event names are
*case-sensitive*
.
An event is identified by a name
that should be unique within the class it is defined at
. Event names are
*case-sensitive*
.
An event can be attached with one or multiple PHP callbacks, called
*event handlers*
. One
can call
[
[trigger()
]
] to
One or multiple PHP callbacks, called
*event handlers*
, could be attached to event. You
can call
[
[trigger()
]
] to
raise an event. When an event is raised, the
attached event handlers will be invoked automatically in the order they a
re
raise an event. When an event is raised, the
event handlers will be invoked automatically in the order they we
re
attached
to the event
.
attached.
To attach an event handler to an event, call
[
[on()
]
]
. For example,
To attach an event handler to an event, call
[
[on()
]
]
:
~~~
~~~
$comment->on('add', function($event) {
$comment->on('add', function($event) {
...
@@ -19,7 +19,8 @@ $comment->on('add', function($event) {
...
@@ -19,7 +19,8 @@ $comment->on('add', function($event) {
});
});
~~~
~~~
In the above, we attach an anonymous function to the "add" event of the comment. Valid event handlers include:
In the above, we attach an anonymous function to the "add" event of the comment.
Valid event handlers include:
-
anonymous function:
`function($event) { ... }`
-
anonymous function:
`function($event) { ... }`
-
object method:
`array($object, 'handleAdd')`
-
object method:
`array($object, 'handleAdd')`
...
@@ -34,7 +35,7 @@ function foo($event)
...
@@ -34,7 +35,7 @@ function foo($event)
where
`$event`
is an
[
[Event
]
] object which includes parameters associated with the event.
where
`$event`
is an
[
[Event
]
] object which includes parameters associated with the event.
One
can also attach an event handler to an event when configuring a component with a configuration array. The syntax is
You
can also attach an event handler to an event when configuring a component with a configuration array. The syntax is
like the following:
like the following:
~~~
~~~
...
@@ -45,7 +46,7 @@ array(
...
@@ -45,7 +46,7 @@ array(
where
`on add`
stands for attaching an event to the
`add`
event.
where
`on add`
stands for attaching an event to the
`add`
event.
One
can call
[
[getEventHandlers()
]
] to retrieve all event handlers that are attached to a specified event. Because this
You
can call
[
[getEventHandlers()
]
] to retrieve all event handlers that are attached to a specified event. Because this
method returns a
[
[Vector
]
] object, we can manipulate this object to attach/detach event handlers, or adjust their
method returns a
[
[Vector
]
] object, we can manipulate this object to attach/detach event handlers, or adjust their
relative orders.
relative orders.
...
...
framework/YiiBase.php
View file @
5855b7c1
...
@@ -121,8 +121,8 @@ class YiiBase
...
@@ -121,8 +121,8 @@ class YiiBase
*
*
* To import a class or a directory, one can use either path alias or class name (can be namespaced):
* To import a class or a directory, one can use either path alias or class name (can be namespaced):
*
*
* - `@app/components/GoogleMap`: importing the `GoogleMap` class with a path alias;
* - `@app
lication
/components/GoogleMap`: importing the `GoogleMap` class with a path alias;
* - `@app/components/*`: importing the whole `components` directory with a path alias;
* - `@app
lication
/components/*`: importing the whole `components` directory with a path alias;
* - `GoogleMap`: importing the `GoogleMap` class with a class name. [[autoload()]] will be used
* - `GoogleMap`: importing the `GoogleMap` class with a class name. [[autoload()]] will be used
* when this class is used for the first time.
* when this class is used for the first time.
*
*
...
@@ -322,12 +322,12 @@ class YiiBase
...
@@ -322,12 +322,12 @@ class YiiBase
* the class. For example,
* the class. For example,
*
*
* - `\app\components\GoogleMap`: fully-qualified namespaced class.
* - `\app\components\GoogleMap`: fully-qualified namespaced class.
* - `@app/components/GoogleMap`: an alias
* - `@app
lication
/components/GoogleMap`: an alias
*
*
* Below are some usage examples:
* Below are some usage examples:
*
*
* ~~~
* ~~~
* $object = \Yii::createObject('@app/components/GoogleMap');
* $object = \Yii::createObject('@app
lication
/components/GoogleMap');
* $object = \Yii::createObject(array(
* $object = \Yii::createObject(array(
* 'class' => '\app\components\GoogleMap',
* 'class' => '\app\components\GoogleMap',
* 'apiKey' => 'xyz',
* 'apiKey' => 'xyz',
...
...
framework/base/Application.php
View file @
5855b7c1
...
@@ -9,6 +9,8 @@
...
@@ -9,6 +9,8 @@
namespace
yii\base
;
namespace
yii\base
;
use
Yii
;
use
yii\util\FileHelper
;
use
yii\base\InvalidCallException
;
use
yii\base\InvalidCallException
;
/**
/**
...
@@ -35,7 +37,7 @@ use yii\base\InvalidCallException;
...
@@ -35,7 +37,7 @@ use yii\base\InvalidCallException;
* Yii framework messages. This application component is dynamically loaded when needed.</li>
* Yii framework messages. This application component is dynamically loaded when needed.</li>
* </ul>
* </ul>
*
*
* Application will undergo the following lifecycles when processing a user request:
* Application will undergo the following life
cycles when processing a user request:
* <ol>
* <ol>
* <li>load application configuration;</li>
* <li>load application configuration;</li>
* <li>set up class autoloader and error handling;</li>
* <li>set up class autoloader and error handling;</li>
...
@@ -48,28 +50,6 @@ use yii\base\InvalidCallException;
...
@@ -48,28 +50,6 @@ use yii\base\InvalidCallException;
* Starting from lifecycle 3, if a PHP error or an uncaught exception occurs,
* Starting from lifecycle 3, if a PHP error or an uncaught exception occurs,
* the application will switch to its error handling logic and jump to step 6 afterwards.
* the application will switch to its error handling logic and jump to step 6 afterwards.
*
*
* @property string $basePath Returns the root path of the application.
* @property CCache $cache Returns the cache component.
* @property CPhpMessageSource $coreMessages Returns the core message translations.
* @property CDateFormatter $dateFormatter Returns the locale-dependent date formatter.
* @property \yii\db\Connection $db Returns the database connection component.
* @property CErrorHandler $errorHandler Returns the error handler component.
* @property string $extensionPath Returns the root directory that holds all third-party extensions.
* @property string $id Returns the unique identifier for the application.
* @property string $language Returns the language that the user is using and the application should be targeted to.
* @property CLocale $locale Returns the locale instance.
* @property string $localeDataPath Returns the directory that contains the locale data.
* @property CMessageSource $messages Returns the application message translations component.
* @property CNumberFormatter $numberFormatter The locale-dependent number formatter.
* @property CHttpRequest $request Returns the request component.
* @property string $runtimePath Returns the directory that stores runtime files.
* @property CSecurityManager $securityManager Returns the security manager component.
* @property CStatePersister $statePersister Returns the state persister component.
* @property string $timeZone Returns the time zone used by this application.
* @property UrlManager $urlManager Returns the URL manager component.
* @property string $baseUrl Returns the relative URL for the application
* @property string $homeUrl the homepage URL
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
* @since 2.0
*/
*/
...
@@ -127,12 +107,12 @@ class Application extends Module
...
@@ -127,12 +107,12 @@ class Application extends Module
*/
*/
public
function
__construct
(
$id
,
$basePath
,
$config
=
array
())
public
function
__construct
(
$id
,
$basePath
,
$config
=
array
())
{
{
\
Yii
::
$application
=
$this
;
Yii
::
$application
=
$this
;
$this
->
id
=
$id
;
$this
->
id
=
$id
;
$this
->
setBasePath
(
$basePath
);
$this
->
setBasePath
(
$basePath
);
$this
->
registerDefaultAliases
();
$this
->
registerDefaultAliases
();
$this
->
registerCoreComponents
();
$this
->
registerCoreComponents
();
parent
::
__construct
(
$id
,
$this
,
$config
);
Component
::
__construct
(
$config
);
}
}
/**
/**
...
@@ -202,28 +182,6 @@ class Application extends Module
...
@@ -202,28 +182,6 @@ class Application extends Module
}
}
/**
/**
* Runs a controller with the given route and parameters.
* @param string $route the route (e.g. `post/create`)
* @param array $params the parameters to be passed to the controller action
* @return integer the exit status (0 means normal, non-zero values mean abnormal)
* @throws BadRequestException if the route cannot be resolved into a controller
*/
public
function
runController
(
$route
,
$params
=
array
())
{
$result
=
$this
->
createController
(
$route
);
if
(
$result
===
false
)
{
throw
new
BadRequestException
(
\Yii
::
t
(
'yii'
,
'Unable to resolve the request.'
));
}
/** @var $controller Controller */
list
(
$controller
,
$action
)
=
$result
;
$priorController
=
$this
->
controller
;
$this
->
controller
=
$controller
;
$status
=
$controller
->
run
(
$action
,
$params
);
$this
->
controller
=
$priorController
;
return
$status
;
}
/**
* Returns the directory that stores runtime files.
* Returns the directory that stores runtime files.
* @return string the directory that stores runtime files. Defaults to 'protected/runtime'.
* @return string the directory that stores runtime files. Defaults to 'protected/runtime'.
*/
*/
...
@@ -238,15 +196,15 @@ class Application extends Module
...
@@ -238,15 +196,15 @@ class Application extends Module
/**
/**
* Sets the directory that stores runtime files.
* Sets the directory that stores runtime files.
* @param string $path the directory that stores runtime files.
* @param string $path the directory that stores runtime files.
* @throws InvalidC
all
Exception if the directory does not exist or is not writable
* @throws InvalidC
onfig
Exception if the directory does not exist or is not writable
*/
*/
public
function
setRuntimePath
(
$path
)
public
function
setRuntimePath
(
$path
)
{
{
$p
=
\Yii
::
getAlias
(
$path
);
$p
=
FileHelper
::
ensureDirectory
(
$path
);
if
(
$p
===
false
||
!
is_dir
(
$p
)
||
!
is_writable
(
$path
))
{
if
(
is_writable
(
$p
))
{
throw
new
InvalidCallException
(
"Application runtime path
\"
$path
\"
is invalid. Please make sure it is a directory writable by the Web server process."
);
}
else
{
$this
->
_runtimePath
=
$p
;
$this
->
_runtimePath
=
$p
;
}
else
{
throw
new
InvalidConfigException
(
"Runtime path must be writable by the Web server process:
$path
"
);
}
}
}
}
...
@@ -295,34 +253,61 @@ class Application extends Module
...
@@ -295,34 +253,61 @@ class Application extends Module
date_default_timezone_set
(
$value
);
date_default_timezone_set
(
$value
);
}
}
/**
// /**
* Returns the locale instance.
// * Returns the security manager component.
* @param string $localeID the locale ID (e.g. en_US). If null, the {@link getLanguage application language ID} will be used.
// * @return SecurityManager the security manager application component.
* @return CLocale the locale instance
// */
*/
// public function getSecurityManager()
public
function
getLocale
(
$localeID
=
null
)
// {
{
// return $this->getComponent('securityManager');
return
CLocale
::
getInstance
(
$localeID
===
null
?
$this
->
getLanguage
()
:
$localeID
);
// }
}
//
// /**
/**
// * Returns the locale instance.
* @return CNumberFormatter the locale-dependent number formatter.
// * @param string $localeID the locale ID (e.g. en_US). If null, the {@link getLanguage application language ID} will be used.
* The current {@link getLocale application locale} will be used.
// * @return CLocale the locale instance
*/
// */
public
function
getNumberFormatter
()
// public function getLocale($localeID = null)
{
// {
return
$this
->
getLocale
()
->
getNumberFormatter
();
// return CLocale::getInstance($localeID === null ? $this->getLanguage() : $localeID);
}
// }
//
/**
// /**
* Returns the locale-dependent date formatter.
// * @return CNumberFormatter the locale-dependent number formatter.
* @return CDateFormatter the locale-dependent date formatter.
// * The current {@link getLocale application locale} will be used.
* The current {@link getLocale application locale} will be used.
// */
*/
// public function getNumberFormatter()
public
function
getDateFormatter
()
// {
{
// return $this->getLocale()->getNumberFormatter();
return
$this
->
getLocale
()
->
getDateFormatter
();
// }
}
//
// /**
// * Returns the locale-dependent date formatter.
// * @return CDateFormatter the locale-dependent date formatter.
// * The current {@link getLocale application locale} will be used.
// */
// public function getDateFormatter()
// {
// return $this->getLocale()->getDateFormatter();
// }
//
// /**
// * Returns the core message translations component.
// * @return \yii\i18n\MessageSource the core message translations
// */
// public function getCoreMessages()
// {
// return $this->getComponent('coreMessages');
// }
//
// /**
// * Returns the application message translations component.
// * @return \yii\i18n\MessageSource the application message translations
// */
// public function getMessages()
// {
// return $this->getComponent('messages');
// }
/**
/**
* Returns the database connection component.
* Returns the database connection component.
...
@@ -352,15 +337,6 @@ class Application extends Module
...
@@ -352,15 +337,6 @@ class Application extends Module
}
}
/**
/**
* Returns the security manager component.
* @return SecurityManager the security manager application component.
*/
public
function
getSecurityManager
()
{
return
$this
->
getComponent
(
'securityManager'
);
}
/**
* Returns the cache component.
* Returns the cache component.
* @return \yii\caching\Cache the cache application component. Null if the component is not enabled.
* @return \yii\caching\Cache the cache application component. Null if the component is not enabled.
*/
*/
...
@@ -370,24 +346,6 @@ class Application extends Module
...
@@ -370,24 +346,6 @@ class Application extends Module
}
}
/**
/**
* Returns the core message translations component.
* @return \yii\i18n\MessageSource the core message translations
*/
public
function
getCoreMessages
()
{
return
$this
->
getComponent
(
'coreMessages'
);
}
/**
* Returns the application message translations component.
* @return \yii\i18n\MessageSource the application message translations
*/
public
function
getMessages
()
{
return
$this
->
getComponent
(
'messages'
);
}
/**
* Returns the request component.
* Returns the request component.
* @return Request the request component
* @return Request the request component
*/
*/
...
@@ -401,9 +359,9 @@ class Application extends Module
...
@@ -401,9 +359,9 @@ class Application extends Module
*/
*/
public
function
registerDefaultAliases
()
public
function
registerDefaultAliases
()
{
{
\
Yii
::
$aliases
[
'@application'
]
=
$this
->
getBasePath
();
Yii
::
$aliases
[
'@application'
]
=
$this
->
getBasePath
();
\
Yii
::
$aliases
[
'@entry'
]
=
dirname
(
$_SERVER
[
'SCRIPT_FILENAME'
]);
Yii
::
$aliases
[
'@entry'
]
=
dirname
(
$_SERVER
[
'SCRIPT_FILENAME'
]);
\
Yii
::
$aliases
[
'@www'
]
=
''
;
Yii
::
$aliases
[
'@www'
]
=
''
;
}
}
/**
/**
...
@@ -416,15 +374,6 @@ class Application extends Module
...
@@ -416,15 +374,6 @@ class Application extends Module
'errorHandler'
=>
array
(
'errorHandler'
=>
array
(
'class'
=>
'yii\base\ErrorHandler'
,
'class'
=>
'yii\base\ErrorHandler'
,
),
),
'request'
=>
array
(
'class'
=>
'yii\base\Request'
,
),
'response'
=>
array
(
'class'
=>
'yii\base\Response'
,
),
'format'
=>
array
(
'class'
=>
'yii\base\Formatter'
,
),
'coreMessages'
=>
array
(
'coreMessages'
=>
array
(
'class'
=>
'yii\i18n\PhpMessageSource'
,
'class'
=>
'yii\i18n\PhpMessageSource'
,
'language'
=>
'en_us'
,
'language'
=>
'en_us'
,
...
...
framework/base/Controller.php
View file @
5855b7c1
...
@@ -9,6 +9,9 @@
...
@@ -9,6 +9,9 @@
namespace
yii\base
;
namespace
yii\base
;
use
Yii
;
use
yii\util\StringHelper
;
/**
/**
* Controller is the base class for classes containing controller logic.
* Controller is the base class for classes containing controller logic.
*
*
...
@@ -27,8 +30,12 @@ namespace yii\base;
...
@@ -27,8 +30,12 @@ namespace yii\base;
*/
*/
class
Controller
extends
Component
class
Controller
extends
Component
{
{
const
EVENT_AUTHORIZE
=
'authorize'
;
const
EVENT_BEFORE_ACTION
=
'beforeAction'
;
const
EVENT_AFTER_ACTION
=
'afterAction'
;
/**
/**
* @var string ID of this controller
* @var string
the
ID of this controller
*/
*/
public
$id
;
public
$id
;
/**
/**
...
@@ -36,12 +43,39 @@ class Controller extends Component
...
@@ -36,12 +43,39 @@ class Controller extends Component
*/
*/
public
$module
;
public
$module
;
/**
/**
* @var string the name of the default action. Defaults to 'index'.
* @var string the ID of the action that is used when the action ID is not specified
* in the request. Defaults to 'index'.
*/
*/
public
$defaultAction
=
'index'
;
public
$defaultAction
=
'index'
;
/**
/**
* @var array mapping from action ID to action configuration.
* @var string|boolean the name of the layout to be applied to this controller's views.
* Array keys are action IDs, and array values are the corresponding
* This property mainly affects the behavior of [[render()]].
* Defaults to null, meaning the actual layout value should inherit that from [[module]]'s layout value.
* If false, no layout will be applied.
*/
public
$layout
;
/**
* @var Action the action that is currently being executed. This property will be set
* by [[run()]] when it is called by [[Application]] to run an action.
*/
public
$action
;
/**
* @param string $id the ID of this controller
* @param Module $module the module that this controller belongs to.
* @param array $config name-value pairs that will be used to initialize the object properties
*/
public
function
__construct
(
$id
,
$module
,
$config
=
array
())
{
$this
->
id
=
$id
;
$this
->
module
=
$module
;
parent
::
__construct
(
$config
);
}
/**
* Declares external actions for the controller.
* This method is meant to be overwritten to declare external actions for the controller.
* It should return an array, with array keys being action IDs, and array values the corresponding
* action class names or action configuration arrays. For example,
* action class names or action configuration arrays. For example,
*
*
* ~~~
* ~~~
...
@@ -55,97 +89,147 @@ class Controller extends Component
...
@@ -55,97 +89,147 @@ class Controller extends Component
* );
* );
* ~~~
* ~~~
*
*
* [[\Yii::createObject()]] will be
invoked
to create the requested action
* [[\Yii::createObject()]] will be
used later
to create the requested action
* using the configuration provided here.
* using the configuration provided here.
*
* Note, in order to inherit actions defined in the parent class, a child class needs to
* merge the parent actions with child actions using functions like `array_merge()`.
* @see createAction
*/
public
$actions
=
array
();
/**
* @var Action the action that is currently being executed
*/
*/
public
$action
;
public
function
actions
()
/**
* @var string|boolean the name of the layout to be applied to this controller's views.
* This property mainly affects the behavior of [[render()]].
* Defaults to null, meaning the layout specified by the [[module]] should be used.
* If false, no layout will be applied.
*/
public
$layout
;
/**
* @param string $id ID of this controller
* @param Module $module the module that this controller belongs to.
* @param array $config name-value pairs that will be used to initialize the object properties
*/
public
function
__construct
(
$id
,
$module
,
$config
=
array
())
{
{
$this
->
id
=
$id
;
return
array
();
$this
->
module
=
$module
;
parent
::
__construct
(
$config
);
}
}
/**
/**
* Runs
the controller with the specified action
and parameters.
* Runs
an action with the specified action ID
and parameters.
*
@param Action|string $action the action to be executed. This can be either an action object
*
If the action ID is empty, the method will use [[defaultAction]].
*
or the ID of the action
.
*
@param string $id the ID of the action to be executed
.
* @param array $params the parameters (name-value pairs) to be passed to the action.
* @param array $params the parameters (name-value pairs) to be passed to the action.
* If null, the result of [[getActionParams()]] will be used as action parameters.
* @return integer the status of the action execution. 0 means normal, other values mean abnormal.
* @return integer the exit status of the action. 0 means normal, other values mean abnormal.
* @throws InvalidRouteException if the requested action ID cannot be resolved into an action successfully.
* @see missingAction
* @see createAction
* @see createAction
*/
*/
public
function
run
(
$action
,
$params
=
null
)
public
function
run
Action
(
$id
,
$params
=
array
()
)
{
{
if
(
is_string
(
$action
))
{
if
(
$id
===
''
)
{
if
((
$a
=
$this
->
createAction
(
$action
))
!==
null
)
{
$id
=
$this
->
defaultAction
;
$action
=
$a
;
}
else
{
$this
->
missingAction
(
$action
);
return
1
;
}
}
}
$priorAction
=
$this
->
action
;
$action
=
$this
->
createAction
(
$id
);
$this
->
action
=
$action
;
if
(
$action
!==
null
)
{
$oldAction
=
$this
->
action
;
$this
->
action
=
$action
;
if
(
$this
->
authorize
(
$action
)
&&
$this
->
beforeAction
(
$action
))
{
if
(
$this
->
authorize
(
$action
)
&&
$this
->
beforeAction
(
$action
))
{
if
(
$params
===
null
)
{
$status
=
$action
->
runWithParams
(
$params
);
$params
=
$this
->
getActionParams
();
$this
->
afterAction
(
$action
);
}
else
{
$status
=
1
;
}
}
$status
=
$action
->
runWithParams
(
$params
);
$this
->
afterAction
(
$action
);
$this
->
action
=
$oldAction
;
return
$status
;
}
else
{
}
else
{
$status
=
1
;
throw
new
InvalidRouteException
(
'Unable to resolve the request: '
.
$this
->
getUniqueId
()
.
'/'
.
$id
)
;
}
}
}
$this
->
action
=
$priorAction
;
/**
* Runs a request specified in terms of a route.
* The route can be either an ID of an action within this controller or a complete route consisting
* of module IDs, controller ID and action ID. If the route starts with a slash '/', the parsing of
* the route will start from the application; otherwise, it will start from the parent module of this controller.
* @param string $route the route to be handled, e.g., 'view', 'comment/view', '/admin/comment/view'.
* @param array $params the parameters to be passed to the action.
* @return integer the status code returned by the action execution. 0 means normal, and other values mean abnormal.
* @see runAction
* @see forward
*/
public
function
run
(
$route
,
$params
=
array
())
{
$pos
=
strpos
(
$route
,
'/'
);
if
(
$pos
===
false
)
{
return
$this
->
runAction
(
$route
,
$params
);
}
elseif
(
$pos
>
0
)
{
return
$this
->
module
->
runAction
(
$route
,
$params
);
}
else
{
return
\Yii
::
$application
->
runAction
(
$route
,
$params
);
}
}
return
$status
;
/**
* Forwards the current execution flow to handle a new request specified by a route.
* The only difference between this method and [[run()]] is that after calling this method,
* the application will exit.
* @param string $route the route to be handled, e.g., 'view', 'comment/view', '/admin/comment/view'.
* @param array $params the parameters to be passed to the action.
* @return integer the status code returned by the action execution. 0 means normal, and other values mean abnormal.
* @see run
*/
public
function
forward
(
$route
,
$params
=
array
())
{
$status
=
$this
->
run
(
$route
,
$params
);
exit
(
$status
);
}
}
/**
/**
* Creates the action instance based on the action ID.
* Creates an action based on the given action ID.
* The action can be either an inline action or an object.
* The method first checks if the action ID has been declared in [[actions()]]. If so,
* The latter is created by looking up the action map specified in [[actions]].
* it will use the configuration declared there to create the action object.
* @param string $actionID ID of the action. If empty, it will take the value of [[defaultAction]].
* If not, it will look for a controller method whose name is in the format of `actionXyz`
* @return Action the action instance, null if the action does not exist.
* where `Xyz` stands for the action ID. If found, an [[InlineAction]] representing that
* @see actions
* method will be created and returned.
* @param string $id the action ID
* @return Action the newly created action instance. Null if the ID doesn't resolve into any action.
*/
*/
public
function
createAction
(
$
actionID
)
public
function
createAction
(
$
id
)
{
{
if
(
$actionID
===
''
)
{
$actionMap
=
$this
->
actions
();
$actionID
=
$this
->
defaultAction
;
if
(
isset
(
$actionMap
[
$id
]))
{
}
return
Yii
::
createObject
(
$actionMap
[
$id
],
$id
,
$this
);
if
(
isset
(
$this
->
actions
[
$actionID
]))
{
}
elseif
(
preg_match
(
'/^[a-z0-9\\-_]+$/'
,
$id
))
{
return
\Yii
::
createObject
(
$this
->
actions
[
$actionID
],
$actionID
,
$this
);
$methodName
=
'action'
.
StringHelper
::
id2camel
(
$id
);
}
elseif
(
method_exists
(
$this
,
'action'
.
$actionID
))
{
if
(
method_exists
(
$this
,
$methodName
))
{
return
new
InlineAction
(
$actionID
,
$this
);
$method
=
new
\ReflectionMethod
(
$this
,
$methodName
);
}
else
{
if
(
$method
->
getName
()
===
$methodName
)
{
return
null
;
return
new
InlineAction
(
$id
,
$this
);
}
}
}
}
return
null
;
}
/**
* This method is invoked when checking the access for the action to be executed.
* @param Action $action the action to be executed.
* @return boolean whether the action is allowed to be executed.
*/
public
function
authorize
(
$action
)
{
$event
=
new
ActionEvent
(
$action
);
$this
->
trigger
(
self
::
EVENT_AUTHORIZE
,
$event
);
return
$event
->
isValid
;
}
/**
* This method is invoked right before an action is to be executed (after all possible filters.)
* You may override this method to do last-minute preparation for the action.
* @param Action $action the action to be executed.
* @return boolean whether the action should continue to be executed.
*/
public
function
beforeAction
(
$action
)
{
$event
=
new
ActionEvent
(
$action
);
$this
->
trigger
(
self
::
EVENT_BEFORE_ACTION
,
$event
);
return
$event
->
isValid
;
}
/**
* This method is invoked right after an action is executed.
* You may override this method to do some postprocessing for the action.
* @param Action $action the action just executed.
*/
public
function
afterAction
(
$action
)
{
$this
->
trigger
(
self
::
EVENT_AFTER_ACTION
,
new
ActionEvent
(
$action
));
}
}
/**
/**
...
@@ -188,11 +272,11 @@ class Controller extends Component
...
@@ -188,11 +272,11 @@ class Controller extends Component
* This method is invoked when the controller cannot find the requested action.
* This method is invoked when the controller cannot find the requested action.
* The default implementation simply throws an exception.
* The default implementation simply throws an exception.
* @param string $actionID the missing action name
* @param string $actionID the missing action name
* @throws
Ba
dRequestException whenever this method is invoked
* @throws
Invali
dRequestException whenever this method is invoked
*/
*/
public
function
missingAction
(
$actionID
)
public
function
missingAction
(
$actionID
)
{
{
throw
new
Ba
dRequestException
(
\Yii
::
t
(
'yii'
,
'The system is unable to find the requested action "{action}".'
,
throw
new
Invali
dRequestException
(
\Yii
::
t
(
'yii'
,
'The system is unable to find the requested action "{action}".'
,
array
(
'{action}'
=>
$actionID
==
''
?
$this
->
defaultAction
:
$actionID
)));
array
(
'{action}'
=>
$actionID
==
''
?
$this
->
defaultAction
:
$actionID
)));
}
}
...
@@ -213,67 +297,6 @@ class Controller extends Component
...
@@ -213,67 +297,6 @@ class Controller extends Component
return
$this
->
action
!==
null
?
$this
->
getUniqueId
()
.
'/'
.
$this
->
action
->
id
:
$this
->
getUniqueId
();
return
$this
->
action
!==
null
?
$this
->
getUniqueId
()
.
'/'
.
$this
->
action
->
id
:
$this
->
getUniqueId
();
}
}
/**
* Processes the request using another controller action.
* @param string $route the route of the new controller action. This can be an action ID, or a complete route
* with module ID (optional in the current module), controller ID and action ID. If the former,
* the action is assumed to be located within the current controller.
* @param array $params the parameters to be passed to the action.
* If null, the result of [[getActionParams()]] will be used as action parameters.
* Note that the parameters must be name-value pairs with the names corresponding to
* the parameter names as declared by the action.
* @param boolean $exit whether to end the application after this call. Defaults to true.
*/
public
function
forward
(
$route
,
$params
=
array
(),
$exit
=
true
)
{
if
(
strpos
(
$route
,
'/'
)
===
false
)
{
$status
=
$this
->
run
(
$route
,
$params
);
}
else
{
if
(
$route
[
0
]
!==
'/'
&&
!
$this
->
module
instanceof
Application
)
{
$route
=
'/'
.
$this
->
module
->
getUniqueId
()
.
'/'
.
$route
;
}
$status
=
\Yii
::
$application
->
runController
(
$route
,
$params
);
}
if
(
$exit
)
{
\Yii
::
$application
->
end
(
$status
);
}
}
/**
* This method is invoked when checking the access for the action to be executed.
* @param Action $action the action to be executed.
* @return boolean whether the action is allowed to be executed.
*/
public
function
authorize
(
$action
)
{
$event
=
new
ActionEvent
(
$action
);
$this
->
trigger
(
__METHOD__
,
$event
);
return
$event
->
isValid
;
}
/**
* This method is invoked right before an action is to be executed (after all possible filters.)
* You may override this method to do last-minute preparation for the action.
* @param Action $action the action to be executed.
* @return boolean whether the action should continue to be executed.
*/
public
function
beforeAction
(
$action
)
{
$event
=
new
ActionEvent
(
$action
);
$this
->
trigger
(
__METHOD__
,
$event
);
return
$event
->
isValid
;
}
/**
* This method is invoked right after an action is executed.
* You may override this method to do some postprocessing for the action.
* @param Action $action the action just executed.
*/
public
function
afterAction
(
$action
)
{
$this
->
trigger
(
__METHOD__
,
new
ActionEvent
(
$action
));
}
public
function
render
(
$view
,
$params
=
array
())
public
function
render
(
$view
,
$params
=
array
())
{
{
return
$this
->
createView
()
->
render
(
$view
,
$params
);
return
$this
->
createView
()
->
render
(
$view
,
$params
);
...
...
framework/base/InvalidRequestException.php
0 → 100644
View file @
5855b7c1
<?php
/**
* InvalidRequestException class file.
*
* @link http://www.yiiframework.com/
* @copyright Copyright © 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace
yii\base
;
/**
* InvalidRequestException represents an exception caused by incorrect end user request.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
class
InvalidRequestException
extends
\Exception
{
}
framework/base/
BadRequest
Exception.php
→
framework/base/
InvalidRoute
Exception.php
View file @
5855b7c1
<?php
<?php
/**
/**
*
BadRequest
Exception class file.
*
InvalidRoute
Exception class file.
*
*
* @link http://www.yiiframework.com/
* @link http://www.yiiframework.com/
* @copyright Copyright © 2008 Yii Software LLC
* @copyright Copyright © 2008 Yii Software LLC
...
@@ -10,12 +10,12 @@
...
@@ -10,12 +10,12 @@
namespace
yii\base
;
namespace
yii\base
;
/**
/**
*
BadRequestException represents an exception caused by incorrect end user request
.
*
InvalidRouteException represents an exception caused by an invalid route
.
*
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
* @since 2.0
*/
*/
class
BadRequest
Exception
extends
\Exception
class
InvalidRoute
Exception
extends
\Exception
{
{
}
}
framework/base/Module.php
View file @
5855b7c1
...
@@ -9,18 +9,26 @@
...
@@ -9,18 +9,26 @@
namespace
yii\base
;
namespace
yii\base
;
use
Yii
;
use
yii\util\StringHelper
;
use
yii\util\FileHelper
;
use
yii\util\FileHelper
;
/**
/**
* Module is the base class for module and application classes.
* Module is the base class for module and application classes.
*
*
* Module mainly manages application components and sub-modules that belongs to a module.
* A module represents a sub-application which contains MVC elements by itself, such as
* models, views, controllers, etc.
*
* A module may consist of [[modules|sub-modules]].
*
* [[components|Components]] may be registered with the module so that they are globally
* accessible within the module.
*
*
* @property string $uniqueId An ID that uniquely identifies this module among all modules within
* @property string $uniqueId An ID that uniquely identifies this module among all modules within
* the current application.
* the current application.
* @property string $basePath The root directory of the module. Defaults to the directory containing the module class.
* @property string $basePath The root directory of the module. Defaults to the directory containing the module class.
* @property array $modules The configuration of the currently installed modules (module ID => configuration).
* @property array $modules The configuration of the currently installed modules (module ID => configuration).
* @property array $components The
application components (indexed by their IDs)
.
* @property array $components The
components (indexed by their IDs) registered within this module
.
* @property array $import List of aliases to be imported. This property is write-only.
* @property array $import List of aliases to be imported. This property is write-only.
* @property array $aliases List of aliases to be defined. This property is write-only.
* @property array $aliases List of aliases to be defined. This property is write-only.
*
*
...
@@ -34,7 +42,7 @@ abstract class Module extends Component
...
@@ -34,7 +42,7 @@ abstract class Module extends Component
*/
*/
public
$params
=
array
();
public
$params
=
array
();
/**
/**
* @var array the IDs of the
application
components that should be preloaded when this module is created.
* @var array the IDs of the components that should be preloaded when this module is created.
*/
*/
public
$preload
=
array
();
public
$preload
=
array
();
/**
/**
...
@@ -70,7 +78,11 @@ abstract class Module extends Component
...
@@ -70,7 +78,11 @@ abstract class Module extends Component
* )
* )
* ~~~
* ~~~
*/
*/
public
$controllers
=
array
();
public
$controllerMap
=
array
();
/**
* @var string the namespace that controller classes are in. Default is to use global namespace.
*/
public
$controllerNamespace
;
/**
/**
* @return string the default route of this module. Defaults to 'default'.
* @return string the default route of this module. Defaults to 'default'.
* The route may consist of child module ID, controller ID, and/or action ID.
* The route may consist of child module ID, controller ID, and/or action ID.
...
@@ -82,27 +94,27 @@ abstract class Module extends Component
...
@@ -82,27 +94,27 @@ abstract class Module extends Component
/**
/**
* @var string the root directory of the module.
* @var string the root directory of the module.
*/
*/
pr
otected
$_basePath
;
pr
ivate
$_basePath
;
/**
/**
* @var string the root directory that contains view files for this module
* @var string the root directory that contains view files for this module
*/
*/
pr
otected
$_viewPath
;
pr
ivate
$_viewPath
;
/**
/**
* @var string the root directory that contains layout view files for this module.
* @var string the root directory that contains layout view files for this module.
*/
*/
pr
otected
$_layoutPath
;
pr
ivate
$_layoutPath
;
/**
/**
* @var string the directory containing controller classes in the module.
* @var string the directory containing controller classes in the module.
*/
*/
pr
otected
$_controllerPath
;
pr
ivate
$_controllerPath
;
/**
/**
* @var array child modules of this module
* @var array child modules of this module
*/
*/
pr
otected
$_modules
=
array
();
pr
ivate
$_modules
=
array
();
/**
/**
* @var array
application components of
this module
* @var array
components registered under
this module
*/
*/
pr
otected
$_components
=
array
();
pr
ivate
$_components
=
array
();
/**
/**
* Constructor.
* Constructor.
...
@@ -119,9 +131,9 @@ abstract class Module extends Component
...
@@ -119,9 +131,9 @@ abstract class Module extends Component
/**
/**
* Getter magic method.
* Getter magic method.
* This method is overridden to support accessing
application
components
* This method is overridden to support accessing components
* like reading module properties.
* like reading module properties.
* @param string $name
application
component or property name
* @param string $name component or property name
* @return mixed the named property value
* @return mixed the named property value
*/
*/
public
function
__get
(
$name
)
public
function
__get
(
$name
)
...
@@ -136,7 +148,7 @@ abstract class Module extends Component
...
@@ -136,7 +148,7 @@ abstract class Module extends Component
/**
/**
* Checks if a property value is null.
* Checks if a property value is null.
* This method overrides the parent implementation by checking
* This method overrides the parent implementation by checking
* if the named
application
component is loaded.
* if the named component is loaded.
* @param string $name the property name or the event name
* @param string $name the property name or the event name
* @return boolean whether the property value is null
* @return boolean whether the property value is null
*/
*/
...
@@ -157,18 +169,21 @@ abstract class Module extends Component
...
@@ -157,18 +169,21 @@ abstract class Module extends Component
*/
*/
public
function
init
()
public
function
init
()
{
{
\
Yii
::
setAlias
(
'@'
.
$this
->
id
,
$this
->
getBasePath
());
Yii
::
setAlias
(
'@'
.
$this
->
id
,
$this
->
getBasePath
());
$this
->
preloadComponents
();
$this
->
preloadComponents
();
}
}
/**
/**
* Returns an ID that uniquely identifies this module among all modules within the current application.
* Returns an ID that uniquely identifies this module among all modules within the current application.
* Note that if the module is an application, an empty string will be returned.
* @return string the unique ID of the module.
* @return string the unique ID of the module.
*/
*/
public
function
getUniqueId
()
public
function
getUniqueId
()
{
{
if
(
$this
->
module
&&
!
$this
->
module
instanceof
Application
)
{
if
(
$this
instanceof
Application
)
{
return
$this
->
module
->
getUniqueId
()
.
"/
{
$this
->
id
}
"
;
return
''
;
}
elseif
(
$this
->
module
)
{
return
$this
->
module
->
getUniqueId
()
.
'/'
.
$this
->
id
;
}
else
{
}
else
{
return
$this
->
id
;
return
$this
->
id
;
}
}
...
@@ -273,19 +288,19 @@ abstract class Module extends Component
...
@@ -273,19 +288,19 @@ abstract class Module extends Component
/**
/**
* Imports the specified path aliases.
* Imports the specified path aliases.
* This method is provided so that you can import a set of path aliases when configuring a module.
* This method is provided so that you can import a set of path aliases when configuring a module.
* The path aliases will be imported by calling [[
\
Yii::import()]].
* The path aliases will be imported by calling [[Yii::import()]].
* @param array $aliases list of path aliases to be imported
* @param array $aliases list of path aliases to be imported
*/
*/
public
function
setImport
(
$aliases
)
public
function
setImport
(
$aliases
)
{
{
foreach
(
$aliases
as
$alias
)
{
foreach
(
$aliases
as
$alias
)
{
\
Yii
::
import
(
$alias
);
Yii
::
import
(
$alias
);
}
}
}
}
/**
/**
* Defines path aliases.
* Defines path aliases.
* This method calls [[
\
Yii::setAlias()]] to register the path aliases.
* This method calls [[Yii::setAlias()]] to register the path aliases.
* This method is provided so that you can define path aliases when configuring a module.
* This method is provided so that you can define path aliases when configuring a module.
* @param array $aliases list of path aliases to be defined. The array keys are alias names
* @param array $aliases list of path aliases to be defined. The array keys are alias names
* (must start with '@') and the array values are the corresponding paths or aliases.
* (must start with '@') and the array values are the corresponding paths or aliases.
...
@@ -293,7 +308,7 @@ abstract class Module extends Component
...
@@ -293,7 +308,7 @@ abstract class Module extends Component
*
*
* ~~~
* ~~~
* array(
* array(
* '@models' => '@app/models', // an existing alias
* '@models' => '@app
lication
/models', // an existing alias
* '@backend' => __DIR__ . '/../backend', // a directory
* '@backend' => __DIR__ . '/../backend', // a directory
* )
* )
* ~~~
* ~~~
...
@@ -301,7 +316,7 @@ abstract class Module extends Component
...
@@ -301,7 +316,7 @@ abstract class Module extends Component
public
function
setAliases
(
$aliases
)
public
function
setAliases
(
$aliases
)
{
{
foreach
(
$aliases
as
$name
=>
$alias
)
{
foreach
(
$aliases
as
$name
=>
$alias
)
{
\
Yii
::
setAlias
(
$name
,
$alias
);
Yii
::
setAlias
(
$name
,
$alias
);
}
}
}
}
...
@@ -330,8 +345,8 @@ abstract class Module extends Component
...
@@ -330,8 +345,8 @@ abstract class Module extends Component
if
(
$this
->
_modules
[
$id
]
instanceof
Module
)
{
if
(
$this
->
_modules
[
$id
]
instanceof
Module
)
{
return
$this
->
_modules
[
$id
];
return
$this
->
_modules
[
$id
];
}
elseif
(
$load
)
{
}
elseif
(
$load
)
{
\Yii
::
trace
(
"Loading
\"
$id
\"
module
"
,
__CLASS__
);
Yii
::
trace
(
"Loading module:
$id
"
,
__CLASS__
);
return
$this
->
_modules
[
$id
]
=
\
Yii
::
createObject
(
$this
->
_modules
[
$id
],
$id
,
$this
);
return
$this
->
_modules
[
$id
]
=
Yii
::
createObject
(
$this
->
_modules
[
$id
],
$id
,
$this
);
}
}
}
}
return
null
;
return
null
;
...
@@ -384,7 +399,7 @@ abstract class Module extends Component
...
@@ -384,7 +399,7 @@ abstract class Module extends Component
*
*
* Each sub-module should be specified as a name-value pair, where
* Each sub-module should be specified as a name-value pair, where
* name refers to the ID of the module and value the module or a configuration
* name refers to the ID of the module and value the module or a configuration
* array that can be used to create the module. In the latter case, [[
\
Yii::createObject()]]
* array that can be used to create the module. In the latter case, [[Yii::createObject()]]
* will be used to create the module.
* will be used to create the module.
*
*
* If a new sub-module has the same ID as an existing one, the existing one will be overwritten silently.
* If a new sub-module has the same ID as an existing one, the existing one will be overwritten silently.
...
@@ -414,8 +429,8 @@ abstract class Module extends Component
...
@@ -414,8 +429,8 @@ abstract class Module extends Component
/**
/**
* Checks whether the named component exists.
* Checks whether the named component exists.
* @param string $id
application
component ID
* @param string $id component ID
* @return boolean whether the named
application
component exists. Both loaded and unloaded components
* @return boolean whether the named component exists. Both loaded and unloaded components
* are considered.
* are considered.
*/
*/
public
function
hasComponent
(
$id
)
public
function
hasComponent
(
$id
)
...
@@ -424,11 +439,10 @@ abstract class Module extends Component
...
@@ -424,11 +439,10 @@ abstract class Module extends Component
}
}
/**
/**
* Retrieves the named
application
component.
* Retrieves the named component.
* @param string $id
application
component ID (case-sensitive)
* @param string $id component ID (case-sensitive)
* @param boolean $load whether to load the component if it is not yet loaded.
* @param boolean $load whether to load the component if it is not yet loaded.
* @return Component|null the application component instance, null if the application component
* @return Component|null the component instance, null if the component does not exist.
* does not exist.
* @see hasComponent()
* @see hasComponent()
*/
*/
public
function
getComponent
(
$id
,
$load
=
true
)
public
function
getComponent
(
$id
,
$load
=
true
)
...
@@ -437,22 +451,22 @@ abstract class Module extends Component
...
@@ -437,22 +451,22 @@ abstract class Module extends Component
if
(
$this
->
_components
[
$id
]
instanceof
Component
)
{
if
(
$this
->
_components
[
$id
]
instanceof
Component
)
{
return
$this
->
_components
[
$id
];
return
$this
->
_components
[
$id
];
}
elseif
(
$load
)
{
}
elseif
(
$load
)
{
\Yii
::
trace
(
"Loading
\"
$id
\"
application component
"
,
__CLASS__
);
Yii
::
trace
(
"Loading component:
$id
"
,
__CLASS__
);
return
$this
->
_components
[
$id
]
=
\
Yii
::
createObject
(
$this
->
_components
[
$id
]);
return
$this
->
_components
[
$id
]
=
Yii
::
createObject
(
$this
->
_components
[
$id
]);
}
}
}
}
return
null
;
return
null
;
}
}
/**
/**
* Registers a
n application component in
this module.
* Registers a
component with
this module.
* @param string $id component ID
* @param string $id component ID
* @param Component|array|null $component the component to be
added to
the module. This can
* @param Component|array|null $component the component to be
registered with
the module. This can
* be one of the followings:
* be one of the followings:
*
*
* - a [[Component]] object
* - a [[Component]] object
* - a configuration array: when [[getComponent()]] is called initially for this component, the array
* - a configuration array: when [[getComponent()]] is called initially for this component, the array
* will be used to instantiate the component
* will be used to instantiate the component
via [[Yii::createObject()]].
* - null: the named component will be removed from the module
* - null: the named component will be removed from the module
*/
*/
public
function
setComponent
(
$id
,
$component
)
public
function
setComponent
(
$id
,
$component
)
...
@@ -465,11 +479,11 @@ abstract class Module extends Component
...
@@ -465,11 +479,11 @@ abstract class Module extends Component
}
}
/**
/**
* Returns the
application
components.
* Returns the
registered
components.
* @param boolean $loadedOnly whether to return the loaded components only. If this is set false,
* @param boolean $loadedOnly whether to return the loaded components only. If this is set false,
* then all components specified in the configuration will be returned, whether they are loaded or not.
* then all components specified in the configuration will be returned, whether they are loaded or not.
* Loaded components will be returned as objects, while unloaded components as configuration arrays.
* Loaded components will be returned as objects, while unloaded components as configuration arrays.
* @return array the
application
components (indexed by their IDs)
* @return array the components (indexed by their IDs)
*/
*/
public
function
getComponents
(
$loadedOnly
=
false
)
public
function
getComponents
(
$loadedOnly
=
false
)
{
{
...
@@ -487,11 +501,11 @@ abstract class Module extends Component
...
@@ -487,11 +501,11 @@ abstract class Module extends Component
}
}
/**
/**
* Registers a set of
application
components in this module.
* Registers a set of components in this module.
*
*
* Each
application
component should be specified as a name-value pair, where
* Each component should be specified as a name-value pair, where
* name refers to the ID of the component and value the component or a configuration
* name refers to the ID of the component and value the component or a configuration
* array that can be used to create the component. In the latter case, [[
\
Yii::createObject()]]
* array that can be used to create the component. In the latter case, [[Yii::createObject()]]
* will be used to create the component.
* will be used to create the component.
*
*
* If a new component has the same ID as an existing one, the existing one will be overwritten silently.
* If a new component has the same ID as an existing one, the existing one will be overwritten silently.
...
@@ -511,7 +525,7 @@ abstract class Module extends Component
...
@@ -511,7 +525,7 @@ abstract class Module extends Component
* )
* )
* ~~~
* ~~~
*
*
* @param array $components
application
components (id => component configuration or instance)
* @param array $components components (id => component configuration or instance)
*/
*/
public
function
setComponents
(
$components
)
public
function
setComponents
(
$components
)
{
{
...
@@ -521,7 +535,7 @@ abstract class Module extends Component
...
@@ -521,7 +535,7 @@ abstract class Module extends Component
}
}
/**
/**
* Loads
application
components that are declared in [[preload]].
* Loads components that are declared in [[preload]].
*/
*/
public
function
preloadComponents
()
public
function
preloadComponents
()
{
{
...
@@ -531,67 +545,77 @@ abstract class Module extends Component
...
@@ -531,67 +545,77 @@ abstract class Module extends Component
}
}
/**
/**
* Creates a controller instance based on the given route.
* Runs a controller action specified by a route.
* This method tries to parse the given route (e.g. `post/create`) using the following algorithm:
* This method parses the specified route and creates the corresponding child module(s), controller and action
*
* instances. It then calls [[Controller::runAction()]] to run the action with the given parameters.
* 1. Get the first segment in route
* If the route is empty, the method will use [[defaultRoute]].
* 2. If the segment matches
* @param string $route the route that specifies the action.
* - an ID in [[controllers]], create a controller instance using the corresponding configuration,
* @param array $params the parameters to be passed to the action
* and return the controller with the rest part of the route;
* @return integer the status code returned by the action execution. 0 means normal, and other values mean abnormal.
* - an ID in [[modules]], call the [[createController()]] method of the corresponding module.
* @throws InvalidRouteException if the requested route cannot be resolved into an action successfully
* - a controller class under [[controllerPath]], create the controller instance, and return it
* with the rest part of the route;
*
* @param string $route the route which may consist module ID, controller ID and/or action ID (e.g. `post/create`)
* @return array|boolean the array of controller instance and action ID. False if the route cannot be resolved.
*/
*/
public
function
createController
(
$route
)
public
function
runAction
(
$route
,
$params
=
array
()
)
{
{
if
((
$route
=
trim
(
$route
,
'/'
))
===
''
)
{
$route
=
trim
(
$route
,
'/'
);
$route
=
$this
->
defaultRoute
;
if
(
$route
===
''
)
{
$route
=
trim
(
$this
->
defaultRoute
,
'/'
);
}
}
if
((
$pos
=
strpos
(
$route
,
'/'
))
!==
false
)
{
if
((
$pos
=
strpos
(
$route
,
'/'
))
!==
false
)
{
$id
=
substr
(
$route
,
0
,
$pos
);
$id
=
substr
(
$route
,
0
,
$pos
);
$route
=
(
string
)
substr
(
$route
,
$pos
+
1
);
$route
2
=
substr
(
$route
,
$pos
+
1
);
}
else
{
}
else
{
$id
=
$route
;
$id
=
$route
;
$route
=
''
;
$route
2
=
''
;
}
}
// Controller IDs must start with a lower-case letter and consist of word characters only
$module
=
$this
->
getModule
(
$id
);
if
(
!
preg_match
(
'/^[a-z][a-zA-Z0-9_]*$/'
,
$id
)
)
{
if
(
$module
!==
null
)
{
return
false
;
return
$module
->
runAction
(
$route2
,
$params
)
;
}
}
if
(
isset
(
$this
->
controllers
[
$id
]))
{
$controller
=
$this
->
createController
(
$id
);
return
array
(
if
(
$controller
!==
null
)
{
\Yii
::
createObject
(
$this
->
controllers
[
$id
],
$id
,
$this
),
$oldController
=
Yii
::
$application
->
controller
;
$route
,
Yii
::
$application
->
controller
=
$controller
;
);
}
if
((
$module
=
$this
->
getModule
(
$id
))
!==
null
)
{
$status
=
$controller
->
runAction
(
$route2
,
$params
);
$result
=
$module
->
createController
(
$route
);
if
(
$result
!==
false
)
{
Yii
::
$application
->
controller
=
$oldController
;
return
$result
;
}
return
$status
;
}
else
{
throw
new
InvalidRouteException
(
'Unable to resolve the request: '
.
$this
->
getUniqueId
()
.
'/'
.
$route
);
}
}
}
$className
=
ucfirst
(
$id
)
.
'Controller'
;
/**
$classFile
=
$this
->
getControllerPath
()
.
DIRECTORY_SEPARATOR
.
$className
.
'.php'
;
* Creates a controller instance based on the controller ID.
if
(
is_file
(
$classFile
))
{
*
if
(
!
class_exists
(
$className
,
false
))
{
* The controller is created within the given module. The method first attempts to
require
(
$classFile
);
* create the controller based on the [[controllerMap]] of the module. If not available,
}
* it will look for the controller class under the [[controllerPath]] and create an
if
(
class_exists
(
$className
,
false
)
&&
is_subclass_of
(
$className
,
'\yii\base\Controller'
))
{
* instance of it.
return
array
(
*
new
$className
(
$id
,
$this
),
* @param string $id the controller ID
$route
,
* @return Controller the newly created controller instance
);
*/
public
function
createController
(
$id
)
{
if
(
isset
(
$this
->
controllerMap
[
$id
]))
{
return
Yii
::
createObject
(
$this
->
controllerMap
[
$id
],
$id
,
$this
);
}
elseif
(
preg_match
(
'/^[a-z0-9\\-_]+$/'
,
$id
))
{
$className
=
StringHelper
::
id2camel
(
$id
)
.
'Controller'
;
$classFile
=
$this
->
controllerPath
.
DIRECTORY_SEPARATOR
.
$className
.
'.php'
;
if
(
is_file
(
$classFile
))
{
$className
=
$this
->
controllerNamespace
.
'\\'
.
$className
;
if
(
!
class_exists
(
$className
,
false
))
{
require
(
$classFile
);
}
if
(
class_exists
(
$className
,
false
)
&&
is_subclass_of
(
$className
,
'\yii\base\Controller'
))
{
return
new
$className
(
$id
,
$this
);
}
}
}
}
}
return
null
;
return
false
;
}
}
}
}
framework/base/View.php
View file @
5855b7c1
...
@@ -97,7 +97,7 @@ class View extends Component
...
@@ -97,7 +97,7 @@ class View extends Component
* To determine which view file should be rendered, the method calls [[findViewFile()]] which
* To determine which view file should be rendered, the method calls [[findViewFile()]] which
* will search in the directories as specified by [[basePath]].
* will search in the directories as specified by [[basePath]].
*
*
* View name can be a path alias representing an absolute file path (e.g. `@app/views/layout/index`),
* View name can be a path alias representing an absolute file path (e.g. `@app
lication
/views/layout/index`),
* or a path relative to [[basePath]]. The file suffix is optional and defaults to `.php` if not given
* or a path relative to [[basePath]]. The file suffix is optional and defaults to `.php` if not given
* in the view name.
* in the view name.
*
*
...
...
framework/base/Widget.php
View file @
5855b7c1
...
@@ -80,7 +80,7 @@ class Widget extends Component
...
@@ -80,7 +80,7 @@ class Widget extends Component
* To determine which view file should be rendered, the method calls [[findViewFile()]] which
* To determine which view file should be rendered, the method calls [[findViewFile()]] which
* will search in the directories as specified by [[basePath]].
* will search in the directories as specified by [[basePath]].
*
*
* View name can be a path alias representing an absolute file path (e.g. `@app/views/layout/index`),
* View name can be a path alias representing an absolute file path (e.g. `@app
lication
/views/layout/index`),
* or a path relative to [[basePath]]. The file suffix is optional and defaults to `.php` if not given
* or a path relative to [[basePath]]. The file suffix is optional and defaults to `.php` if not given
* in the view name.
* in the view name.
*
*
...
...
framework/console/Application.php
View file @
5855b7c1
...
@@ -70,14 +70,14 @@ class Application extends \yii\base\Application
...
@@ -70,14 +70,14 @@ class Application extends \yii\base\Application
parent
::
init
();
parent
::
init
();
if
(
$this
->
enableCoreCommands
)
{
if
(
$this
->
enableCoreCommands
)
{
foreach
(
$this
->
coreCommands
()
as
$id
=>
$command
)
{
foreach
(
$this
->
coreCommands
()
as
$id
=>
$command
)
{
if
(
!
isset
(
$this
->
controller
s
[
$id
]))
{
if
(
!
isset
(
$this
->
controller
Map
[
$id
]))
{
$this
->
controller
s
[
$id
]
=
$command
;
$this
->
controller
Map
[
$id
]
=
$command
;
}
}
}
}
}
}
// ensure we have the 'help' command so that we can list the available commands
// ensure we have the 'help' command so that we can list the available commands
if
(
!
isset
(
$this
->
controller
s
[
'help'
]))
{
if
(
!
isset
(
$this
->
controller
Map
[
'help'
]))
{
$this
->
controller
s
[
'help'
]
=
'yii\console\controllers\HelpController'
;
$this
->
controller
Map
[
'help'
]
=
'yii\console\controllers\HelpController'
;
}
}
}
}
...
...
framework/console/controllers/HelpController.php
View file @
5855b7c1
...
@@ -87,7 +87,7 @@ class HelpController extends Controller
...
@@ -87,7 +87,7 @@ class HelpController extends Controller
*/
*/
public
function
getActions
(
$controller
)
public
function
getActions
(
$controller
)
{
{
$actions
=
array_keys
(
$controller
->
action
s
);
$actions
=
array_keys
(
$controller
->
action
Map
);
$class
=
new
\ReflectionClass
(
$controller
);
$class
=
new
\ReflectionClass
(
$controller
);
foreach
(
$class
->
getMethods
()
as
$method
)
{
foreach
(
$class
->
getMethods
()
as
$method
)
{
/** @var $method \ReflectionMethod */
/** @var $method \ReflectionMethod */
...
@@ -114,7 +114,7 @@ class HelpController extends Controller
...
@@ -114,7 +114,7 @@ class HelpController extends Controller
}
}
$commands
=
array
();
$commands
=
array
();
foreach
(
array_keys
(
$module
->
controller
s
)
as
$id
)
{
foreach
(
array_keys
(
$module
->
controller
Map
)
as
$id
)
{
$commands
[]
=
$prefix
.
$id
;
$commands
[]
=
$prefix
.
$id
;
}
}
...
...
framework/logging/DbTarget.php
View file @
5855b7c1
...
@@ -89,16 +89,17 @@ class DbTarget extends Target
...
@@ -89,16 +89,17 @@ class DbTarget extends Target
}
}
/**
/**
* Stores log [[messages]] to DB.
* Stores log messages to DB.
* @param boolean $final whether this method is called at the end of the current application
* @param array $messages the messages to be exported. See [[Logger::messages]] for the structure
* of each message.
*/
*/
public
function
export
Messages
(
$final
)
public
function
export
(
$messages
)
{
{
$db
=
$this
->
getDb
();
$db
=
$this
->
getDb
();
$tableName
=
$db
->
quoteTableName
(
$this
->
tableName
);
$tableName
=
$db
->
quoteTableName
(
$this
->
tableName
);
$sql
=
"INSERT INTO
$tableName
(level, category, log_time, message) VALUES (:level, :category, :log_time, :message)"
;
$sql
=
"INSERT INTO
$tableName
(level, category, log_time, message) VALUES (:level, :category, :log_time, :message)"
;
$command
=
$db
->
createCommand
(
$sql
);
$command
=
$db
->
createCommand
(
$sql
);
foreach
(
$
this
->
messages
as
$message
)
{
foreach
(
$messages
as
$message
)
{
$command
->
bindValues
(
array
(
$command
->
bindValues
(
array
(
':level'
=>
$message
[
1
],
':level'
=>
$message
[
1
],
':category'
=>
$message
[
2
],
':category'
=>
$message
[
2
],
...
...
framework/logging/EmailTarget.php
View file @
5855b7c1
...
@@ -39,13 +39,14 @@ class EmailTarget extends Target
...
@@ -39,13 +39,14 @@ class EmailTarget extends Target
public
$headers
=
array
();
public
$headers
=
array
();
/**
/**
* Sends log [[messages]] to specified email addresses.
* Sends log messages to specified email addresses.
* @param boolean $final whether this method is called at the end of the current application
* @param array $messages the messages to be exported. See [[Logger::messages]] for the structure
* of each message.
*/
*/
public
function
export
Messages
(
$final
)
public
function
export
(
$messages
)
{
{
$body
=
''
;
$body
=
''
;
foreach
(
$
this
->
messages
as
$message
)
{
foreach
(
$messages
as
$message
)
{
$body
.=
$this
->
formatMessage
(
$message
);
$body
.=
$this
->
formatMessage
(
$message
);
}
}
$body
=
wordwrap
(
$body
,
70
);
$body
=
wordwrap
(
$body
,
70
);
...
...
framework/logging/FileTarget.php
View file @
5855b7c1
...
@@ -65,19 +65,28 @@ class FileTarget extends Target
...
@@ -65,19 +65,28 @@ class FileTarget extends Target
}
}
/**
/**
* Sends log [[messages]] to specified email addresses.
* Sends log messages to specified email addresses.
* @param boolean $final whether this method is called at the end of the current application
* @param array $messages the messages to be exported. See [[Logger::messages]] for the structure
* of each message.
*/
*/
public
function
export
Messages
(
$final
)
public
function
export
(
$messages
)
{
{
$text
=
''
;
foreach
(
$messages
as
$message
)
{
$text
.=
$this
->
formatMessage
(
$message
);
}
$fp
=
@
fopen
(
$this
->
logFile
,
'a'
);
@
flock
(
$fp
,
LOCK_EX
);
if
(
@
filesize
(
$this
->
logFile
)
>
$this
->
maxFileSize
*
1024
)
{
if
(
@
filesize
(
$this
->
logFile
)
>
$this
->
maxFileSize
*
1024
)
{
$this
->
rotateFiles
();
$this
->
rotateFiles
();
@
flock
(
$fp
,
LOCK_UN
);
@
fclose
(
$fp
);
@
file_put_contents
(
$this
->
logFile
,
$text
,
FILE_APPEND
|
LOCK_EX
);
}
else
{
@
fwrite
(
$fp
,
$text
);
@
flock
(
$fp
,
LOCK_UN
);
@
fclose
(
$fp
);
}
}
$messages
=
array
();
foreach
(
$this
->
messages
as
$message
)
{
$messages
[]
=
$this
->
formatMessage
(
$message
);
}
@
file_put_contents
(
$this
->
logFile
,
implode
(
''
,
$messages
),
FILE_APPEND
|
LOCK_EX
);
}
}
/**
/**
...
...
framework/logging/Logger.php
View file @
5855b7c1
...
@@ -8,16 +8,13 @@
...
@@ -8,16 +8,13 @@
*/
*/
namespace
yii\logging
;
namespace
yii\logging
;
use
yii\base\InvalidConfigException
;
use
yii\base\Event
;
use
yii\base\Exception
;
/**
/**
* Logger records logged messages in memory.
* Logger records logged messages in memory.
*
*
* When [[flushInterval()]] is reached or when application terminates, it will
* When the application ends or [[flushInterval]] is reached, Logger will call [[flush()]]
* call [[flush()]] to send logged messages to different log targets, such as
* to send logged messages to different log targets, such as file, email, Web.
* file, email, Web.
*
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
* @since 2.0
...
@@ -25,15 +22,6 @@ use yii\base\Exception;
...
@@ -25,15 +22,6 @@ use yii\base\Exception;
class
Logger
extends
\yii\base\Component
class
Logger
extends
\yii\base\Component
{
{
/**
/**
* @event Event an event that is triggered when [[flush()]] is called.
*/
const
EVENT_FLUSH
=
'flush'
;
/**
* @event Event an event that is triggered when [[flush()]] is called at the end of application.
*/
const
EVENT_FINAL_FLUSH
=
'finalFlush'
;
/**
* Error message level. An error message is one that indicates the abnormal termination of the
* Error message level. An error message is one that indicates the abnormal termination of the
* application and may require developer's handling.
* application and may require developer's handling.
*/
*/
...
@@ -82,7 +70,7 @@ class Logger extends \yii\base\Component
...
@@ -82,7 +70,7 @@ class Logger extends \yii\base\Component
*
*
* ~~~
* ~~~
* array(
* array(
* [0] => message (mixed)
* [0] => message (mixed
, can be a string or some complex data, such as an exception object
)
* [1] => level (integer)
* [1] => level (integer)
* [2] => category (string)
* [2] => category (string)
* [3] => timestamp (float, obtained by microtime(true))
* [3] => timestamp (float, obtained by microtime(true))
...
@@ -90,6 +78,10 @@ class Logger extends \yii\base\Component
...
@@ -90,6 +78,10 @@ class Logger extends \yii\base\Component
* ~~~
* ~~~
*/
*/
public
$messages
=
array
();
public
$messages
=
array
();
/**
* @var Router the log target router registered with this logger.
*/
public
$router
;
/**
/**
* Initializes the logger by registering [[flush()]] as a shutdown function.
* Initializes the logger by registering [[flush()]] as a shutdown function.
...
@@ -138,7 +130,9 @@ class Logger extends \yii\base\Component
...
@@ -138,7 +130,9 @@ class Logger extends \yii\base\Component
*/
*/
public
function
flush
(
$final
=
false
)
public
function
flush
(
$final
=
false
)
{
{
$this
->
trigger
(
$final
?
self
::
EVENT_FINAL_FLUSH
:
self
::
EVENT_FLUSH
);
if
(
$this
->
router
)
{
$this
->
router
->
dispatch
(
$this
->
messages
,
$final
);
}
$this
->
messages
=
array
();
$this
->
messages
=
array
();
}
}
...
@@ -149,7 +143,7 @@ class Logger extends \yii\base\Component
...
@@ -149,7 +143,7 @@ class Logger extends \yii\base\Component
* of [[YiiBase]] class file.
* of [[YiiBase]] class file.
* @return float the total elapsed time in seconds for current request.
* @return float the total elapsed time in seconds for current request.
*/
*/
public
function
getE
xecution
Time
()
public
function
getE
lapsed
Time
()
{
{
return
microtime
(
true
)
-
YII_BEGIN_TIME
;
return
microtime
(
true
)
-
YII_BEGIN_TIME
;
}
}
...
@@ -218,7 +212,7 @@ class Logger extends \yii\base\Component
...
@@ -218,7 +212,7 @@ class Logger extends \yii\base\Component
if
((
$last
=
array_pop
(
$stack
))
!==
null
&&
$last
[
0
]
===
$token
)
{
if
((
$last
=
array_pop
(
$stack
))
!==
null
&&
$last
[
0
]
===
$token
)
{
$timings
[]
=
array
(
$token
,
$category
,
$timestamp
-
$last
[
3
]);
$timings
[]
=
array
(
$token
,
$category
,
$timestamp
-
$last
[
3
]);
}
else
{
}
else
{
throw
new
Exception
(
"Unmatched profiling block:
$token
"
);
throw
new
InvalidConfig
Exception
(
"Unmatched profiling block:
$token
"
);
}
}
}
}
}
}
...
@@ -231,5 +225,4 @@ class Logger extends \yii\base\Component
...
@@ -231,5 +225,4 @@ class Logger extends \yii\base\Component
return
$timings
;
return
$timings
;
}
}
}
}
framework/logging/Router.php
View file @
5855b7c1
...
@@ -81,26 +81,21 @@ class Router extends Component
...
@@ -81,26 +81,21 @@ class Router extends Component
$this
->
targets
[
$name
]
=
Yii
::
createObject
(
$target
);
$this
->
targets
[
$name
]
=
Yii
::
createObject
(
$target
);
}
}
}
}
Yii
::
getLogger
()
->
router
=
$this
;
Yii
::
getLogger
()
->
on
(
Logger
::
EVENT_FLUSH
,
array
(
$this
,
'processMessages'
));
Yii
::
getLogger
()
->
on
(
Logger
::
EVENT_FINAL_FLUSH
,
array
(
$this
,
'processMessages'
));
}
}
/**
/**
* Retrieves and processes log messages from the system logger.
* Dispatches log messages to [[targets]].
* This method mainly serves the event handler to the [[Logger::EVENT_FLUSH]] event
* This method is called by [[Logger]] when its [[Logger::flush()]] method is called.
* and the [[Logger::EVENT_FINAL_FLUSH]] event.
* It will forward the messages to each log target registered in [[targets]].
* It will retrieve the available log messages from the [[Yii::getLogger()|system logger]]
* @param array $messages the messages to be processed
* and invoke the registered [[targets|log targets]] to do the actual processing.
* @param boolean $final whether this is the final call during a request cycle
* @param \yii\base\Event $event event parameter
*/
*/
public
function
processMessages
(
$event
)
public
function
dispatch
(
$messages
,
$final
=
false
)
{
{
$messages
=
Yii
::
getLogger
()
->
messages
;
$final
=
$event
->
name
===
Logger
::
EVENT_FINAL_FLUSH
;
foreach
(
$this
->
targets
as
$target
)
{
foreach
(
$this
->
targets
as
$target
)
{
if
(
$target
->
enabled
)
{
if
(
$target
->
enabled
)
{
$target
->
processMessages
(
$messages
,
$final
);
$target
->
collect
(
$messages
,
$final
);
}
}
}
}
}
}
...
...
framework/logging/Target.php
View file @
5855b7c1
...
@@ -50,15 +50,6 @@ abstract class Target extends \yii\base\Component
...
@@ -50,15 +50,6 @@ abstract class Target extends \yii\base\Component
*/
*/
public
$except
=
array
();
public
$except
=
array
();
/**
/**
* @var boolean whether to prefix each log message with the current session ID. Defaults to false.
*/
public
$prefixSession
=
false
;
/**
* @var boolean whether to prefix each log message with the current user name and ID. Defaults to false.
* @see \yii\web\User
*/
public
$prefixUser
=
false
;
/**
* @var boolean whether to log a message containing the current user name and ID. Defaults to false.
* @var boolean whether to log a message containing the current user name and ID. Defaults to false.
* @see \yii\web\User
* @see \yii\web\User
*/
*/
...
@@ -77,19 +68,18 @@ abstract class Target extends \yii\base\Component
...
@@ -77,19 +68,18 @@ abstract class Target extends \yii\base\Component
public
$exportInterval
=
1000
;
public
$exportInterval
=
1000
;
/**
/**
* @var array the messages that are retrieved from the logger so far by this log target.
* @var array the messages that are retrieved from the logger so far by this log target.
* @see autoExport
*/
*/
p
ublic
$
messages
=
array
();
p
rivate
$_
messages
=
array
();
private
$_levels
=
0
;
private
$_levels
=
0
;
/**
/**
* Exports log messages to a specific destination.
* Exports log messages to a specific destination.
* Child classes must implement this method.
Note that you may need
* Child classes must implement this method.
*
to clean up [[messages]] in this method to avoid re-exporting messages.
*
@param array $messages the messages to be exported. See [[Logger::messages]] for the structure
*
@param boolean $final whether this method is called at the end of the current application
*
of each message.
*/
*/
abstract
public
function
export
Messages
(
$final
);
abstract
public
function
export
(
$messages
);
/**
/**
* Processes the given log messages.
* Processes the given log messages.
...
@@ -99,45 +89,16 @@ abstract class Target extends \yii\base\Component
...
@@ -99,45 +89,16 @@ abstract class Target extends \yii\base\Component
* of each message.
* of each message.
* @param boolean $final whether this method is called at the end of the current application
* @param boolean $final whether this method is called at the end of the current application
*/
*/
public
function
processMessages
(
$messages
,
$final
)
public
function
collect
(
$messages
,
$final
)
{
{
$messages
=
$this
->
filterMessages
(
$messages
);
$this
->
_messages
=
array
(
$this
->
_messages
,
$this
->
filterMessages
(
$messages
));
$this
->
messages
=
array_merge
(
$this
->
messages
,
$messages
);
$count
=
count
(
$this
->
_messages
);
$count
=
count
(
$this
->
messages
);
if
(
$count
>
0
&&
(
$final
||
$this
->
exportInterval
>
0
&&
$count
>=
$this
->
exportInterval
))
{
if
(
$count
>
0
&&
(
$final
||
$this
->
exportInterval
>
0
&&
$count
>=
$this
->
exportInterval
))
{
$this
->
prepareExport
(
$final
);
if
((
$context
=
$this
->
getContextMessage
())
!==
''
)
{
$this
->
exportMessages
(
$final
);
$this
->
_messages
[]
=
array
(
$context
,
Logger
::
LEVEL_INFO
,
'application'
,
YII_BEGIN_TIME
);
$this
->
messages
=
array
();
}
}
/**
* Prepares the [[messages]] for exporting.
* This method will modify each message by prepending extra information
* if [[prefixSession]] and/or [[prefixUser]] are set true.
* It will also add an additional message showing context information if
* [[logUser]] and/or [[logVars]] are set.
* @param boolean $final whether this method is called at the end of the current application
*/
protected
function
prepareExport
(
$final
)
{
$prefix
=
array
();
if
(
$this
->
prefixSession
&&
(
$id
=
session_id
())
!==
''
)
{
$prefix
[]
=
"[
$id
]"
;
}
if
(
$this
->
prefixUser
&&
(
$user
=
\Yii
::
$application
->
getComponent
(
'user'
,
false
))
!==
null
)
{
$prefix
[]
=
'['
.
$user
->
getName
()
.
']'
;
$prefix
[]
=
'['
.
$user
->
getId
()
.
']'
;
}
if
(
$prefix
!==
array
())
{
$prefix
=
implode
(
' '
,
$prefix
);
foreach
(
$this
->
messages
as
$i
=>
$message
)
{
$this
->
messages
[
$i
][
0
]
=
$prefix
.
' '
.
$this
->
messages
[
$i
][
0
];
}
}
}
$this
->
export
(
$this
->
_messages
);
if
(
$final
&&
(
$context
=
$this
->
getContextMessage
())
!==
''
)
{
$this
->
_messages
=
array
();
$this
->
messages
[]
=
array
(
$context
,
Logger
::
LEVEL_INFO
,
'application'
,
YII_BEGIN_TIME
);
}
}
}
}
...
@@ -164,7 +125,7 @@ abstract class Target extends \yii\base\Component
...
@@ -164,7 +125,7 @@ abstract class Target extends \yii\base\Component
/**
/**
* @return integer the message levels that this target is interested in. This is a bitmap of
* @return integer the message levels that this target is interested in. This is a bitmap of
* level values. Defaults to 0, meaning all available levels.
* level values. Defaults to 0, meaning
all available levels.
*/
*/
public
function
getLevels
()
public
function
getLevels
()
{
{
...
...
framework/util/FileHelper.php
View file @
5855b7c1
...
@@ -10,6 +10,7 @@
...
@@ -10,6 +10,7 @@
namespace
yii\util
;
namespace
yii\util
;
use
yii\base\Exception
;
use
yii\base\Exception
;
use
yii\base\InvalidConfigException
;
/**
/**
* Filesystem helper
* Filesystem helper
...
@@ -37,7 +38,7 @@ class FileHelper
...
@@ -37,7 +38,7 @@ class FileHelper
* If the given path does not refer to an existing directory, an exception will be thrown.
* If the given path does not refer to an existing directory, an exception will be thrown.
* @param string $path the given path. This can also be a path alias.
* @param string $path the given path. This can also be a path alias.
* @return string the normalized path
* @return string the normalized path
* @throws Exception if the path does not refer to an existing directory.
* @throws
InvalidConfig
Exception if the path does not refer to an existing directory.
*/
*/
public
static
function
ensureDirectory
(
$path
)
public
static
function
ensureDirectory
(
$path
)
{
{
...
@@ -45,7 +46,7 @@ class FileHelper
...
@@ -45,7 +46,7 @@ class FileHelper
if
(
$p
!==
false
&&
(
$p
=
realpath
(
$p
))
!==
false
&&
is_dir
(
$p
))
{
if
(
$p
!==
false
&&
(
$p
=
realpath
(
$p
))
!==
false
&&
is_dir
(
$p
))
{
return
$p
;
return
$p
;
}
else
{
}
else
{
throw
new
Exception
(
'Directory does not exist: '
.
$path
);
throw
new
InvalidConfig
Exception
(
'Directory does not exist: '
.
$path
);
}
}
}
}
...
...
framework/util/StringHelper.php
View file @
5855b7c1
...
@@ -84,4 +84,17 @@ class StringHelper
...
@@ -84,4 +84,17 @@ class StringHelper
return
trim
(
strtolower
(
str_replace
(
'_'
,
$separator
,
preg_replace
(
'/(?<![A-Z])[A-Z]/'
,
$separator
.
'\0'
,
$name
))),
$separator
);
return
trim
(
strtolower
(
str_replace
(
'_'
,
$separator
,
preg_replace
(
'/(?<![A-Z])[A-Z]/'
,
$separator
.
'\0'
,
$name
))),
$separator
);
}
}
}
}
/**
* Converts an ID into a CamelCase name.
* Words in the ID separated by `$separator` (defaults to '-') will be concatenated into a CamelCase name.
* For example, 'post-tag' is converted to 'PostTag'.
* @param string $id the ID to be converted
* @param string $separator the character used to separate the words in the ID
* @return string the resulting CamelCase name
*/
public
static
function
id2camel
(
$id
,
$separator
=
'-'
)
{
return
str_replace
(
' '
,
''
,
ucwords
(
implode
(
' '
,
explode
(
$separator
,
$id
))));
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment