PHP 클래스 Neos\Flow\Mvc\Controller\MvcPropertyMappingConfigurationService

It is used when forms are generated and submitted: After a form has been generated, the method "generateRequestHash" is called with the names of all form fields. It cleans up the array of form fields and creates another representation of it, which is then serialized and hashed. Both serialized form field list and the added hash form the request hash, which will be sent over the wire (as an argument __hmac). On the validation side, the validation happens in two steps: 1) Check if the request hash is consistent (the hash value fits to the serialized string) 2) Check that _all_ GET/POST parameters submitted occur inside the form field list of the request hash. Note: It is crucially important that a private key is computed into the hash value! This is done inside the HashService.
파일 보기 프로젝트 열기: neos/flow-development-collection 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$hashService Neos\Flow\Security\Cryptography\HashService

공개 메소드들

메소드 설명
generateTrustedPropertiesToken ( array $formFieldNames, string $fieldNamePrefix = '' ) : string Generate a request hash for a list of form fields
initializePropertyMappingConfigurationFromRequest ( ActionRequest $request, Arguments $controllerArguments ) : void Initialize the property mapping configuration in $controllerArguments if the trusted properties are set inside the request.

보호된 메소드들

메소드 설명
modifyPropertyMappingConfiguration ( array $propertyConfiguration, PropertyMappingConfiguration $propertyMappingConfiguration ) : void Modify the passed $propertyMappingConfiguration according to the $propertyConfiguration which has been generated by Fluid. In detail, if the $propertyConfiguration contains an __identity field, we allow modification of objects; else we allow creation.
serializeAndHashFormFieldArray ( array $formFieldArray ) : string Serialize and hash the form field array

메소드 상세

generateTrustedPropertiesToken() 공개 메소드

Generate a request hash for a list of form fields
public generateTrustedPropertiesToken ( array $formFieldNames, string $fieldNamePrefix = '' ) : string
$formFieldNames array Array of form fields
$fieldNamePrefix string
리턴 string trusted properties token

initializePropertyMappingConfigurationFromRequest() 공개 메소드

Initialize the property mapping configuration in $controllerArguments if the trusted properties are set inside the request.
public initializePropertyMappingConfigurationFromRequest ( ActionRequest $request, Arguments $controllerArguments ) : void
$request Neos\Flow\Mvc\ActionRequest
$controllerArguments Arguments
리턴 void

modifyPropertyMappingConfiguration() 보호된 메소드

All other properties are specified as allowed properties.
protected modifyPropertyMappingConfiguration ( array $propertyConfiguration, PropertyMappingConfiguration $propertyMappingConfiguration ) : void
$propertyConfiguration array
$propertyMappingConfiguration Neos\Flow\Property\PropertyMappingConfiguration
리턴 void

serializeAndHashFormFieldArray() 보호된 메소드

Serialize and hash the form field array
protected serializeAndHashFormFieldArray ( array $formFieldArray ) : string
$formFieldArray array form field array to be serialized and hashed
리턴 string Hash

프로퍼티 상세

$hashService 보호되어 있는 프로퍼티

protected HashService,Neos\Flow\Security\Cryptography $hashService
리턴 Neos\Flow\Security\Cryptography\HashService