Properties

$idParamName

$idParamName

$data

$data : array

Type

array — params from php://input.

$priorityData

$priorityData : array

Type

array — priority model data which will override data from input.

$model

$model : \CActiveRecord

Type

\CActiveRecord — controller model.

$statusCode

$statusCode

$safeAttributes

$safeAttributes : array

Type

array — List of safe attributes which will be sent to end user. If array is empty then all attributes will be sent.

$sendToEndUser

$sendToEndUser

$contentRange

$contentRange : array

Type

array — contains information about the range of selected data. <ul> <li> total - Number of records found, excluding the $limit </li> <li> start - number of first selected record. Note start is 0 based, so starting at 5 means the 6th item. </li> <li> end - number of last selected record. Note start is 0 based, so starting at 5 means the 6th item. </li> </ul>

$criteria

$criteria : \CDbCriteria

Type

\CDbCriteria — criteria for data selection

$criteriaParams

$criteriaParams : array

Type

array — default criteria params

$notFoundErrorResponse

$notFoundErrorResponse : array

Response to the user when no record found.

Type

array

$tableAliasQuotes

$tableAliasQuotes : boolean

Whether to quote the alias name

Type

boolean

$layout

$layout

$format

$format : string

Type

string — The format in which data is sent to the user.

$baseCriteria

$baseCriteria : \CDbCriteria

The precedence criteria.

Type

\CDbCriteria

$method

$method : string

Request type, such as GET, POST, PUT, DELETE.

Type

string

$responseProvider

$responseProvider : \ApiResponseProvider

Type

\ApiResponseProvider

$_affectedModels

$_affectedModels : \CActiveRecord[]

Array of models which was affected during last operation (create, update or delete)

Type

\CActiveRecord[]

$_modelsForAffect

$_modelsForAffect

$_baseCriteria

$_baseCriteria : \CDbCriteria

Type

\CDbCriteria — Precedence criteria.

$_modelErrors

$_modelErrors : array

Type

array — model errors

$_method

$_method : string

Type

string — request type, such as GET, POST, PUT, DELETE.

$_responseProvider

$_responseProvider

Methods

__construct()

__construct( $id,  $module)

Parameters

$id
$module

getView()

getView(boolean $sendToEndUser, integer $recordId) : array

Function send response with record attributes or 404 error if no record found.

Parameters

boolean $sendToEndUser

Whether the response should be sent to the end user or should be returned as an array.

integer $recordId

priority record id.

Returns

array —

result. Null if the result sended to end user.

getList()

getList(boolean $sendToEndUser) : array

Function send response with list of record attributes or empty array if no record found.

Parameters

boolean $sendToEndUser

Whether the response should be sent to the end user or should be returned as an array.

Returns

array —

result. Null if the result sended to end user.

create()

create(boolean $sendToEndUser) : array

Function crates new record or collection of records.

Parameters

boolean $sendToEndUser

Whether the response should be sent to the end user or should be returned as an array.

Returns

array —

with new record attributes. Null if the result sended to end user.

update()

update(boolean $sendToEndUser, int $id) : array

Function updates existing record or collection of records.

Parameters

boolean $sendToEndUser

Whether the response should be sent to the end user or should be returned as an array.

int $id

record id.

Returns

array —

with updted record attributes. Null if the result sended to end user.

delete()

delete(boolean $sendToEndUser) : array

Function deletes record. If $id is null then delete all records.

Deleted records can be filtered by 'filter' and 'search' params.

Parameters

boolean $sendToEndUser

Whether the response should be sent to the end user or should be returned as an array.

Returns

array —

result. Null if the result sended to end user.

getModel()

getModel(\CActiveRecord $model, int $id, boolean $newIfNull) : \CActiveRecord

Function returns CActiveRecord model.

If param $id is not passed than return new model. If model not found by id then send response with 404 error code and terminate app if $this->sendToEndUser is true.

Parameters

\CActiveRecord $model

Model class instance

int $id

id attribute for which you want to find a record.

boolean $newIfNull

create new model in $id is null. If $id is not set then return empty model

Returns

\CActiveRecord —

model

getModelsForAffect()

getModelsForAffect(boolean $refresh, boolean $fillModels) : array

Function returns array of models which will be affected (update or delete) or array of new models on create request

Parameters

boolean $refresh

Find models or return from cache.

boolean $fillModels

Whether to fill the model attributes.

Returns

array —

Models that have to be affected.

validate()

validate(boolean $sendToEndUser) : boolean

Performs the validation.

This method executes the validation rules as declared in model rules. Only the rules applicable to the current scenario will be executed.

Errors found during the validation can be retrieved via {@link getModelErrors}.

Parameters

boolean $sendToEndUser

Whether the response should be sent to the end user or should be returned as an array.

Returns

boolean —

whether the validation is successful without any error.

getModelErrors()

getModelErrors() : array

Returns the errors for all models.

Returns

array —

errors for all models. Empty array is returned if no error.

getRelations()

getRelations() : array

Function returns relations rules for API entity

Returns

array —

array of relations

getParam()

getParam(string $name, mixed $defaultValue) : mixed

Returns the named GET or POST parameter value.

If the GET or POST parameter does not exist, the second parameter to this method will be returned. If both GET and POST contains such a named parameter, the GET parameter takes precedence.

