Search in sources :

Example 21 with Indexer

use of com.liferay.portal.kernel.search.Indexer in project liferay-ide by liferay.

the class UserLocalServiceImpl method unsetUserGroupUsers.

/**
 * Removes the users from the user group.
 *
 * @param  userGroupId the primary key of the user group
 * @param  userIds the primary keys of the users
 * @throws PortalException if a portal exception occurred
 * @throws SystemException if a system exception occurred
 */
@Override
public void unsetUserGroupUsers(long userGroupId, long[] userIds) throws PortalException, SystemException {
    userGroupPersistence.removeUsers(userGroupId, userIds);
    Indexer indexer = IndexerRegistryUtil.nullSafeGetIndexer(User.class);
    indexer.reindex(userIds);
    PermissionCacheUtil.clearCache();
}
Also used : Indexer(com.liferay.portal.kernel.search.Indexer)

Example 22 with Indexer

use of com.liferay.portal.kernel.search.Indexer in project liferay-ide by liferay.

the class UserLocalServiceImpl method updateUser.

/**
 * Updates the user.
 *
 * @param  userId the primary key of the user
 * @param  oldPassword the user's old password
 * @param  newPassword1 the user's new password (optionally
 *         <code>null</code>)
 * @param  newPassword2 the user's new password confirmation (optionally
 *         <code>null</code>)
 * @param  passwordReset whether the user should be asked to reset their
 *         password the next time they login
 * @param  reminderQueryQuestion the user's new password reset question
 * @param  reminderQueryAnswer the user's new password reset answer
 * @param  screenName the user's new screen name
 * @param  emailAddress the user's new email address
 * @param  facebookId the user's new Facebook ID
 * @param  openId the user's new OpenID
 * @param  languageId the user's new language ID
 * @param  timeZoneId the user's new time zone ID
 * @param  greeting the user's new greeting
 * @param  comments the user's new comments
 * @param  firstName the user's new first name
 * @param  middleName the user's new middle name
 * @param  lastName the user's new last name
 * @param  prefixId the user's new name prefix ID
 * @param  suffixId the user's new name suffix ID
 * @param  male whether user is male
 * @param  birthdayMonth the user's new birthday month (0-based, meaning 0
 *         for January)
 * @param  birthdayDay the user's new birthday day
 * @param  birthdayYear the user's birthday year
 * @param  smsSn the user's new SMS screen name
 * @param  aimSn the user's new AIM screen name
 * @param  facebookSn the user's new Facebook screen name
 * @param  icqSn the user's new ICQ screen name
 * @param  jabberSn the user's new Jabber screen name
 * @param  msnSn the user's new MSN screen name
 * @param  mySpaceSn the user's new MySpace screen name
 * @param  skypeSn the user's new Skype screen name
 * @param  twitterSn the user's new Twitter screen name
 * @param  ymSn the user's new Yahoo! Messenger screen name
 * @param  jobTitle the user's new job title
 * @param  groupIds the primary keys of the user's groups
 * @param  organizationIds the primary keys of the user's organizations
 * @param  roleIds the primary keys of the user's roles
 * @param  userGroupRoles the user user's group roles
 * @param  userGroupIds the primary keys of the user's user groups
 * @param  serviceContext the service context to be applied (optionally
 *         <code>null</code>). Can set the UUID (with the <code>uuid</code>
 *         attribute), asset category IDs, asset tag names, and expando
 *         bridge attributes for the user.
 * @return the user
 * @throws PortalException if a user with the primary key could not be found
 *         or if the new information was invalid
 * @throws SystemException if a system exception occurred
 */
