function it_resolves_eligible_values_for_a_set_of_attributes($localeRepository, $channelRepository, AttributeInterface $sku, AttributeInterface $name, AttributeInterface $desc, AttributeInterface $tax, LocaleInterface $fr, LocaleInterface $en, ChannelInterface $ecom, ChannelInterface $print)
 {
     $sku->getCode()->willReturn('sku');
     $sku->getAttributeType()->willReturn('pim_catalog_identifier');
     $sku->isLocalizable()->willReturn(false);
     $sku->isScopable()->willReturn(false);
     $sku->isLocaleSpecific()->willReturn(false);
     $name->getCode()->willReturn('name');
     $name->getAttributeType()->willReturn('pim_catalog_text');
     $name->isLocalizable()->willReturn(true);
     $name->isScopable()->willReturn(false);
     $name->isLocaleSpecific()->willReturn(false);
     $desc->getCode()->willReturn('description');
     $desc->getAttributeType()->willReturn('pim_catalog_text');
     $desc->isLocalizable()->willReturn(true);
     $desc->isScopable()->willReturn(true);
     $desc->isLocaleSpecific()->willReturn(false);
     $tax->getCode()->willReturn('tax');
     $tax->getAttributeType()->willReturn('pim_catalog_text');
     $tax->isLocalizable()->willReturn(true);
     $tax->isScopable()->willReturn(false);
     $tax->isLocaleSpecific()->willReturn(true);
     $tax->getLocaleSpecificCodes()->willReturn(['fr_FR']);
     $fr->getCode()->willReturn('fr_FR');
     $en->getCode()->willReturn('en_US');
     $localeRepository->getActivatedLocales()->willReturn([$fr, $en]);
     $ecom->getCode()->willReturn('ecommerce');
     $ecom->getLocales()->willReturn([$en, $fr]);
     $print->getCode()->willReturn('print');
     $print->getLocales()->willReturn([$en, $fr]);
     $channelRepository->findAll()->willReturn([$ecom, $print]);
     $this->resolveEligibleValues([$sku, $name, $desc, $tax])->shouldReturn([['attribute' => 'sku', 'type' => 'pim_catalog_identifier', 'locale' => null, 'scope' => null], ['attribute' => 'name', 'type' => 'pim_catalog_text', 'locale' => 'fr_FR', 'scope' => null], ['attribute' => 'name', 'type' => 'pim_catalog_text', 'locale' => 'en_US', 'scope' => null], ['attribute' => 'description', 'type' => 'pim_catalog_text', 'locale' => 'en_US', 'scope' => 'ecommerce'], ['attribute' => 'description', 'type' => 'pim_catalog_text', 'locale' => 'fr_FR', 'scope' => 'ecommerce'], ['attribute' => 'description', 'type' => 'pim_catalog_text', 'locale' => 'en_US', 'scope' => 'print'], ['attribute' => 'description', 'type' => 'pim_catalog_text', 'locale' => 'fr_FR', 'scope' => 'print'], ['attribute' => 'tax', 'type' => 'pim_catalog_text', 'locale' => 'fr_FR', 'scope' => null]]);
 }
 function it_does_not_throw_an_exception_when_scopable_requirement_is_respected(AttributeInterface $description, AttributeInterface $name)
 {
     $description->isLocalizable()->willReturn(true);
     $description->isLocaleSpecific()->willReturn(false);
     $description->isScopable()->willReturn(true);
     $description->getCode()->willReturn('description');
     $name->isLocalizable()->willReturn(false);
     $name->isScopable()->willReturn(false);
     $name->getCode()->willReturn('name');
     $this->validateScope($description, 'ecommerce');
     $this->validateScope($name, null);
 }
 /**
  * Filter expected values based on the locales available for the provided attribute
  *
  * @param AttributeInterface $attribute
  * @param array              $values
  *
  * @return array
  */
 protected function filterExpectedValues(AttributeInterface $attribute, array $values)
 {
     if ($attribute->isLocaleSpecific()) {
         $availableLocales = $attribute->getLocaleSpecificCodes();
         foreach ($values as $index => $value) {
             if ($value['locale'] && !in_array($value['locale'], $availableLocales)) {
                 unset($values[$index]);
             }
         }
     }
     return $values;
 }
 /**
  * Check if locale data is consistent with the attribute localizable property
  *
  * @param AttributeInterface $attribute
  * @param string             $locale
  *
  * @throws \LogicException
  */
 public function validateLocale(AttributeInterface $attribute, $locale)
 {
     if (!$attribute->isLocalizable() && null === $locale) {
         return;
     }
     if ($attribute->isLocalizable() && null === $locale) {
         throw new \LogicException(sprintf('Attribute "%s" expects a locale, none given.', $attribute->getCode()));
     }
     if (!$attribute->isLocalizable() && null !== $locale) {
         throw new \LogicException(sprintf('Attribute "%s" does not expect a locale, "%s" given.', $attribute->getCode(), $locale));
     }
     if (null === static::$localeCodes) {
         static::$localeCodes = $this->getActivatedLocaleCodes();
     }
     if (!in_array($locale, static::$localeCodes)) {
         throw new \LogicException(sprintf('Attribute "%s" expects an existing and activated locale, "%s" given.', $attribute->getCode(), $locale));
     }
     if ($attribute->isLocaleSpecific() && !in_array($locale, $attribute->getLocaleSpecificCodes())) {
         throw new \LogicException(sprintf('Attribute "%s" is locale specific and expects one of these locales: %s, "%s" given.', $attribute->getCode(), implode($attribute->getLocaleSpecificCodes(), ', '), $locale));
     }
 }
 function it_throws_exception_when_the_field_name_is_not_consistent_with_the_channel_locale($attributeRepository, $channelRepository, $localeRepository, AttributeInterface $attribute, LocaleInterface $locale, ChannelInterface $channel)
 {
     // localizable without the associated locale not in the channel
     $attribute->getCode()->willReturn('description');
     $attribute->isLocalizable()->willReturn(true);
     $attribute->isScopable()->willReturn(true);
     $attribute->getBackendType()->willReturn('text');
     $attribute->isLocaleSpecific()->willReturn(false);
     $attributeInfos = ['attribute' => $attribute, 'locale_code' => 'de_DE', 'scope_code' => 'mobile'];
     $attributeRepository->findOneByIdentifier('description')->willReturn($attribute);
     $channelRepository->findOneByIdentifier($attributeInfos['scope_code'])->shouldBeCalled()->willReturn($channel);
     $localeRepository->findOneByIdentifier($attributeInfos['locale_code'])->shouldBeCalled()->willReturn($locale);
     $channel->hasLocale($locale)->shouldBeCalled()->willReturn(false);
     $this->shouldThrow(new \InvalidArgumentException('The locale "de_DE" of the field "description-de_DE-mobile" is not available in scope "mobile"'))->duringExtractColumnInfo('description-de_DE-mobile');
 }
 /**
  * Check if provided locales for an locale specific attribute exist
  *
  * @param AttributeInterface $attribute
  * @param array              $explodedFieldNames
  */
 protected function checkForLocaleSpecificValue(AttributeInterface $attribute, array $explodedFieldNames)
 {
     if ($attribute->isLocaleSpecific()) {
         $attributeInfo = $this->extractAttributeInfo($attribute, $explodedFieldNames);
         $availableLocales = $attribute->getLocaleSpecificCodes();
         if (!in_array($explodedFieldNames[1], $availableLocales)) {
             throw new \LogicException(sprintf('The provided specific locale "%s" does not exist for "%s" attribute ', $attributeInfo['locale_code'], $attribute->getCode()));
         }
     }
 }
 /**
  * Test if a value is accepted or not
  *
  * @param AttributeInterface $attribute
  * @param array              $value
  *
  * @return boolean
  */
 protected function acceptValue(AttributeInterface $attribute, $value, array $options = [])
 {
     if (null !== $value['locale']) {
         $locale = $this->getLocale($value['locale']);
         if (null === $locale) {
             return false;
         }
         if (!$attribute->isLocalizable()) {
             return false;
         }
         if (!$locale->isActivated()) {
             return false;
         }
         if ($this->objectFilter->filterObject($this->getLocale($value['locale']), 'pim.internal_api.locale.edit', $options)) {
             return false;
         }
         if ($attribute->isLocaleSpecific() && !in_array($value['locale'], $attribute->getLocaleSpecificCodes())) {
             return false;
         }
     }
     if (null !== $value['scope']) {
         if (!$attribute->isScopable()) {
             return false;
         }
         if (null === $this->getChannel($value['scope'])) {
             return false;
         }
     }
     return true;
 }
 /**
  * @param AttributeInterface $attribute
  * @param array              $values
  *
  * @throws ObjectNotFoundException
  *
  * @return array
  */
 protected function getNewValuesData(AttributeInterface $attribute, array $values)
 {
     $newValues = [];
     foreach ($values as $value) {
         $acceptValue = true;
         if (null !== $value['locale']) {
             $isAuthorizedOnLocale = !$this->objectFilter->filterObject($this->getLocale($value['locale']), 'pim.internal_api.locale.edit');
             $isEditableOnLocale = $attribute->isLocaleSpecific() ? in_array($value['locale'], $attribute->getLocaleSpecificCodes()) : true;
             $acceptValue = $isAuthorizedOnLocale && $isEditableOnLocale;
         }
         if ($attribute->isScopable() && $acceptValue) {
             $channel = $this->channelRepository->findOneByIdentifier($value['scope']);
             if (null === $channel) {
                 $acceptValue = false;
             }
         }
         if ($acceptValue) {
             $newValues[] = $value;
         }
     }
     return $newValues;
 }