Vista combinada Visión Plana Vista de árbol
Discusiones [ Anterior | Siguiente ]
toggle
Darren Smith
How to Programmatically Add Liferay Users in Java
11 de agosto de 2011 6:13
Respuesta

Darren Smith

Ranking: New Member

Mensajes: 14

Fecha de incorporación: 16 de julio de 2011

Mensajes recientes

Hi all,

does anyone have any sample Java code (or links to) to programmatically add users to Liferay 6? Does anyone know what database table users are saved to? I can't seem to find this information, APIs etc on the Liferay docs.

Thanks
Darren
David H Nebinger
RE: How to Programmatically Add Liferay Users in Java
11 de agosto de 2011 7:40
Respuesta

David H Nebinger

Ranking: Liferay Legend

Mensajes: 4496

Fecha de incorporación: 1 de septiembre de 2006

Mensajes recientes

User creation results in multiple tables getting updated, the first of which is the User_ table, but there are many others. I would not attempt manual user creation by updating the tables directly.

Your best bet is probably to look at the various import process code (i.e. the LDAP user import, etc.). This path will probably identify any services or methods that you would want to leverage when creating users programmatically.
Pranay R Patadiya
RE: How to Programmatically Add Liferay Users in Java
11 de agosto de 2011 12:07
Respuesta

Pranay R Patadiya

Ranking: Regular Member

Mensajes: 173

Fecha de incorporación: 22 de febrero de 2010

Mensajes recientes

Hi,

You should check portal source code for better reference.
You should check addUser method of UserLocalServiceImpl class of portal source code.

And about database entry, when you add user at that time not a single DB table being updated.
There are many tables are affected. The above mentioned class will let you know more about that.

Let me know if you have any query.

Thanks,
Pranay
Sagar A Vyas
RE: How to Programmatically Add Liferay Users in Java
11 de agosto de 2011 12:28
Respuesta

Sagar A Vyas

Ranking: Liferay Master

Mensajes: 581

Fecha de incorporación: 17 de abril de 2009

Mensajes recientes

Hi,

Agree with Pranay,

Main table is user_ but though there are lot more.

Better to manage user operation from UserLocalServiceUtil instead of do it from DB.

you can user addUser() method ,you have to provide lots of argument for execute this method.

Thanks,
Sagar Vyas
Darren Smith
RE: How to Programmatically Add Liferay Users in Java
16 de agosto de 2011 1:29
Respuesta

Darren Smith

Ranking: New Member

Mensajes: 14

Fecha de incorporación: 16 de julio de 2011

Mensajes recientes

Thanks for your help guys, I can add users now emoticon.

Darren
Arvind Mishra
RE: How to Programmatically Add Liferay Users in Java
16 de agosto de 2011 6:19
Respuesta

Arvind Mishra

Ranking: Regular Member

Mensajes: 220

Fecha de incorporación: 13 de febrero de 2008

Mensajes recientes

If you want to add users pro grammatically using web service. You can look in to following post.

http://bit.ly/rq3WBx
RathnaDevi Chellaiah
RE: How to Programmatically Add Liferay Users in Java
29 de marzo de 2012 5:27
Respuesta

RathnaDevi Chellaiah

Ranking: Junior Member

Mensajes: 29

Fecha de incorporación: 26 de marzo de 2012

Mensajes recientes

hi,
can u send the project which is runnable? i am facing issue with user creation
Rob Hall
RE: How to Programmatically Add Liferay Users in Java
23 de mayo de 2012 8:48
Respuesta

Rob Hall

Ranking: Junior Member

Mensajes: 38

Fecha de incorporación: 30 de noviembre de 2011

Mensajes recientes

I've figured out the programmatic user creation, what I'm struggling with is how to programatically log them into Liferay after adding them. I have a application-specific user registration portlet, the new user fills out some information, which I then use to create the Liferay user, populate the tables, etc. What I want to do next is automatically log them into Liferay and redirect to a landing page, without them having to enter their userid and password.
Dhandapani S
RE: How to Programmatically Add Liferay Users in Java
10 de junio de 2012 6:44
Respuesta

Dhandapani S

Ranking: Regular Member

Mensajes: 155

Fecha de incorporación: 24 de marzo de 2009

Mensajes recientes