@Override
@SuppressWarnings("deprecation")
public User updateUser(long userId, String oldPassword, String newPassword1, String newPassword2, boolean passwordReset, String reminderQueryQuestion, String reminderQueryAnswer, String screenName, String emailAddress, long facebookId, String openId, String languageId, String timeZoneId, String greeting, String comments, String firstName, String middleName, String lastName, int prefixId, int suffixId, boolean male, int birthdayMonth, int birthdayDay, int birthdayYear, String smsSn, String aimSn, String facebookSn, String icqSn, String jabberSn, String msnSn, String mySpaceSn, String skypeSn, String twitterSn, String ymSn, String jobTitle, long[] groupIds, long[] organizationIds, long[] roleIds, List<UserGroupRole> userGroupRoles, long[] userGroupIds, ServiceContext serviceContext) throws PortalException, SystemException {
    // User
    User user = userPersistence.findByPrimaryKey(userId);
    Company company = companyPersistence.findByPrimaryKey(user.getCompanyId());
    String password = oldPassword;
    screenName = getLogin(screenName);
    emailAddress = StringUtil.toLowerCase(emailAddress.trim());
    openId = openId.trim();
    String oldFullName = user.getFullName();
    aimSn = StringUtil.toLowerCase(aimSn.trim());
    facebookSn = StringUtil.toLowerCase(facebookSn.trim());
    icqSn = StringUtil.toLowerCase(icqSn.trim());
    jabberSn = StringUtil.toLowerCase(jabberSn.trim());
    msnSn = StringUtil.toLowerCase(msnSn.trim());
    mySpaceSn = StringUtil.toLowerCase(mySpaceSn.trim());
    skypeSn = StringUtil.toLowerCase(skypeSn.trim());
    twitterSn = StringUtil.toLowerCase(twitterSn.trim());
    ymSn = StringUtil.toLowerCase(ymSn.trim());
    Date now = new Date();
    EmailAddressGenerator emailAddressGenerator = EmailAddressGeneratorFactory.getInstance();
    if (emailAddressGenerator.isGenerated(emailAddress)) {
        emailAddress = StringPool.BLANK;
    }
    if (!PropsValues.USERS_EMAIL_ADDRESS_REQUIRED && Validator.isNull(emailAddress)) {
        emailAddress = emailAddressGenerator.generate(user.getCompanyId(), userId);
    }
    validate(userId, screenName, emailAddress, openId, firstName, middleName, lastName, smsSn);
    if (Validator.isNotNull(newPassword1) || Validator.isNotNull(newPassword2)) {
        user = updatePassword(userId, newPassword1, newPassword2, passwordReset);
        password = newPassword1;
        user.setDigest(StringPool.BLANK);
    }
    user.setModifiedDate(now);
    if (user.getContactId() <= 0) {
        user.setContactId(counterLocalService.increment());
    }
    user.setPasswordReset(passwordReset);
    if (Validator.isNotNull(reminderQueryQuestion) && Validator.isNotNull(reminderQueryAnswer)) {
        user.setReminderQueryQuestion(reminderQueryQuestion);
        user.setReminderQueryAnswer(reminderQueryAnswer);
    }
    if (!StringUtil.equalsIgnoreCase(user.getScreenName(), screenName)) {
        user.setScreenName(screenName);
        user.setDigest(StringPool.BLANK);
    }
    boolean sendEmailAddressVerification = false;
    if (!company.isStrangersVerify()) {
        setEmailAddress(user, password, firstName, middleName, lastName, emailAddress);
    } else {
        sendEmailAddressVerification = true;
    }
    if (serviceContext != null) {
        String uuid = serviceContext.getUuid();
        if (Validator.isNotNull(uuid)) {
            user.setUuid(uuid);
        }
    }
    user.setFacebookId(facebookId);
    Long ldapServerId = (Long) serviceContext.getAttribute("ldapServerId");
    if (ldapServerId != null) {
        user.setLdapServerId(ldapServerId);
    }
    user.setOpenId(openId);
    user.setLanguageId(languageId);
    user.setTimeZoneId(timeZoneId);
    user.setGreeting(greeting);
    user.setComments(comments);
    user.setFirstName(firstName);
    user.setMiddleName(middleName);
    user.setLastName(lastName);
    user.setJobTitle(jobTitle);
    user.setExpandoBridgeAttributes(serviceContext);
    userPersistence.update(user, serviceContext);
    // Contact
    Date birthday = getBirthday(birthdayMonth, birthdayDay, birthdayYear);
    long contactId = user.getContactId();
    Contact contact = contactPersistence.fetchByPrimaryKey(contactId);
    if (contact == null) {
        contact = contactPersistence.create(contactId);
        contact.setCompanyId(user.getCompanyId());
        contact.setUserName(StringPool.BLANK);
        contact.setCreateDate(now);
        contact.setClassName(User.class.getName());
        contact.setClassPK(user.getUserId());
        contact.setAccountId(company.getAccountId());
        contact.setParentContactId(ContactConstants.DEFAULT_PARENT_CONTACT_ID);
    }
    contact.setModifiedDate(now);
    contact.setEmailAddress(user.getEmailAddress());
    contact.setFirstName(firstName);
    contact.setMiddleName(middleName);
    contact.setLastName(lastName);
    contact.setPrefixId(prefixId);
    contact.setSuffixId(suffixId);
    contact.setMale(male);
    contact.setBirthday(birthday);
    contact.setSmsSn(smsSn);
    contact.setAimSn(aimSn);
    contact.setFacebookSn(facebookSn);
    contact.setIcqSn(icqSn);
    contact.setJabberSn(jabberSn);
    contact.setMsnSn(msnSn);
    contact.setMySpaceSn(mySpaceSn);
    contact.setSkypeSn(skypeSn);
    contact.setTwitterSn(twitterSn);
    contact.setYmSn(ymSn);
    contact.setJobTitle(jobTitle);
    contactPersistence.update(contact, serviceContext);
    // Group
    Group group = groupLocalService.getUserGroup(user.getCompanyId(), userId);
    group.setFriendlyURL(StringPool.SLASH + screenName);
    groupPersistence.update(group);
    // Groups and organizations
    // See LPS-33205. Cache the user's list of user group roles because
    // adding or removing groups may add or remove user group roles
    // depending on the site default user associations.
    List<UserGroupRole> previousUserGroupRoles = userGroupRolePersistence.findByUserId(userId);
    updateGroups(userId, groupIds, serviceContext, false);
    updateOrganizations(userId, organizationIds, false);
    if (roleIds != null) {
        roleIds = UsersAdminUtil.addRequiredRoles(user, roleIds);
        userPersistence.setRoles(userId, roleIds);
    }
    // User group roles
    updateUserGroupRoles(user, groupIds, organizationIds, userGroupRoles, previousUserGroupRoles);
    if (userGroupIds != null) {
        if (PropsValues.USER_GROUPS_COPY_LAYOUTS_TO_USER_PERSONAL_SITE) {
            userGroupLocalService.copyUserGroupLayouts(userGroupIds, userId);
        }
        userPersistence.setUserGroups(userId, userGroupIds);
    }
    // Announcements
    announcementsDeliveryLocalService.getUserDeliveries(user.getUserId());
    if (serviceContext != null) {
        updateAsset(userId, user, serviceContext.getAssetCategoryIds(), serviceContext.getAssetTagNames());
    }
    if (GetterUtil.getBoolean(PropsKeys.USERS_UPDATE_USER_NAME + MBMessage.class.getName()) && !oldFullName.equals(user.getFullName())) {
        mbMessageLocalService.updateUserName(userId, user.getFullName());
    }
    if ((serviceContext == null) || serviceContext.isIndexingEnabled()) {
        Indexer indexer = IndexerRegistryUtil.nullSafeGetIndexer(User.class);
        indexer.reindex(user);
    }
    if ((serviceContext != null) && sendEmailAddressVerification) {
        sendEmailAddressVerification(user, emailAddress, serviceContext);
    }
    // Permission cache
    PermissionCacheUtil.clearCache();
    return user;
}
Also used : UserGroupRole(com.liferay.portal.model.UserGroupRole) Group(com.liferay.portal.model.Group) UserGroup(com.liferay.portal.model.UserGroup) Company(com.liferay.portal.model.Company) User(com.liferay.portal.model.User) Date(java.util.Date) Contact(com.liferay.portal.model.Contact) EmailAddressGenerator(com.liferay.portal.security.auth.EmailAddressGenerator) Indexer(com.liferay.portal.kernel.search.Indexer) MBMessage(com.liferay.portlet.messageboards.model.MBMessage)

