Inheritance: extends BaseUser
 /**
  * @param User $user
  * @param ContactInterface $contact
  */
 protected function archiveEmail(User $user, ContactInterface $contact)
 {
     if ($contact->getMainEmail() !== $user->getEmail()) {
         if ($contact->getMainEmail()) {
             $hasEmail = false;
             /** @var Email $email */
             foreach ($contact->getEmails() as $email) {
                 if ($email->getEmail() === $contact->getMainEmail()) {
                     $hasEmail = true;
                 }
             }
             if (!$hasEmail) {
                 $email = new Email();
                 $email->setEmail($contact->getMainEmail());
                 /** @var EmailType $emailType */
                 $emailType = $this->entityManager->getRepository(EmailType::class)->find(1);
                 if ($emailType) {
                     $email->setEmailType($emailType);
                     $contact->addEmail($email);
                 }
             }
         }
         $contact->setMainEmail($user->getEmail());
     }
 }
Ejemplo n.º 2
0
 public function testEnableUser()
 {
     $client = $this->createAuthenticatedClient();
     $client->request('POST', '/api/users/' . $this->user2->getId() . '?action=enable');
     $response = json_decode($client->getResponse()->getContent());
     $this->assertEquals(true, $response->enabled);
 }
Ejemplo n.º 3
0
 public function testNegativeVoteWithoutGroup()
 {
     foreach ($this->user->getUserGroups() as $userGroup) {
         $this->user->removeUserGroup($userGroup);
     }
     $access = $this->voter->vote($this->token->reveal(), new SecurityCondition('sulu.security.roles'), ['security']);
     $this->assertSame(VoterInterface::ACCESS_DENIED, $access);
 }
Ejemplo n.º 4
0
 public function testResolveUserFunction()
 {
     $user1 = new User();
     $contact1 = new Contact();
     $contact1->setFirstName('Hikaru');
     $contact1->setLastName('Sulu');
     $user1->setContact($contact1);
     $user2 = new User();
     $contact2 = new Contact();
     $contact2->setFirstName('John');
     $contact2->setLastName('Cho');
     $user2->setContact($contact2);
     $this->userRepository->expects($this->exactly(2))->method('findUserById')->will($this->returnValueMap([[1, $user1], [2, $user2]]));
     $contact = $this->extension->resolveUserFunction(1);
     $this->assertEquals('Hikaru Sulu', $contact->getFullName());
     $contact = $this->extension->resolveUserFunction(2);
     $this->assertEquals('John Cho', $contact->getFullName());
 }
Ejemplo n.º 5
0
 protected function initOrm()
 {
     $this->purgeDatabase();
     $contact = new Contact();
     $contact->setFirstName('Max');
     $contact->setLastName('Mustermann');
     $this->em->persist($contact);
     $this->em->flush();
     $emailType = new EmailType();
     $emailType->setName('Private');
     $this->em->persist($emailType);
     $this->em->flush();
     $email = new Email();
     $email->setEmail('*****@*****.**');
     $email->setEmailType($emailType);
     $this->em->persist($email);
     $this->em->flush();
     $role1 = new Role();
     $role1->setName('Role1');
     $role1->setSystem('Sulu');
     $this->em->persist($role1);
     $this->em->flush();
     $user = new User();
     $user->setUsername('admin');
     $user->setPassword('securepassword');
     $user->setSalt('salt');
     $user->setLocale('de');
     $user->setContact($contact);
     $this->em->persist($user);
     $this->em->flush();
     $userRole1 = new UserRole();
     $userRole1->setRole($role1);
     $userRole1->setUser($user);
     $userRole1->setLocale(json_encode(['de', 'en']));
     $this->em->persist($userRole1);
     $this->em->flush();
     $permission1 = new Permission();
     $permission1->setPermissions(122);
     $permission1->setRole($role1);
     $permission1->setContext('Context 1');
     $this->em->persist($permission1);
     $this->em->flush();
     $tag1 = new Tag();
     $tag1->setName('tag1');
     $this->em->persist($tag1);
     $this->em->flush();
     $tag2 = new Tag();
     $tag2->setName('tag2');
     $this->em->persist($tag2);
     $this->em->flush();
     $tag3 = new Tag();
     $tag3->setName('tag3');
     $this->em->persist($tag3);
     $this->em->flush();
     $tag4 = new Tag();
     $tag4->setName('tag4');
     $this->em->persist($tag4);
     $this->em->flush();
 }