RathnaDevi Chellaiah:
hi,
can u send the project which is runnable? i am facing issue with user creation



Hi Rathnadevi,

You can add Liferay Users in Java using UserLocalServiceUtil class... For that u need to copy portal-impl.jar in your portlet lib folder and build path.

Regards
Dhandapani S

Milen Dyankov
RE: How to Programmatically Add Liferay Users in Java
10 de junio de 2012 12:01
Respuesta

Milen Dyankov

Ranking: Regular Member

Mensajes: 173

Fecha de incorporación: 23 de septiembre de 2009

Mensajes recientes

Dhandapani S:
For that u need to copy portal-impl.jar in your portlet lib folder

That is a very bad advice!!! I would like to quote
Ray Augé:
NEVER put portal-impl into anywhere other than where it came from

Read this thread for details!
Milen Dyankov
RE: How to Programmatically Add Liferay Users in Java
10 de junio de 2012 12:08
Respuesta

Milen Dyankov

Ranking: Regular Member

Mensajes: 173

Fecha de incorporación: 23 de septiembre de 2009

Mensajes recientes

Rob Hall:
What I want to do next is automatically log them into Liferay

To do this you need to create custom auto login hook.
Examine the source code of the existing hooks to see how it is done.
Rajesh Chaurasia
RE: How to Programmatically Add Liferay Users in Java
10 de junio de 2012 22:32
Respuesta

Rajesh Chaurasia

Ranking: Junior Member

Mensajes: 79

Fecha de incorporación: 18 de agosto de 2011

Mensajes recientes

In liferay , around some designated entities model listeners are attached which means that if you create and persist an instance of entity ,simultaneous inserts are made for model listeners.For eg if you create an organization in liferay , you need to insert entries for Asset entry,group,layout set , layout and resource permission taking care of ids .

Similar is the case with User creation.In liferay u can create user frorm UI but this does not stop u from creating users programmatically.