Example 23 with Indexer

use of com.liferay.portal.kernel.search.Indexer in project liferay-ide by liferay.

the class UserLocalServiceImpl method updateIncompleteUser.

/**
 * Updates a user account that was automatically created when a guest user
 * participated in an action (e.g. posting a comment) and only provided his
 * name and email address.
 *
 * @param  creatorUserId the primary key of the creator
 * @param  companyId the primary key of the user's company
 * @param  autoPassword whether a password should be automatically generated
 *         for the user
 * @param  password1 the user's password
 * @param  password2 the user's password confirmation
 * @param  autoScreenName whether a screen name should be automatically
 *         generated for the user
 * @param  screenName the user's screen name
 * @param  emailAddress the user's email address
 * @param  facebookId the user's facebook ID
 * @param  openId the user's OpenID
 * @param  locale the user's locale
 * @param  firstName the user's first name
 * @param  middleName the user's middle name
 * @param  lastName the user's last name
 * @param  prefixId the user's name prefix ID
 * @param  suffixId the user's name suffix ID
 * @param  male whether the user is male
 * @param  birthdayMonth the user's birthday month (0-based, meaning 0 for
 *         January)
 * @param  birthdayDay the user's birthday day
 * @param  birthdayYear the user's birthday year
 * @param  jobTitle the user's job title
 * @param  updateUserInformation whether to update the user's information
 * @param  sendEmail whether to send the user an email notification about
 *         their new account
 * @param  serviceContext the service context to be applied (optionally
 *         <code>null</code>). Can set expando bridge attributes for the
 *         user.
 * @return the user
 * @throws PortalException if the user's information was invalid
 * @throws SystemException if a system exception occurred
 */