Ejemplo n.º 6
0
 public function setUp()
 {
     $roleIdReflection = new \ReflectionProperty(BaseRole::class, 'id');
     $roleIdReflection->setAccessible(true);
     $this->user = new User();
     $this->userRole = new UserRole();
     $this->role = new Role();
     $roleIdReflection->setValue($this->role, 1);
     $this->role->setName('role1');
     $this->permission = new Permission();
     $this->permission->setPermissions(122);
     $this->permission->setContext('sulu.security.roles');
     $this->role->addPermission($this->permission);
     $this->userRole->setRole($this->role);
     $this->user->addUserRole($this->userRole);
     $this->token = $this->prophesize(TokenInterface::class);
     $this->token->getUser()->willReturn($this->user);
     $this->accessControlManager = $this->prophesize(AccessControlManagerInterface::class);
     $this->voter = new SecurityContextVoter($this->accessControlManager->reveal(), $this->permissions);
 }
Ejemplo n.º 7
0
 public function testResetActionWithInvalidToken()
 {
     $client = $this->createAuthenticatedClient();
     $passwordBefore = $this->user3->getPassword();
     $client->request('GET', '/security/reset', ['token' => 'thistokendoesnotexist', 'password' => 'thispasswordshouldnotbeapplied']);
     $response = json_decode($client->getResponse()->getContent());
     $user = $this->em->find('SuluSecurityBundle:User', $this->user3->getId());
     $this->assertEquals(400, $client->getResponse()->getStatusCode());
     $this->assertEquals(1005, $response->code);
     $this->assertEquals($passwordBefore, $user->getPassword());
 }
 public function testUserBlame()
 {
     $context = $this->getContainer()->get('security.context');
     $token = new UsernamePasswordToken('test', 'test', 'test_provider', []);
     $user = new User();
     $user->setUsername('dantleech');
     $user->setPassword('foo');
     $user->setLocale('fr');
     $user->setSalt('saltz');
     $this->db('ORM')->getOm()->persist($user);
     $this->db('ORM')->getOm()->flush();
     $token->setUser($user);
     $context->setToken($token);
     $contact = new Contact();
     $contact->setFirstName('Max');
     $contact->setLastName('Mustermann');
     $contact->setPosition('CEO');
     $contact->setSalutation('Sehr geehrter Herr Dr Mustermann');
     $this->db('ORM')->getOm()->persist($contact);
     $this->db('ORM')->getOm()->flush();
     $changer = $contact->getChanger();
     $creator = $contact->getCreator();
     $this->assertSame($changer, $user);
     $this->assertSame($creator, $user);
 }
Ejemplo n.º 9
0
 private function createUser()
 {
     $user = new User();
     $user->setUsername('dantleech');
     $user->setPassword('mypassword');
     $user->setLocale('en');
     $user->setSalt('12345');
     $this->entityManager->persist($user);
     $this->entityManager->flush();
     $this->user = $user;
 }