private User insertOrgAdmin(ActionRequest actionRequest,Organization organization,ServiceContext serviceContext,long gpIdForUser) throws PortalException, SystemException {
ThemeDisplay themeDisplay = (ThemeDisplay)actionRequest.getAttribute(WebKeys.THEME_DISPLAY);
long companyId = themeDisplay.getCompanyId();
long groupId= gpIdForUser;
String password1= "orgadmin";//organization.getName().toLowerCase();
String domainName = null;
long facebookId=0;
String openId=null;
//String firstName=organization.getName();
String lastName=organization.getName();
int prefixId=123;
int suffixId=234;
String jobTitle="Organization Administrator";
domainName = organization.getName();
domainName= domainName.trim();
if(domainName.contains(" ")) {
domainName = domainName.replaceAll("\\s+", "-");
}
//String emailAddress="administrator@"+domainName+".com";
String emailAddress="administrator@panchayatportal.gov.in";
Role role = RoleLocalServiceUtil.getRole(companyId, "Organization Administrator");
User user = null;
if(role!= null){
long idContact = CounterLocalServiceUtil.increment(Contact.class.getName());
//String greeting="Welcome "+role.getName();
String greeting="Welcome Admin";
long id = CounterLocalServiceUtil.increment(User.class.getName());
user = UserLocalServiceUtil.createUser(id);
user.setCompanyId(companyId);
user.setPassword(password1);
//String screenName=organization.getName().toLowerCase()+id;
String screenName="admin"+id;
user.setScreenName(screenName);
user.setEmailAddress(emailAddress);
user.setFacebookId(facebookId);
user.setOpenId(openId);
user.setGreeting(greeting);
//user.setFirstName(firstName);
user.setFirstName("Site Admin");
//user.setLastName(lastName);
user.setJobTitle(jobTitle);
user.setCreateDate(new Date ());
user.setContactId(idContact);
user.setPasswordReset(true);
user.setPasswordEncrypted(false);
user.setPasswordModifiedDate(new Date());
user.setCreateDate(new Date());
user.setModifiedDate(new Date());
user.setLanguageId(themeDisplay.getLanguageId());
user.setTimeZoneId(themeDisplay.getTimeZone().getDisplayName());
UserLocalServiceUtil.addUser(user);

//Associate a role with user
long userid[] = {user.getUserId()};

//UserLocalServiceUtil.addRoleUsers(role.getRoleId(), userid);
Role rolePu = RoleLocalServiceUtil.getRole(companyId, "Power User");
//UserLocalServiceUtil.addRoleUsers(rolePu.getRoleId(), userid);
long roleids[]={role.getRoleId(),rolePu.getRoleId()};
UserGroupRoleLocalServiceUtil.addUserGroupRoles(user.getUserId(), groupId, roleids);

ClassName clsNameUser = ClassNameLocalServiceUtil.getClassName("com.liferay.portal.model.User");
long classNameId=clsNameUser.getClassNameId();

//Insert Group for a user
long gpId = CounterLocalServiceUtil.increment(Group.class.getName());
Group userGrp = GroupLocalServiceUtil.createGroup(gpId);
userGrp.setClassNameId(classNameId);
userGrp.setClassPK(userid[0]);
userGrp.setCompanyId(companyId);
userGrp.setName("group"+String.valueOf(userid[0]));
userGrp.setFriendlyURL("/group"+gpId);
userGrp.setCreatorUserId(PortalUtil.getUserId(actionRequest));
userGrp.setActive(true);
GroupLocalServiceUtil.addGroup(userGrp);

//Insert Contact for a user
//long idContact = CounterLocalServiceUtil.increment(Contact.class.getName());
Contact contact = ContactLocalServiceUtil.createContact(idContact);
contact.setCompanyId(companyId);
contact.setCreateDate(new Date());
contact.setUserName(screenName);
contact.setUserId(user.getUserId());
contact.setModifiedDate(new Date());
contact.setFirstName("contact-"+contact.getContactId());
contact.setLastName("contact-"+contact.getContactId());
contact.setMiddleName("contact-"+contact.getContactId());
contact.setPrefixId(prefixId);
contact.setSuffixId(suffixId);
contact.setJobTitle(jobTitle+contact.getContactId());
contact.setBirthday(new Date());
ContactLocalServiceUtil.addContact(contact);

//Create AssetEntry
long assetEntryId = CounterLocalServiceUtil.increment(AssetEntry.class.getName());
AssetEntry ae = AssetEntryLocalServiceUtil.createAssetEntry(assetEntryId);
ae.setCompanyId(companyId);
ae.setClassPK(user.getUserId());
ae.setGroupId(userGrp.getGroupId());
ae.setClassNameId(classNameId);
AssetEntryLocalServiceUtil.addAssetEntry(ae);

//Insert ResourcePermission for a User
long resPermId = CounterLocalServiceUtil.increment(ResourcePermission.class.getName());
ResourcePermission rpEntry = ResourcePermissionLocalServiceUtil.createResourcePermission(resPermId);
rpEntry.setCompanyId(organization.getCompanyId());
rpEntry.setName("com.liferay.portal.model.User");
rpEntry.setRoleId(role.getRoleId());
rpEntry.setScope(4);
rpEntry.setActionIds(31);
// rpEntry.setPrimaryKey(userid[0]);
ResourcePermissionLocalServiceUtil.addResourcePermission(rpEntry);

//Insert Layoutset for public and private
long layoutSetIdPub = CounterLocalServiceUtil.increment(LayoutSet.class.getName());
LayoutSet layoutSetPub=LayoutSetLocalServiceUtil.createLayoutSet(layoutSetIdPub);
layoutSetPub.setCompanyId(companyId);
layoutSetPub.setPrivateLayout(false);
layoutSetPub.setGroupId(userGrp.getGroupId());
layoutSetPub.setThemeId("classic");
try{
LayoutSetLocalServiceUtil.addLayoutSet(layoutSetPub);
}catch(SystemException se){

}

long layoutSetIdPriv= CounterLocalServiceUtil.increment(LayoutSet.class.getName());
LayoutSet layoutSetPriv=LayoutSetLocalServiceUtil.createLayoutSet(layoutSetIdPriv);
layoutSetPriv.setCompanyId(companyId);
layoutSetPriv.setPrivateLayout(true);
layoutSetPriv.setThemeId("classic");
layoutSetPriv.setGroupId(userGrp.getGroupId());
try{
LayoutSetLocalServiceUtil.addLayoutSet(layoutSetPriv);
}catch(SystemException se){
}
}else{
return null;
}


return user;

}