Forums de discussion

[SOLVED]Getting a custom user field value (expando)

thumbnail
Daniel Kreiseder, modifié il y a 14 années.

[SOLVED]Getting a custom user field value (expando)

New Member Publications: 12 Date d'inscription: 08/01/09 Publications récentes
I added a custom user field in Liferay, and set a value on a specific user.

How can I access this value programmatically?


If I try this, I always get null:

    String customAttr = (String)user.getExpandoBridge().getAttribute("customAttr");


user.getExpandoBridge().getAttribute("customAttr") returns a value of Type java.IO.Serializable.
Maybe the cast here is wrong?

But the Custom Attribute does exist (following code prints out the attribute key):

    for (Enumeration<string> attrs = user.getExpandoBridge().getAttributeNames(); attrs.hasMoreElements();)
    	_log.info("elem: '" + attrs.nextElement() + "'");
</string>


Somehow I miss the point here....
thumbnail
Amos Fong, modifié il y a 14 années.

RE: Getting a custom user field value (expando)

Liferay Legend Publications: 2047 Date d'inscription: 07/10/08 Publications récentes
Hi Daniel,

When you created the custom attribute, which type did you choose? Maybe try casting into that type.
thumbnail
Daniel Kreiseder, modifié il y a 14 années.

RE: Getting a custom user field value (expando)

New Member Publications: 12 Date d'inscription: 08/01/09 Publications récentes
The custom field is of type string...
Mahmoud kallel, modifié il y a 10 années.

RE: Getting a custom user field value (expando)

New Member Publications: 7 Date d'inscription: 20/11/13 Publications récentes
please ,
i need help
i want to add custom field like nationality or grade
what can i do ??
thanks
Mahmoud kallel, modifié il y a 10 années.

RE: Getting a custom user field value (expando)

New Member Publications: 7 Date d'inscription: 20/11/13 Publications récentes
please ,
i need help
i want to add custom field like nationality or grade
what can i do ??
thanks
thumbnail
Daniel Kreiseder, modifié il y a 14 années.

RE: Getting a custom user field value (expando)

New Member Publications: 12 Date d'inscription: 08/01/09 Publications récentes
It was a security problem...

In com.liferay.portlet.expando.service.impl.ExpandoValueServiceImpl.getData(String className, String tableName, String columnName, long classPK)
:

		if (ExpandoColumnPermission.contains(
				getPermissionChecker(), column, ActionKeys.VIEW)) {

			return expandoValueLocalService.getData(
				className, tableName, columnName, classPK);
		}
		else {
			[b]return null;[/b]
		}


I only had to set the view permisson on the custom expando value, and everything worked fine ....
thumbnail
ilke Muhtaroglu, modifié il y a 14 années.

RE: Getting a custom user field value (expando)

Regular Member Publications: 226 Date d'inscription: 12/05/09 Publications récentes
Hi,

I am trying to access this value before i log-in ! Where and how what do we set ?

"had to set the view permisson on the custom expando value" Can you please inform more about how to do this?

thanks for co-operation.

ilke
thumbnail
Daniel Kreiseder, modifié il y a 14 années.

RE: Getting a custom user field value (expando)

New Member Publications: 12 Date d'inscription: 08/01/09 Publications récentes
Control Panel-> Users->Custom Attributes->Actions->Permissions


Set Guest Permission to read
thumbnail
vikash kumar chaurasia, modifié il y a 14 années.

RE: Getting a custom user field value (expando)

Junior Member Publications: 97 Date d'inscription: 08/01/10 Publications récentes
Hi,


My question is:

If I have created a custom attribute for User e.g. country from the control panel and set it's value as "France" for a user. How can I get that attribute value for that user in a portlet in Plugin SDK envt.

Thanks.
jeff Leitman, modifié il y a 13 années.

RE: Getting a custom user field value (expando)

New Member Publications: 4 Date d'inscription: 20/08/09 Publications récentes
vikash kumar chaurasia:
Hi,


My question is:

If I have created a custom attribute for User e.g. country from the control panel and set it's value as "France" for a user. How can I get that attribute value for that user in a portlet in Plugin SDK envt.

