PHP Class Eva\EvaEngine\Interceptor\Dispatch

Afficher le fichier Open project: evaengine/evaengine Class Usage Examples

Protected Properties

Свойство Type Description
$cachableHeaderKeys array HTTP header keys allow to cache WARNING: DONOT cache Set-Cookies!
$cacheBodyKey string Cache key for http body
$cacheHeadersKey string Cache key for http header
$debugQueryKey string default debug query key, url contains this key will make cache re-genrated
$timestampQueryKey 在 url 中加入时间戳,以阻挡网络传输中可能存在的缓存

Méthodes publiques

Méthode Description
beforeExecuteRoute ( Phalcon\Events\Event $event, Phalcon\Mvc\DispatcherInterface $dispatcher ) : boolean
changeJsonpToJson ( $body, $callback ) : string Change jsonp string to json
generateCacheKeys ( Phalcon\Http\Request $request, array $ignores = [] ) : array Generate cache key pair (for response header / body) by Host + Uri + Allowed Queries
getCachableHeaderKeys ( ) : array
getCacheBodyKey ( ) : string
getCacheHeadersKey ( ) : string
getDebugQueryKey ( ) : string
getInterceptorParams ( Phalcon\Mvc\DispatcherInterface $dispatcher ) : array Parse Dispatcher params to array
injectInterceptor ( Phalcon\Mvc\DispatcherInterface $dispatcher ) : boolean
setCachableHeaderKeys ( array $cachableHeaderKeys )
setDebugQueryKey ( $debugQueryKey )

Méthodes protégées

Méthode Description
intercept ( Phalcon\Http\Request $request, array $params, Phalcon\Cache\BackendInterface $cache ) : boolean Intercept a input http request

Method Details

beforeExecuteRoute() public méthode

public beforeExecuteRoute ( Phalcon\Events\Event $event, Phalcon\Mvc\DispatcherInterface $dispatcher ) : boolean
$event Phalcon\Events\Event
$dispatcher Phalcon\Mvc\DispatcherInterface
Résultat boolean

changeJsonpToJson() public static méthode

Change jsonp string to json
public static changeJsonpToJson ( $body, $callback ) : string
$body
$callback
Résultat string

generateCacheKeys() public méthode

Generate cache key pair (for response header / body) by Host + Uri + Allowed Queries
public generateCacheKeys ( Phalcon\Http\Request $request, array $ignores = [] ) : array
$request Phalcon\Http\Request
$ignores array
Résultat array

getCachableHeaderKeys() public méthode

public getCachableHeaderKeys ( ) : array
Résultat array

getCacheBodyKey() public méthode

public getCacheBodyKey ( ) : string
Résultat string

getCacheHeadersKey() public méthode

public getCacheHeadersKey ( ) : string
Résultat string

getDebugQueryKey() public méthode

public getDebugQueryKey ( ) : string
Résultat string

getInterceptorParams() public méthode

Parse Dispatcher params to array
public getInterceptorParams ( Phalcon\Mvc\DispatcherInterface $dispatcher ) : array
$dispatcher Phalcon\Mvc\DispatcherInterface
Résultat array

injectInterceptor() public méthode

public injectInterceptor ( Phalcon\Mvc\DispatcherInterface $dispatcher ) : boolean
$dispatcher Phalcon\Mvc\DispatcherInterface
Résultat boolean true if cache missed(intercepter injected), false if cache hit(intercepter not injected)

intercept() protected méthode

Intercept a input http request
protected intercept ( Phalcon\Http\Request $request, array $params, Phalcon\Cache\BackendInterface $cache ) : boolean
$request Phalcon\Http\Request
$params array
$cache Phalcon\Cache\BackendInterface
Résultat boolean Will return true if cache hit.

setCachableHeaderKeys() public méthode

public setCachableHeaderKeys ( array $cachableHeaderKeys )
$cachableHeaderKeys array

setDebugQueryKey() public méthode

public setDebugQueryKey ( $debugQueryKey )
$debugQueryKey

Property Details

$cachableHeaderKeys protected_oe property

HTTP header keys allow to cache WARNING: DONOT cache Set-Cookies!
protected array $cachableHeaderKeys
Résultat array

$cacheBodyKey protected_oe property

Cache key for http body
protected string $cacheBodyKey
Résultat string

$cacheHeadersKey protected_oe property

Cache key for http header
protected string $cacheHeadersKey
Résultat string

$debugQueryKey protected_oe property

default debug query key, url contains this key will make cache re-genrated
protected string $debugQueryKey
Résultat string

$timestampQueryKey protected_oe property

在 url 中加入时间戳,以阻挡网络传输中可能存在的缓存
protected $timestampQueryKey