@Override
public User updateIncompleteUser(long creatorUserId, long companyId, boolean autoPassword, String password1, String password2, boolean autoScreenName, String screenName, String emailAddress, long facebookId, String openId, Locale locale, String firstName, String middleName, String lastName, int prefixId, int suffixId, boolean male, int birthdayMonth, int birthdayDay, int birthdayYear, String jobTitle, boolean updateUserInformation, boolean sendEmail, ServiceContext serviceContext) throws PortalException, SystemException {
    User user = getUserByEmailAddress(companyId, emailAddress);
    if (user.getStatus() != WorkflowConstants.STATUS_INCOMPLETE) {
        throw new PortalException("Invalid user status");
    }
    User defaultUser = getDefaultUser(companyId);
    if (facebookId > 0) {
        autoPassword = false;
        if ((password1 == null) || (password2 == null)) {
            password1 = PwdGenerator.getPassword();
            password2 = password1;
        }
        sendEmail = false;
    }
    if (updateUserInformation) {
        autoScreenName = false;
        if (PrefsPropsUtil.getBoolean(companyId, PropsKeys.USERS_SCREEN_NAME_ALWAYS_AUTOGENERATE)) {
            autoScreenName = true;
        }
        validate(companyId, user.getUserId(), autoPassword, password1, password2, autoScreenName, screenName, emailAddress, openId, firstName, middleName, lastName, null);
        if (!autoPassword) {
            if (Validator.isNull(password1) || Validator.isNull(password2)) {
                throw new UserPasswordException(UserPasswordException.PASSWORD_INVALID);
            }
        }
        if (autoScreenName) {
            ScreenNameGenerator screenNameGenerator = ScreenNameGeneratorFactory.getInstance();
            try {
                screenName = screenNameGenerator.generate(companyId, user.getUserId(), emailAddress);
            } catch (Exception e) {
                throw new SystemException(e);
            }
        }
        FullNameGenerator fullNameGenerator = FullNameGeneratorFactory.getInstance();
        String fullName = fullNameGenerator.getFullName(firstName, middleName, lastName);
        String greeting = LanguageUtil.format(locale, "welcome-x", " " + fullName, false);
        if (Validator.isNotNull(password1)) {
            user.setPassword(PasswordEncryptorUtil.encrypt(password1));
            user.setPasswordUnencrypted(password1);
        }
        user.setPasswordEncrypted(true);
        PasswordPolicy passwordPolicy = defaultUser.getPasswordPolicy();
        if ((passwordPolicy != null) && passwordPolicy.isChangeable() && passwordPolicy.isChangeRequired()) {
            user.setPasswordReset(true);
        } else {
            user.setPasswordReset(false);
        }
        user.setScreenName(screenName);
        user.setFacebookId(facebookId);
        user.setOpenId(openId);
        user.setLanguageId(locale.toString());
        user.setTimeZoneId(defaultUser.getTimeZoneId());
        user.setGreeting(greeting);
        user.setFirstName(firstName);
        user.setMiddleName(middleName);
        user.setLastName(lastName);
        user.setJobTitle(jobTitle);
        user.setExpandoBridgeAttributes(serviceContext);
        Date birthday = getBirthday(birthdayMonth, birthdayDay, birthdayYear);
        Contact contact = user.getContact();
        contact.setFirstName(firstName);
        contact.setMiddleName(middleName);
        contact.setLastName(lastName);
        contact.setPrefixId(prefixId);
        contact.setSuffixId(suffixId);
        contact.setMale(male);
        contact.setBirthday(birthday);
        contact.setJobTitle(jobTitle);
        contactPersistence.update(contact, serviceContext);
        // Indexer
        Indexer indexer = IndexerRegistryUtil.nullSafeGetIndexer(User.class);
        indexer.reindex(user);
    }
    user.setStatus(WorkflowConstants.STATUS_DRAFT);
    userPersistence.update(user, serviceContext);
    // Workflow
    long workflowUserId = creatorUserId;
    if (workflowUserId == user.getUserId()) {
        workflowUserId = defaultUser.getUserId();
    }
    ServiceContext workflowServiceContext = serviceContext;
    if (workflowServiceContext == null) {
        workflowServiceContext = new ServiceContext();
    }
    workflowServiceContext.setAttribute("autoPassword", autoPassword);
    workflowServiceContext.setAttribute("passwordUnencrypted", password1);
    workflowServiceContext.setAttribute("sendEmail", sendEmail);
    WorkflowHandlerRegistryUtil.startWorkflowInstance(companyId, workflowUserId, User.class.getName(), user.getUserId(), user, workflowServiceContext);
    return getUserByEmailAddress(companyId, emailAddress);
}
Also used : User(com.liferay.portal.model.User) ScreenNameGenerator(com.liferay.portal.security.auth.ScreenNameGenerator) ServiceContext(com.liferay.portal.service.ServiceContext) ContactFirstNameException(com.liferay.portal.ContactFirstNameException) ModelListenerException(com.liferay.portal.ModelListenerException) NoSuchImageException(com.liferay.portal.NoSuchImageException) GroupFriendlyURLException(com.liferay.portal.GroupFriendlyURLException) DuplicateOpenIdException(com.liferay.portal.DuplicateOpenIdException) ImageSizeException(com.liferay.portlet.documentlibrary.ImageSizeException) PasswordExpiredException(com.liferay.portal.PasswordExpiredException) UserPasswordException(com.liferay.portal.UserPasswordException) NoSuchUserException(com.liferay.portal.NoSuchUserException) UserSmsException(com.liferay.portal.UserSmsException) NoSuchRoleException(com.liferay.portal.NoSuchRoleException) PortalException(com.liferay.portal.kernel.exception.PortalException) UserIdException(com.liferay.portal.UserIdException) UserPortraitTypeException(com.liferay.portal.UserPortraitTypeException) RequiredUserException(com.liferay.portal.RequiredUserException) ReservedUserScreenNameException(com.liferay.portal.ReservedUserScreenNameException) IOException(java.io.IOException) ContactBirthdayException(com.liferay.portal.ContactBirthdayException) UserReminderQueryException(com.liferay.portal.UserReminderQueryException) DuplicateUserScreenNameException(com.liferay.portal.DuplicateUserScreenNameException) UserEmailAddressException(com.liferay.portal.UserEmailAddressException) ContactFullNameException(com.liferay.portal.ContactFullNameException) EncryptorException(com.liferay.util.EncryptorException) CompanyMaxUsersException(com.liferay.portal.CompanyMaxUsersException) NoSuchTicketException(com.liferay.portal.NoSuchTicketException) UserScreenNameException(com.liferay.portal.UserScreenNameException) ContactLastNameException(com.liferay.portal.ContactLastNameException) ReservedUserEmailAddressException(com.liferay.portal.ReservedUserEmailAddressException) DuplicateUserEmailAddressException(com.liferay.portal.DuplicateUserEmailAddressException) NoSuchUserGroupException(com.liferay.portal.NoSuchUserGroupException) PrincipalException(com.liferay.portal.security.auth.PrincipalException) SystemException(com.liferay.portal.kernel.exception.SystemException) NoSuchOrganizationException(com.liferay.portal.NoSuchOrganizationException) UserLockoutException(com.liferay.portal.UserLockoutException) UserPortraitSizeException(com.liferay.portal.UserPortraitSizeException) Date(java.util.Date) Contact(com.liferay.portal.model.Contact) Indexer(com.liferay.portal.kernel.search.Indexer) SystemException(com.liferay.portal.kernel.exception.SystemException) UserPasswordException(com.liferay.portal.UserPasswordException) FullNameGenerator(com.liferay.portal.security.auth.FullNameGenerator) PasswordPolicy(com.liferay.portal.model.PasswordPolicy) PortalException(com.liferay.portal.kernel.exception.PortalException)

