Example #1
0
 /**
  * @param array $config
  * @param null $name
  * @param string $storageRole
  * @return Context
  * @throws \Exception
  */
 public function buildContextFromArray(array $config, $name = null, $storageRole = Context::STORAGE_ROLE_CHILD)
 {
     $type = in_array($config['type'], Context::getTypes()) ? $config['type'] : Context::TYPE_STANDARD;
     $technology = in_array($config['technology'], Context::getTechnologies()) ? $config['technology'] : Context::TECH_GENERIC;
     $context = new Context($name, null, $type, $storageRole);
     $context->setTechnology($technology);
     $context->setMappedTo($config['mapped_to'] ?: '');
     if (is_array($config['fields'])) {
         $fields = $config['fields'];
         // Iterate all fields and create a rule set
         foreach ($fields as $fieldData) {
             $vulnElement = $this->buildVulnerabilityElementFromArray($fieldData['vulnerabilities']);
             $source = $fieldData['source'] ?: FieldDescriptor::SOURCE_ANY;
             if (!in_array($source, FieldDescriptor::getSources())) {
                 throw new \InvalidArgumentException("Invalid source for field '{$fieldData['name']}': " . $source);
             }
             $field = new Field($fieldData['name'], $vulnElement, $source);
             $context->addField($field);
         }
     }
     if (is_array($config['children'])) {
         foreach ($config['children'] as $contextName => $contextData) {
             $child = $this->buildContextFromArray($contextData, $contextName);
             $context->addChild($child);
         }
     }
     if (is_array($config['vulnerabilities'])) {
         $vulnElement = $this->buildVulnerabilityElementFromArray($config['vulnerabilities']);
         $context->setVulnTree($vulnElement);
     }
     return $context;
 }
Example #2
0
 public function buildForm(FormBuilderInterface $builder, array $options)
 {
     parent::buildForm($builder, $options);
     $typeOptions = ['attr' => ['class' => 'form-control input-miniature'], 'error_bubbling' => true, 'constraints' => [new Choice(['message' => "Incorrect context type selected.", 'choices' => Context::getTypes(), 'multiple' => false]), new NotBlank(['message' => 'Context type is missing.'])]];
     if ($options['edit_mode_enabled']) {
         $typeOptions['choices'] = ArraysHelper::arrayFillEqualPairs(Context::getTypes());
         $typeOptions['multiple'] = false;
     }
     $builder->add('type', $options['edit_mode_enabled'] ? 'choice' : 'hidden', $typeOptions);
     $showTech = false;
     //$options['edit_mode_enabled'];
     $techOptions = ['attr' => ['class' => 'form-control input-miniature'], 'error_bubbling' => true, 'constraints' => [new Choice(['message' => "Incorrect technology selected.", 'choices' => Context::getTechnologies(), 'multiple' => false]), new NotBlank(['message' => 'Context technology missing.'])]];
     if ($showTech) {
         $techOptions['choices'] = Context::getTechnologiesLabels();
         $techOptions['multiple'] = false;
     }
     $builder->add('technology', $showTech ? 'choice' : 'hidden', $techOptions);
     $builder->add('fields', 'context_fields_collection', ['type' => 'field', 'allow_add' => true, 'allow_delete' => true, 'prototype' => false, 'by_reference' => false, 'options' => ['label' => false, 'edit_mode_enabled' => $options['edit_mode_enabled'], 'cascade_validation' => $options['cascade_validation']], 'cascade_validation' => $options['cascade_validation'], 'error_bubbling' => false, 'edit_mode_enabled' => $options['edit_mode_enabled'], 'attr' => ['class' => 'js-fields-container']]);
     $vulnTree = $builder->get('vulnTree');
     $builder->remove('vulnTree');
     $builder->add($vulnTree);
     $options['recursionLevel']--;
     if ($options['recursionLevel'] > 0) {
         $builder->add('children', 'context_collection', ['type' => 'context', 'allow_add' => true, 'allow_delete' => true, 'prototype' => false, 'options' => ['recursionLevel' => $options['recursionLevel'], 'label' => false, 'edit_mode_enabled' => $options['edit_mode_enabled'], 'cascade_validation' => $options['cascade_validation']], 'by_reference' => false, 'label' => false, 'cascade_validation' => $options['cascade_validation'], 'error_bubbling' => false, 'attr' => ['class' => 'js-child-contexts']]);
     }
     $builder->add('mappedTo', 'hidden');
 }