Ejemplo n.º 10
0
 /**
  * Setup test data.
  */
 protected function setUpTestData()
 {
     // Account
     $this->account = new Account();
     $this->account->setName('Company');
     $this->account->setType(Account::TYPE_BASIC);
     $this->account->setUid('uid-123');
     $this->account->setMainEmail('*****@*****.**');
     $this->account2 = clone $this->account;
     // Country
     $country = new Country();
     $country->setName('Country');
     $country->setCode('co');
     // Address type
     $addressType = new AddressType();
     $addressType->setName('Business');
     // Address
     $this->address = new Address();
     $this->address->setStreet('Sample-Street');
     $this->address->setNumber('12');
     $this->address->setAddition('Entrance 2');
     $this->address->setCity('Sample-City');
     $this->address->setState('State');
     $this->address->setZip('12345');
     $this->address->setCountry($country);
     $this->address->setPostboxNumber('postboxNumber');
     $this->address->setPostboxPostcode('postboxPostcode');
     $this->address->setPostboxCity('postboxCity');
     $this->address->setAddressType($addressType);
     // Address
     $this->address2 = new Address();
     $this->address2->setStreet('Street');
     $this->address2->setNumber('2');
     $this->address2->setCity('Utopia');
     $this->address2->setZip('1');
     $this->address2->setCountry($country);
     $this->address2->setAddressType($addressType);
     // Add address to entities.
     $accountAddress = new AccountAddress();
     $accountAddress->setAccount($this->account);
     $accountAddress->setAddress($this->address);
     $accountAddress->setMain(true);
     $this->account->addAccountAddress($accountAddress);
     // Phone
     $phoneType = new PhoneType();
     $phoneType->setName('Business');
     $this->phone = new Phone();
     $this->phone->setPhone('+43 123 / 456 789');
     $this->phone->setPhoneType($phoneType);
     // Contact Title
     $title = new ContactTitle();
     $title->setTitle('Dr');
     // Contact
     $this->contact = $this->contactRepository->createNew();
     $this->contact->setFirstName('John');
     $this->contact->setLastName('Doe');
     $this->contact->setTitle($title);
     $this->contact->setMainEmail('*****@*****.**');
     // Second Contact
     $this->contact2 = $this->contactRepository->createNew();
     $this->contact2->setFirstName('Johanna');
     $this->contact2->setLastName('Dole');
     $this->contact2->setMainEmail('*****@*****.**');
     $contact = $this->contactRepository->createNew();
     $contact->setFirstName('Max');
     $contact->setLastName('Mustermann');
     $this->em->persist($contact);
     $this->accountContact = $this->createAccountContact($this->account, $this->contact, true);
     $this->accountContact2 = $this->createAccountContact($this->account, $this->contact2, true);
     $user = new User();
     $user->setUsername('test');
     $user->setPassword('test');
     $user->setSalt('');
     $user->setLocale('en');
     $user->setContact($this->contact);
     $this->user = $user;
     $this->orderStatus = $this->em->getRepository(self::$orderStatusEntityName)->find(OrderStatus::STATUS_CREATED);
     // Order address
     $this->orderAddressDelivery = new OrderAddress();
     $this->orderAddressDelivery->setFirstName($this->contact->getFirstName());
     $this->orderAddressDelivery->setLastName($this->contact->getLastName());
     $this->orderAddressDelivery->setTitle($title->getTitle());
     $this->orderAddressDelivery->setStreet($this->address->getStreet());
     $this->orderAddressDelivery->setNumber($this->address->getNumber());
     $this->orderAddressDelivery->setAddition($this->address->getAddition());
     $this->orderAddressDelivery->setCity($this->address->getCity());
     $this->orderAddressDelivery->setZip($this->address->getZip());
     $this->orderAddressDelivery->setState($this->address->getState());
     $this->orderAddressDelivery->setCountry($this->address->getCountry()->getName());
     $this->orderAddressDelivery->setPostboxNumber($this->address->getPostboxNumber());
     $this->orderAddressDelivery->setPostboxPostcode($this->address->getPostboxPostcode());
     $this->orderAddressDelivery->setPostboxCity($this->address->getPostboxCity());
     $this->orderAddressDelivery->setAccountName($this->account->getName());
     $this->orderAddressDelivery->setUid($this->account->getUid());
     $this->orderAddressDelivery->setPhone($this->phone->getPhone());
     $this->orderAddressDelivery->setPhoneMobile('+43 123 / 456');
     $this->orderAddressDelivery->setContactAddress($this->address);
     // Clone address for invoice.
     $this->orderAddressInvoice = clone $this->orderAddressDelivery;
     $this->termsOfDelivery = new TermsOfDelivery();
     $this->termsOfDelivery->setTerms('10kg minimum');
     $this->termsOfPayment = new TermsOfPayment();
     $this->termsOfPayment->setTerms('10% off');
     // Order
     $this->order = $this->createNewTestOrder();
     $order2 = $this->createNewTestOrder();
     $order2->setNumber('12345');
     $order2->setDeliveryAddress(null);
     $order2->setInvoiceAddress(null);
     // Product order unit
     $orderUnit = new Unit();
     $orderUnit->setId(1);
     $orderUnitTranslation = new UnitTranslation();
     $orderUnitTranslation->setUnit($orderUnit);
     $orderUnitTranslation->setName('pc');
     $orderUnitTranslation->setLocale('en');
     $orderUnit->addTranslation($orderUnitTranslation);
     $this->em->persist($orderUnit);
     $this->em->persist($orderUnitTranslation);
     // Product type
     $productType = new Type();
     $productType->setTranslationKey('product-type');
     // Product status
     $productStatus = new Status();
     $productStatus->setId(Status::ACTIVE);
     $metadata = $this->em->getClassMetadata(Status::class);
     $metadata->setIdGeneratorType(ClassMetadata::GENERATOR_TYPE_NONE);
     $productStatusTranslation = new StatusTranslation();
     $productStatusTranslation->setLocale($this->locale);
     $productStatusTranslation->setName('EnglishProductStatus-1');
     $productStatusTranslation->setStatus($productStatus);
     // Product
     $this->product = new $this->productEntity();
     $this->product->setNumber('ProductNumber-1');
     $this->product->setManufacturer('EnglishManufacturer-1');
     $this->product->setType($productType);
     $this->product->setStatus($productStatus);
     $this->product->setCreated(new DateTime());
     $this->product->setChanged(new DateTime());
     $this->product->setSupplier($this->account);
     $this->product->setOrderUnit($orderUnit);
     // Product translation
     $this->productTranslation = new ProductTranslation();
     $this->productTranslation->setProduct($this->product);
     $this->productTranslation->setLocale($this->locale);
     $this->productTranslation->setName('EnglishProductTranslationName-1');
     $this->productTranslation->setShortDescription('EnglishProductShortDescription-1');
     $this->productTranslation->setLongDescription('EnglishProductLongDescription-1');
     $this->product->addTranslation($this->productTranslation);
     // Product
     $this->product2 = clone $this->product;
     $this->product2->setSupplier($this->account);
     $translation2 = clone $this->productTranslation;
     $translation2->setProduct($this->product2);
     $this->product2->addTranslation($translation2);
     $this->em->persist($translation2);
     $this->currency = new Currency();
     $this->currency->setCode($this->defaultCurrencyCode);
     $this->currency->setNumber('1');
     $this->currency->setId('1');
     $this->currency->setName('Euro');
     $this->productPrice = new ProductPrice();
     $this->productPrice->setCurrency($this->currency);
     $this->productPrice->setMinimumQuantity(0);
     $this->productPrice->setPrice(14.5);
     $this->productPrice->setProduct($this->product);
     $this->product->addPrice($this->productPrice);
     $price2 = clone $this->productPrice;
     $price2->setProduct($this->product2);
     $price2->setPrice(15.5);
     $this->em->persist($price2);
     $this->product2->addPrice($price2);
     // Item
     $this->item = $this->createNewTestItem();
     $this->item2 = $this->createNewTestItem();
     $this->item2->setSupplier($this->account2);
     $orderTypeTranslationManual = new OrderTypeTranslation();
     $orderTypeTranslationManual->setLocale('en');
     $orderTypeTranslationManual->setName('order type translation manual');
     $orderTypeTranslationShop = new OrderTypeTranslation();
     $orderTypeTranslationShop->setLocale('en');
     $orderTypeTranslationShop->setName('order type translation shop');
     $orderTypeTranslationAnon = new OrderTypeTranslation();
     $orderTypeTranslationAnon->setLocale('en');
     $orderTypeTranslationAnon->setName('order type translation anon');
     $this->orderTypeManual = new OrderType();
     $metadata = $this->em->getClassMetadata(get_class($this->orderTypeManual));
     $metadata->setIdGeneratorType(ClassMetadata::GENERATOR_TYPE_NONE);
     $this->orderTypeManual->setId(OrderType::MANUAL);
     $this->orderTypeManual->addTranslation($orderTypeTranslationManual);
     $orderTypeTranslationManual->setType($this->orderTypeManual);
     $this->orderTypeShop = new OrderType();
     $metadata = $this->em->getClassMetadata(get_class($this->orderTypeShop));
     $metadata->setIdGeneratorType(ClassMetadata::GENERATOR_TYPE_NONE);
     $this->orderTypeShop->setId(OrderType::SHOP);
     $this->orderTypeShop->addTranslation($orderTypeTranslationShop);
     $orderTypeTranslationShop->setType($this->orderTypeShop);
     $this->orderTypeAnon = new OrderType();
     $metadata = $this->em->getClassMetadata(get_class($this->orderTypeAnon));
     $metadata->setIdGeneratorType(ClassMetadata::GENERATOR_TYPE_NONE);
     $this->orderTypeAnon->setId(OrderType::ANONYMOUS);
     $this->orderTypeAnon->addTranslation($orderTypeTranslationAnon);
     $orderTypeTranslationAnon->setType($this->orderTypeAnon);
     $this->order->addItem($this->item);
     $this->order->addItem($this->item2);
     $this->order->setType($this->orderTypeManual);
     $order2->setType($this->orderTypeManual);
     $item = $this->createNewTestItem();
     $item2 = $this->createNewTestItem();
     $order2->addItem($item);
     $order2->addItem($item2);
     $this->addonPrice = new AddonPrice();
     $this->addonPrice->setPrice(123.56);
     $this->addonPrice->setCurrency($this->currency);
     $this->addon = new Addon();
     $this->addon->setProduct($this->product);
     $this->addon->setAddon($this->product2);
     $this->addonPrice->setAddon($this->addon);
     $this->addon->addAddonPrice($this->addonPrice);
     $this->em->persist($this->addon);
     $this->em->persist($this->addonPrice);
     $this->em->persist($item);
     $this->em->persist($item2);
     $this->em->persist($accountAddress);
     $this->em->persist($this->currency);
     $this->em->persist($this->productPrice);
     $this->em->persist($user);
     $this->em->persist($this->orderTypeManual);
     $this->em->persist($this->orderTypeShop);
     $this->em->persist($this->orderTypeAnon);
     $this->em->persist($orderTypeTranslationManual);
     $this->em->persist($orderTypeTranslationShop);
     $this->em->persist($orderTypeTranslationAnon);
     $this->em->persist($this->account);
     $this->em->persist($this->account2);
     $this->em->persist($title);
     $this->em->persist($country);
     $this->em->persist($this->termsOfPayment);
     $this->em->persist($this->termsOfDelivery);
     $this->em->persist($country);
     $this->em->persist($addressType);
     $this->em->persist($this->address);
     $this->em->persist($this->address2);
     $this->em->persist($phoneType);
     $this->em->persist($this->phone);
     $this->em->persist($this->contact);
     $this->em->persist($this->contact2);
     $this->em->persist($this->orderAddressDelivery);
     $this->em->persist($this->orderAddressInvoice);
     $this->em->persist($this->item);
     $this->em->persist($this->item2);
     $this->em->persist($this->product);
     $this->em->persist($this->product2);
     $this->em->persist($this->productTranslation);
     $this->em->persist($productType);
     $this->em->persist($productStatus);
     $this->em->persist($productStatusTranslation);
     $this->em->flush();
 }
Ejemplo n.º 11
0
 private function prepareUser($username, $password, $enabled = true, $locked = false)
 {
     $emailType = new EmailType();
     $emailType->setName('Private');
     $this->em->persist($emailType);
     $email = new Email();
     $email->setEmail('*****@*****.**');
     $email->setEmailType($emailType);
     $this->em->persist($email);
     $contact1 = new Contact();
     $contact1->setFirstName('Max');
     $contact1->setLastName('Muster');
     $contact1->addEmail($email);
     $this->em->persist($contact1);
     $user = new User();
     $user->setUsername($username);
     $user->setPassword($password);
     $user->setSalt('salt');
     $user->setLocale('de');
     $user->setContact($contact1);
     $user->setEnabled($enabled);
     $user->setLocked($locked);
     $this->em->persist($user);
     $role = new Role();
     $role->setName('Sulu');
     $role->setSystem('Sulu');
     $this->em->persist($role);
     $userRole = new UserRole();
     $userRole->setRole($role);
     $userRole->setUser($user);
     $userRole->setLocale('');
     $this->em->persist($userRole);
     $this->em->flush();
     return $user;
 }