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
9b2fec6b
Commit
9b2fec6b
authored
May 16, 2014
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved yii\rest\Controller::checkAccess() to ActiveController.
parent
17f4f420
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
17 deletions
+17
-17
ActiveController.php
framework/rest/ActiveController.php
+17
-0
Controller.php
framework/rest/Controller.php
+0
-17
No files found.
framework/rest/ActiveController.php
View file @
9b2fec6b
...
@@ -9,6 +9,7 @@ namespace yii\rest;
...
@@ -9,6 +9,7 @@ namespace yii\rest;
use
yii\base\InvalidConfigException
;
use
yii\base\InvalidConfigException
;
use
yii\base\Model
;
use
yii\base\Model
;
use
yii\web\ForbiddenHttpException
;
/**
/**
* ActiveController implements a common set of actions for supporting RESTful access to ActiveRecord.
* ActiveController implements a common set of actions for supporting RESTful access to ActiveRecord.
...
@@ -114,4 +115,20 @@ class ActiveController extends Controller
...
@@ -114,4 +115,20 @@ class ActiveController extends Controller
'delete'
=>
[
'DELETE'
],
'delete'
=>
[
'DELETE'
],
];
];
}
}
/**
* Checks the privilege of the current user.
*
* This method should be overridden to check whether the current user has the privilege
* to run the specified action against the specified data model.
* If the user does not have access, a [[ForbiddenHttpException]] should be thrown.
*
* @param string $action the ID of the action to be executed
* @param object $model the model to be accessed. If null, it means no specific model is being accessed.
* @param array $params additional parameters
* @throws ForbiddenHttpException if the user does not have access
*/
public
function
checkAccess
(
$action
,
$model
=
null
,
$params
=
[])
{
}
}
}
framework/rest/Controller.php
View file @
9b2fec6b
...
@@ -13,7 +13,6 @@ use yii\filters\ContentNegotiator;
...
@@ -13,7 +13,6 @@ use yii\filters\ContentNegotiator;
use
yii\filters\RateLimiter
;
use
yii\filters\RateLimiter
;
use
yii\web\Response
;
use
yii\web\Response
;
use
yii\filters\VerbFilter
;
use
yii\filters\VerbFilter
;
use
yii\web\ForbiddenHttpException
;
/**
/**
* Controller is the base class for RESTful API controller classes.
* Controller is the base class for RESTful API controller classes.
...
@@ -97,20 +96,4 @@ class Controller extends \yii\web\Controller
...
@@ -97,20 +96,4 @@ class Controller extends \yii\web\Controller
{
{
return
Yii
::
createObject
(
$this
->
serializer
)
->
serialize
(
$data
);
return
Yii
::
createObject
(
$this
->
serializer
)
->
serialize
(
$data
);
}
}
/**
* Checks the privilege of the current user.
*
* This method should be overridden to check whether the current user has the privilege
* to run the specified action against the specified data model.
* If the user does not have access, a [[ForbiddenHttpException]] should be thrown.
*
* @param string $action the ID of the action to be executed
* @param object $model the model to be accessed. If null, it means no specific model is being accessed.
* @param array $params additional parameters
* @throws ForbiddenHttpException if the user does not have access
*/
public
function
checkAccess
(
$action
,
$model
=
null
,
$params
=
[])
{
}
}
}
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