Thanks.



I am wondering the same thing. I have a custom attribute of type java.lang.String[], used for timezones (e.g. "America/New York", "America/Chicago") for Organizations. I put the list of available timezones into the Default Value to get the list to show up, and chosoe "Selection" when creating the custom attribute. Then for an organization, I can choose one timezone from the list. But when I try to do

(String) org.getExpandoBridge().getAttribute("timezone");


it always throws an error because "timezone" attribute has type "java.lang.String[]", not "java.lang.String".

So how do I retrieve only the chosen timezone String?
Borja Gómez, modifié il y a 13 années.

RE: Getting a custom user field value (expando)

New Member Publications: 6 Date d'inscription: 18/11/10 Publications récentes
I have the same problem. Have you solved it?

It can't be so difficult!
thumbnail
Piotr Filipowicz, modifié il y a 13 années.

RE: Getting a custom user field value (expando)

Junior Member Publications: 52 Date d'inscription: 18/11/10 Publications récentes
Maybe you should write something like this:


String name = "myAttr";
		int type = user.getExpandoBridge().getAttributeType(name);
		Serializable value = user.getExpandoBridge().getAttribute(name);
		Serializable defaultValue = user.getExpandoBridge().getAttributeDefault(name);
		if (type == ExpandoColumnConstants.STRING_ARRAY) {
			String[] curValue = (String[])value;
			for (String curDefaultValue : (String[])defaultValue) {
				if ((curValue != null) &amp;&amp; (curValue.length &gt; 0) &amp;&amp; (curDefaultValue.equals(curValue[0]))) {
					System.out.println(curDefaultValue);
				}
			}
		}


I saw similar code in tag ui:custom-attribute in file: portal/portal-web/docroot/html/taglib/ui/custom_attribute/page.jsp.

Give me the answer if this code looks right.

--
Best regards,
Piotr Filipowicz
kuki last, modifié il y a 13 années.

RE: Getting a custom user field value (expando)

New Member Envoyer: 1 Date d'inscription: 22/11/10 Publications récentes
This is not solved! I cannot get the value of expando atrributes it always gives me defaultValue. I tried


Boolean a = (Boolean)file.getExpandoBridge().getAttribute("Date_attr");
Date ad = (Date)file.getExpandoBridge().getAttribute("Arch_it");


and


Map<string, serializable> expandoAttribs = file.getExpandoBridge().getAttributes();
Boolean a = (Boolean)file.getExpandoBridge().getAttribute("Date_attr");
Date ad = (Date)file.getExpandoBridge().getAttribute("Arch_it");
</string,>


It still gives me the default values ... i can see them in the db table 'expandovalue'

I've tried to do it like this:


			ExpandoTable et = ExpandoTableLocalServiceUtil.getTable(eb.getClassName(), eb.get);
			System.out.println("et: "+et.getTableId()+" "+et.getName()+" "+et.getPrimaryKey());
			ExpandoColumn ec = ExpandoColumnLocalServiceUtil.getColumn(et.getTableId(), et.getName());
			System.out.println("ec: "+ec.getColumnId()+" ");
			//ExpandoRowLocalServiceUtil.getRow(et.getTableId(), et.getPrimaryKey());
			//ExpandoValueLocalServiceUtil.getValue(columnId rowId)


and ... THERE IS NOOOOOOOOO *$@% DOCUMENTATION on the parameters exceppt for @depricated...
thumbnail
Adolfo Enrique Benedetti, modifié il y a 13 années.

RE: Getting a custom user field value (expando)

Junior Member Publications: 45 Date d'inscription: 04/06/09 Publications récentes
kuki last:
This is not solved! I cannot get the value of expando atrributes it always gives me defaultValue.

Did you try to change the values of your test? maybe the values retrieved from the custom fields are not the ones sent by the browser in the last submit, but the old ones(in your case the default values). see this post
Mykola M, modifié il y a 12 années.

RE: Getting a custom user field value (expando)

New Member Publications: 4 Date d'inscription: 20/01/11 Publications récentes
kuki last:
This is not solved! I cannot get the value of expando atrributes it always gives me defaultValue. I tried