Example 24 with Indexer

use of com.liferay.portal.kernel.search.Indexer in project liferay-ide by liferay.

the class UserLocalServiceImpl method addRoleUsers.

/**
 * Adds the users to the role.
 *
 * @param  roleId the primary key of the role
 * @param  userIds the primary keys of the users
 * @throws PortalException if a role or user with the primary key could not
 *         be found
 * @throws SystemException if a system exception occurred
 */
@Override
public void addRoleUsers(long roleId, long[] userIds) throws PortalException, SystemException {
    rolePersistence.addUsers(roleId, userIds);
    Indexer indexer = IndexerRegistryUtil.nullSafeGetIndexer(User.class);
    indexer.reindex(userIds);
    PermissionCacheUtil.clearCache();
}
Also used : Indexer(com.liferay.portal.kernel.search.Indexer)

Example 25 with Indexer

use of com.liferay.portal.kernel.search.Indexer in project liferay-ide by liferay.

the class UserLocalServiceImpl method updateOrganizations.

protected void updateOrganizations(long userId, long[] newOrganizationIds, boolean indexingEnabled) throws PortalException, SystemException {
    if (newOrganizationIds == null) {
        return;
    }
    List<Organization> oldOrganizations = userPersistence.getOrganizations(userId);
    Set<Long> oldOrganizationIds = new HashSet<Long>(oldOrganizations.size());
    for (Organization oldOrganization : oldOrganizations) {
        long oldOrganizationId = oldOrganization.getOrganizationId();
        oldOrganizationIds.add(oldOrganizationId);
        if (!ArrayUtil.contains(newOrganizationIds, oldOrganizationId)) {
            unsetOrganizationUsers(oldOrganizationId, new long[] { userId });
        }
    }
    for (long newOrganizationId : newOrganizationIds) {
        if (!oldOrganizationIds.contains(newOrganizationId)) {
            addOrganizationUsers(newOrganizationId, new long[] { userId });
        }
    }
    if (indexingEnabled) {
        Indexer indexer = IndexerRegistryUtil.nullSafeGetIndexer(User.class);
        indexer.reindex(new long[] { userId });
    }
    PermissionCacheUtil.clearCache();
}
Also used : Organization(com.liferay.portal.model.Organization) Indexer(com.liferay.portal.kernel.search.Indexer) HashSet(java.util.HashSet)