Parameters

string $name

the GET parameter name

mixed $defaultValue

the default parameter value if the GET parameter does not exist.

Returns

mixed —

the parameter value

getAffectedModels()

getAffectedModels() : \CActiveRecord[]

Function returns array of model which was affected during last operation (create or update).

If no models was affected function returns empty array.

Returns

\CActiveRecord[] —

Affexted models

getBaseCriteria()

getBaseCriteria(boolean $refresh) : \CDbCriteria

Function returns base criteria wich will be used for searching models.

Parameters of this criteria will be used for records when searching, updating and deleting data.

Parameters

boolean $refresh

whether to reload cached _baseCriteria prop.

Returns

\CDbCriteria

setBaseCriteria()

setBaseCriteria(\CDbCriteria $criteria) : \CDbCriteria

Function sets base criteria.

Parameters

\CDbCriteria $criteria

Returns

\CDbCriteria

getMethod()

getMethod() : string

Function returns the request type, such as GET, POST, HEAD, PUT, DELETE.

Returns

string

setMethod()

setMethod(string $type) : string

Function sets the request type, such as GET, POST, HEAD, PUT, DELETE.

Parameters

string $type

Request type

Returns

string

getInputParams()

getInputParams() : array

Function fetch params from php://input.

Returns

array —

HTTP params

getResponseProvider()

getResponseProvider()

setResponseProvider()

setResponseProvider(\ApiResponseProvider $responseProvider)

Parameters

\ApiResponseProvider $responseProvider

sendJson()

sendJson(array $data, int $status, array $headers) : null

Function convert $data array to json string, sends it to client and terminates the application.

Usage example:

  $this->sendJson(
      array(...),
      200,
      array(
          "Content-Range: items $offset-$limit/$total",
          ...
      )
  );

Parameters

array $data
int $status

code.

array $headers

http headers array.

Returns

null

sendData()

sendData(array $data, integer $status, array $headers)

Function send data to end user and terminate the application.

Format of data defined based on {@link responseProvider}

Parameters

array $data

Data to be sent

integer $status

Status code (e.g. 200 or 403)

array $headers

List of additional headers to use when sending an response

getContentRangeHeader()

getContentRangeHeader() : string

Function return Content-Range header value

Returns

string —

Content-Range

getFinalCriteriaParams()

getFinalCriteriaParams() : array

Functions returns array of CDbCriteria params.

The array contains the values ​​of a $this->_criteriaParams array that can be overwritten with the values ​​from $_GET parameters.

Returns

array —

CDbCriteria params.

isCollection()

isCollection( $data) : boolean

Function checks collection array.

Collection must be an indexed array containing arrays with a set of attribute names and their values.

Parameters

$data

Returns

boolean —

if $this->data is collection of models attributes

processFilter()

processFilter(string $data) : array

Function processes filter data from request to array.

Parameters

string $data

json decoded data

[{"name":"admin","description":"administrator"},{"name":"guest","description":"Гость"}]

Returns

array —
array(
    array{
      'name' => 'admin',
      'description' => 'administrator'
    ),
    array(
      'name' => 'guest',
      'description' => 'Гость'
    )
)

getFilterCriteria()

getFilterCriteria(boolean $partialMatch, array $filterData) : \CDbCriteria

Function creates criteria from filter data in request GET paramseters

Parameters

boolean $partialMatch

Whether the value should consider partial text match (using LIKE and NOT LIKE operators). Defaults to false, meaning exact comparison.

array $filterData

Example:

array(
      array(
        'name' => 'admin',
        'description' => 'administrator'
      ),
      array(
        'name' => 'guest',
        'description' => 'Гость'
      )
  )

From this array will be created follow condition: If $partialMatch = false

string '((name='admin') AND (description='administrator')) OR ((name='guest') AND (description='Гость'))'

If $partialMatch = true

string '((name LIKE 'admin') AND (description LIKE 'administrator')) OR ((name LIKE 'guest') AND (description LIKE 'Гость'))'

Returns

\CDbCriteria

getSearchCriteria()

getSearchCriteria() : \CDbCriteria

Function creates criteria from search data in request GET paramseters

Returns

\CDbCriteria

parseFilterObject()

parseFilterObject(object $filter) : array

Function convert json decoded object to array

Parameters

object $filter

json decoded object

object(stdClass)
    public 'name' => string 'guest'
    public 'description' => string 'Гость'

Returns

array —
array(
   'name' => 'guest',
   'description' => 'Гость'
)

checkModel()

checkModel()

Function checks if $this->model property is not null and its instance of ActiveRecord class

getRecordId()

getRecordId(integer $id)

Function returns $id record attribure.

If $id parameter is passed and it is nuneric then it will be returned. Otherwise $id will be obtained from $_GET['id'].

Parameters

integer $id

accessDenied()

accessDenied() : null

Function displays "access denied" message to end users with 403 http status code and terminates the application.

Returns

null

returnResult()

returnResult(array $result, array $headers) : array

Function returns result of operation depends on $this->sendToEndUser property.

If $this->sendToEndUser is true, then result will be sended to end user and application will be terminated. If $this->sendToEndUser is false, then result will be returned as array.

Parameters

array $result
array $headers

http headers array.

Returns

array