Boolean a = (Boolean)file.getExpandoBridge().getAttribute("Date_attr");
Date ad = (Date)file.getExpandoBridge().getAttribute("Arch_it");


and


Map<string, serializable> expandoAttribs = file.getExpandoBridge().getAttributes();
Boolean a = (Boolean)file.getExpandoBridge().getAttribute("Date_attr");
Date ad = (Date)file.getExpandoBridge().getAttribute("Arch_it");
</string,>


It still gives me the default values ... i can see them in the db table 'expandovalue'

I've tried to do it like this:


			ExpandoTable et = ExpandoTableLocalServiceUtil.getTable(eb.getClassName(), eb.get);
			System.out.println("et: "+et.getTableId()+" "+et.getName()+" "+et.getPrimaryKey());
			ExpandoColumn ec = ExpandoColumnLocalServiceUtil.getColumn(et.getTableId(), et.getName());
			System.out.println("ec: "+ec.getColumnId()+" ");
			//ExpandoRowLocalServiceUtil.getRow(et.getTableId(), et.getPrimaryKey());
			//ExpandoValueLocalServiceUtil.getValue(columnId rowId)


and ... THERE IS NOOOOOOOOO *$@% DOCUMENTATION on the parameters exceppt for @depricated...


This is ridiculous. Spent ~6h hours digging it, had to look up eventually how they display values of custom fields in control panel, and look what I have found!
Sorry for being somewhat emotional, but this is just stupid.

If you define custom field "myfield" on for instance Organization, and you call
org.getExpandoBridge().getAttribute("random") - returns null, because there's no field "random" defined
org.getExpandoBridge().getAttribute("myfield") - returns value as expected.

Simple, yep? But!
DLFileEntry (document library documents) is very special.
dlFileEntry.getExpandoBridge().getAttribute("random") - returns null, ok
dlFileEntry.getExpandoBridge().getAttribute("myfield") - returns default value! (like empty string for Text, 1 Jan 1970 for Date etc)

Extensive debugging shows, that in expandovalue for document with id say 100000 there's a record with classPK column value 100001. So class is somehow wrong.
Looking up liferay-portal-src-6.0.6\portal-web\docroot\html\portlet\document_library\edit_file_entry.jsp expained it all - they use DLFileVersion!

dlFileEntry.getFileVersion().getExpandoBridge().getAttribute("myfield") - returns desired value

