当前位置: 首页>>代码示例>>PHP>>正文


PHP Constraint::getStorageApi方法代码示例

本文整理汇总了PHP中Symfony\Component\Validator\Constraint::getStorageApi方法的典型用法代码示例。如果您正苦于以下问题:PHP Constraint::getStorageApi方法的具体用法?PHP Constraint::getStorageApi怎么用?PHP Constraint::getStorageApi使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Symfony\Component\Validator\Constraint的用法示例。


在下文中一共展示了Constraint::getStorageApi方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: validate

 public function validate($value, Constraint $constraint)
 {
     if (!$constraint instanceof OrchestrationTableEntity) {
         throw new \InvalidArgumentException('Given constraint must ne instance of OrchestrationTableEntity class');
     }
     if ($value) {
         // table exists
         try {
             /** @var StorageApi $storageApi */
             $storageApi = $constraint->getStorageApi();
             if (!$storageApi->tableExists($value)) {
                 throw new \Exception('Configuration table does not exists');
             }
         } catch (\Exception $e) {
             $this->context->addViolation($constraint->message, array('%string%' => $value));
             return;
         }
         // table structure
         try {
             /** @var StorageApi $storageApi */
             $storageApi = $constraint->getStorageApi();
             $table = $storageApi->getTable($value);
             $token = new Token($storageApi);
             $requiredColumns = self::getRequiredColumns();
             $missingColumns = array_diff($requiredColumns, $table['columns']);
             if (!empty($missingColumns)) {
                 throw new \Exception('Invalid configuration table structure');
             }
         } catch (\Exception $e) {
             $this->context->addViolation($constraint->structureMessage, array('%string%' => implode(', ', $requiredColumns)));
             return;
         }
     }
 }
开发者ID:keboola,项目名称:orchestrator-bundle,代码行数:34,代码来源:OrchestrationTableEntityValidator.php

示例2: validate

 public function validate($value, Constraint $constraint)
 {
     if (!$constraint instanceof TokenEntity) {
         throw new \InvalidArgumentException('Given constraint must ne instance of TokenEntity class');
     }
     if ($value) {
         $configValidation = false;
         try {
             /** @var StorageApi $storageApi */
             $storageApi = $constraint->getStorageApi();
             $token = $storageApi->getToken($value);
             if (!$token) {
                 throw new \Exception('Token does not exists');
             }
             $userToken = new Token($storageApi);
             $configValidation = true;
             $components = new Components(new StorageApi(array('token' => $token['token'], 'url' => $storageApi->getApiUrl(), 'userAgent' => $storageApi->getUserAgent())));
             $components->listComponents(new ListConfigurationsOptions());
         } catch (\Exception $e) {
             if ($e instanceof \Keboola\StorageApi\ClientException && $e->getCode() === 403) {
                 //@FIXME jak zmenit api exception code
                 if ($configValidation) {
                     $this->context->addViolation($constraint->configMessage, array('%string%' => $value), null, null, 'TOKEN_PERMISSION');
                 } else {
                     $this->context->addViolation($constraint->permissionsMessage, array(), null, null, 'TOKEN_PERMISSION');
                 }
             } else {
                 $this->context->addViolation($constraint->message, array('%string%' => $value));
             }
             return;
         }
         //@FIXME doplnit validaci na master token!!!
     }
 }
开发者ID:keboola,项目名称:orchestrator-bundle,代码行数:34,代码来源:TokenEntityValidator.php


注:本文中的Symfony\Component\Validator\Constraint::getStorageApi方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。