Aggregations

Indexer (com.liferay.portal.kernel.search.Indexer)30 User (com.liferay.portal.model.User)5 Group (com.liferay.portal.model.Group)4 UserGroupRole (com.liferay.portal.model.UserGroupRole)4 Date (java.util.Date)4 ShardCallable (com.liferay.portal.kernel.dao.shard.ShardCallable)3 PortalException (com.liferay.portal.kernel.exception.PortalException)3 SystemException (com.liferay.portal.kernel.exception.SystemException)3 Role (com.liferay.portal.model.Role)3 UserGroup (com.liferay.portal.model.UserGroup)3 CompanyMaxUsersException (com.liferay.portal.CompanyMaxUsersException)2 ContactBirthdayException (com.liferay.portal.ContactBirthdayException)2 ContactFirstNameException (com.liferay.portal.ContactFirstNameException)2 ContactFullNameException (com.liferay.portal.ContactFullNameException)2 ContactLastNameException (com.liferay.portal.ContactLastNameException)2 DuplicateOpenIdException (com.liferay.portal.DuplicateOpenIdException)2 DuplicateUserEmailAddressException (com.liferay.portal.DuplicateUserEmailAddressException)2 DuplicateUserScreenNameException (com.liferay.portal.DuplicateUserScreenNameException)2 GroupFriendlyURLException (com.liferay.portal.GroupFriendlyURLException)2 ModelListenerException (com.liferay.portal.ModelListenerException)2