Had to learn it the hard way )-:
So I hope sharing this knowledge will save mankind some wasted resources (-:
Enjoy.
Jack Daniels, modifié il y a 12 années.

RE: Getting a custom user field value (expando)

New Member Publications: 19 Date d'inscription: 17/05/10 Publications récentes
That is absurd indeed.

Thank you so much for providing a solution for others to follow. I was about to embark on the same quest when I stumbled on your post. Thanks again!!!
Marc Piparo, modifié il y a 12 années.

RE: Getting a custom user field value (expando)

Junior Member Publications: 43 Date d'inscription: 14/03/11 Publications récentes
thanks!!
Krishan Kumar, modifié il y a 12 années.

RE: Getting a custom user field value (expando)

New Member Publications: 16 Date d'inscription: 18/01/12 Publications récentes
Hi Mykola M,

I need a little help on Docuemnt Lib. custom Fields. If you can help me on this, that wud save my life.

I want to search documents on custom Fields value. That is, I added a custom field - say "Package" - in DL file and added a value - say "1234"- to it.

Now when is search the Liferay portal through open search portlet, it should give me this document. Currently Open search is searching on Custom fileds in User but not on Custom Fields in Document Library.

If you can suggest any solution, plz give it step by step as I am new to Liferay.

I am using Liferay 6.0.6 + tomcat 6.0.29 + MySQL 5.5.

Thanx in advance...

Krishan Kumar
thumbnail
Praveen P, modifié il y a 12 années.

RE: Getting a custom user field value (expando)

Regular Member Publications: 100 Date d'inscription: 21/02/12 Publications récentes
Hi i added custom field like country, and given some group of values but while fetching the data useing
(String) user.getExpandoBridge().getAttribute("Country") it is not displaying a desired value, how to get?

Thanks in advance
Julien GRESSE, modifié il y a 11 années.

RE: Getting a custom user field value (expando)

New Member Publications: 5 Date d'inscription: 09/01/12 Publications récentes
Hi everybody,

We found a way to retreive custom fields value, it's bit complicated but it works fine.


long versionID = DLFileVersionLocalServiceUtil.getLatestFileVersion(fileId, true).getFileVersionId();
ExpandoTable expandoTable = ExpandoTableLocalServiceUtil.getDefaultTable(companyId, DLFileEntry.class.getName());
ExpandoColumn column = ExpandoColumnLocalServiceUtil.getColumn(expandoTable.getTableId(), "custom.order");
if (column != null) {
ExpandoValue val = ExpandoValueLocalServiceUtil.getValue(expandoTable.getTableId(), column.getColumnId(), versionID);
  if (val != null) {
    return val.getInteger();
  } else {
    return 0;
  }
}


Hope this helps
thumbnail
Pranoti Nandurkar, modifié il y a 10 années.

RE: Getting a custom user field value (expando)

Junior Member Publications: 48 Date d'inscription: 03/02/12 Publications récentes
Thanks Julien, It worked for me... emoticon
Mahmoud kallel, modifié il y a 10 années.

RE: Getting a custom user field value (expando)

New Member Publications: 7 Date d'inscription: 20/11/13 Publications récentes
please ,
i need help
i want to add custom field like nationality or grade
what can i do ??
thanks
Mahmoud kallel, modifié il y a 10 années.

RE: Getting a custom user field value (expando)

New Member Publications: 7 Date d'inscription: 20/11/13 Publications récentes
please ,
i need help
i want to add custom field like nationality or grade
what can i do ??
thanks
thumbnail
Ehsan Rashidy, modifié il y a 10 années.

RE: Getting a custom user field value (expando)

New Member Publications: 17 Date d'inscription: 24/04/13 Publications récentes
Daniel Kreiseder:
Control Panel-> Users->Custom Attributes->Actions->Permissions

Set Guest Permission to read


Hi,
Thank you Daneil for your helpful post,

I had the same problem with custom fields, here is my scenario:

First i created a custom field through control panel for organization (here),
Then I changed the permissions for this fields
(
1-login as administrator, go to control panel
2-Portal -> custom fields
3- click Actions -> permissions on you desired custom field
4- then check view check box for guest role
)

And at the end i just get the value of the custom field by ExpandoBridge.(organization.getExpandoBridge().getAttribute("CUSTOM_FIELD_NAME");)
thumbnail
ilke Muhtaroglu, modifié il y a 14 années.

RE: [SOLVED]Getting a custom user field value (expando)

Regular Member Publications: 226 Date d'inscription: 12/05/09 Publications récentes
Hi,

I try to access to a custom attribute of users.

The result comes as Serializable and when i cast the result to Integer, and when i print the value it appears as "null", not the integer value i have given to that custom attribute !

user.getExpandoBridge().getAttribute("sessionNo");

am i supposed to cast it ?

the custom attribute exists ! I checked it as you proposed. How did you solve this "null" problem ???

ilke
thumbnail
Anil Sunkari, modifié il y a 12 années.

RE: [SOLVED]Getting a custom user field value (expando)

Expert Publications: 427 Date d'inscription: 12/08/09 Publications récentes
Hi ilke,

ilke Muhtaroglu:
Hi,

I try to access to a custom attribute of users.

The result comes as Serializable and when i cast the result to Integer, and when i print the value it appears as "null", not the integer value i have given to that custom attribute !

user.getExpandoBridge().getAttribute("sessionNo");

am i supposed to cast it ?

the custom attribute exists ! I checked it as you proposed. How did you solve this "null" problem ???

ilke


As per my understanding if i am right you can try using below code to get field value from expandovalue.

long userClassNameId = ClassNameLocalServiceUtil.getClassNameId(User.class.getName());
ExpandoTable table = ExpandoTableLocalServiceUtil.getDefaultTable(themeDisplay.getCompanyId(), userClassNameId );
ExpandoColumn column = ExpandoColumnLocalServiceUtil.getColumn(table.getTableId(), "portraitId");
ExpandoValue expandoValue = ExpandoValueLocalServiceUtil.getValue(table.getTableId(), column.getColumnId(), themeDisplay.getUserId());


Regards,
Anil Sunkari
thumbnail
Tejas Patel, modifié il y a 12 années.

RE: [SOLVED]Getting a custom user field value (expando)

Junior Member Publications: 71 Date d'inscription: 24/01/12 Publications récentes
HI Anil
Do you please explain the objects you taken that which object refers to which class and what it returns .
Because i am new in this technology so please explain in detail so i understand how they works .
I use existing code but it gives error in ExpandoColumn and ExpandoValue.
and one thing can u please explain where to use this code like in processAction class or any other class.
Thanks and Regards,
Tejas patel
Ved Mishra, modifié il y a 7 années.

RE: [SOLVED]Getting a custom user field value (expando)

New Member Envoyer: 1 Date d'inscription: 09/06/16 Publications récentes
Excellent job

it works , thanks emoticon
thumbnail
Jack Bakker, modifié il y a 12 années.

RE: [SOLVED]Getting a custom user field value (expando)

Liferay Master Publications: 978 Date d'inscription: 03/01/10 Publications récentes
ilke Muhtaroglu:

I try to access to a custom attribute of users.
The result comes as Serializable and when i cast the result to Integer, and when i print the value it appears as "null", not the integer value i have given to that custom attribute !
user.getExpandoBridge().getAttribute("sessionNo");
am i supposed to cast it ?
the custom attribute exists ! I checked it as you proposed. How did you solve this "null" problem ???


and check permissions on the custom field
thumbnail
Samir Gami, modifié il y a 12 années.

RE: [SOLVED]Getting a custom user field value (expando)

Regular Member Publications: 162 Date d'inscription: 04/02/11 Publications récentes
Hey Guys,

What about ExpandoValueLocalServiceUtil , It have same purpose.
ExpandoValueLocalServiceUtil.getValue(companyId, User.class.getName(), ExpandoTableConstants.DEFAULT_TABLE_NAME, "Custom_Field_Name", userID);


Also it don't requires the Guest user permission to retrieve/update/add the custom field value.

Hope this may helps.
Mahmoud kallel, modifié il y a 10 années.

RE: [SOLVED]Getting a custom user field value (expando)

New Member Publications: 7 Date d'inscription: 20/11/13 Publications récentes
please ,
i need help
i want to add custom field like nationality or grade
what can i do ??
thanks
Mahmoud kallel, modifié il y a 10 années.

RE: [SOLVED]Getting a custom user field value (expando)

New Member Publications: 7 Date d'inscription: 20/11/13 Publications récentes
please ,
i need help
i want to add custom field like nationality or grade
what can i do ??
thanks
thumbnail
Archi Madhu, modifié il y a 10 années.

RE: [SOLVED]Getting a custom user field value (expando)

Regular Member Publications: 237 Date d'inscription: 25/03/08 Publications récentes
Mahmoud kallel:
please ,
i need help
i want to add custom field like nationality or grade
what can i do ??
thanks


I think following should work -

long userClassNameId = ClassNameLocalServiceUtil.getClassNameId(User.class.getName());
ExpandoTable table = ExpandoTableLocalServiceUtil.getDefaultTable(themeDisplay.getCompanyId(), userClassNameId );
ExpandoColumn column = ExpandoColumnLocalServiceUtil.getColumn(table.getTableId(), "nationality");
ExpandoValue expandoValue = ExpandoValueLocalServiceUtil.addValue(userClassNameId ,table.getTableId(), column.getColumnId(), classPK, "indian");
Mahmoud kallel, modifié il y a 10 années.

RE: [SOLVED]Getting a custom user field value (expando)

New Member Publications: 7 Date d'inscription: 20/11/13 Publications récentes
thanks, but in what field i shoul put this code?