Fórumok

Nyitólap » Liferay Portal » English » 3. Development

Kombinált nézet Egyszerű nézet Fa-nézet
Szálak [ Előző | Következő ]
toggle
Darren Smith
How to Programmatically Add Liferay Users in Java
2011. augusztus 11. 6:13
Válasz

Darren Smith

Rangsorolás: New Member

Hozzászólások: 14

Csatlakozás dátuma: 2011. július 16.

Legújabb hozzászólások

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
2011. augusztus 11. 7:40
Válasz

David H Nebinger

Rangsorolás: Liferay Legend

Hozzászólások: 4550

Csatlakozás dátuma: 2006. szeptember 1.

Legújabb hozzászólások

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
2011. augusztus 11. 12:07
Válasz

Pranay R Patadiya

Rangsorolás: Regular Member

Hozzászólások: 173

Csatlakozás dátuma: 2010. február 22.

Legújabb hozzászólások

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
2011. augusztus 11. 12:28
Válasz

Sagar A Vyas

Rangsorolás: Liferay Master

Hozzászólások: 581

Csatlakozás dátuma: 2009. április 17.

Legújabb hozzászólások

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
2011. augusztus 16. 1:29
Válasz

Darren Smith

Rangsorolás: New Member

Hozzászólások: 14

Csatlakozás dátuma: 2011. július 16.

Legújabb hozzászólások

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

Darren
Arvind Mishra
RE: How to Programmatically Add Liferay Users in Java
2011. augusztus 16. 6:19
Válasz

Arvind Mishra

Rangsorolás: Regular Member

Hozzászólások: 220

Csatlakozás dátuma: 2008. február 13.

Legújabb hozzászólások

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
2012. március 29. 5:27
Válasz

RathnaDevi Chellaiah

Rangsorolás: Junior Member

Hozzászólások: 29

Csatlakozás dátuma: 2012. március 26.

Legújabb hozzászólások

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
2012. május 23. 8:48
Válasz

Rob Hall

Rangsorolás: Junior Member

Hozzászólások: 38

Csatlakozás dátuma: 2011. november 30.

Legújabb hozzászólások

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
2012. június 10. 6:44
Válasz

Dhandapani S

Rangsorolás: Regular Member

Hozzászólások: 155

Csatlakozás dátuma: 2009. március 24.

Legújabb hozzászólások

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
2012. június 10. 12:01
Válasz

Milen Dyankov

Rangsorolás: Regular Member

Hozzászólások: 173

Csatlakozás dátuma: 2009. szeptember 23.

Legújabb hozzászólások

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
2012. június 10. 12:08
Válasz

Milen Dyankov

Rangsorolás: Regular Member

Hozzászólások: 173

Csatlakozás dátuma: 2009. szeptember 23.

Legújabb hozzászólások

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
2012. június 10. 22:32
Válasz

Rajesh Chaurasia

Rangsorolás: Junior Member

Hozzászólások: 79

Csatlakozás dátuma: 2011. augusztus 18.

Legújabb hozzászólások

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;

}