use of org.apereo.portal.portlets.StringListAttribute in project uPortal by Jasig.
the class UserAccountHelperTest method testGetForm.
@Test
public void testGetForm() {
PersonForm personForm = userAccountHelper.getForm(TEST_USER_NAME);
assertEquals(personForm.getId(), 10000l);
assertEquals(personForm.getUsername(), TEST_USER_NAME);
// validate person attributes
Map<String, StringListAttribute> personAttributes = personForm.getAttributes();
assertNotNull(personAttributes);
StringListAttribute attributeValues = personAttributes.get(TEST_ATTRIBUTE_NAME);
List<String> values = attributeValues.getValue();
assertEquals(values.get(0), CURRENT_ATTRIBUTE_VALUES.get(0));
}
use of org.apereo.portal.portlets.StringListAttribute in project uPortal by Jasig.
the class UserAccountHelperTest method getPersonAttributes.
/**
* @return
*/
private Map<String, StringListAttribute> getPersonAttributes() {
Map<String, StringListAttribute> personAttributes = new HashMap<>();
personAttributes.put("pref_name_1", new StringListAttribute());
personAttributes.put("pref_name_2", new StringListAttribute());
personAttributes.put("pref_name_3", new StringListAttribute());
return personAttributes;
}
use of org.apereo.portal.portlets.StringListAttribute in project uPortal by Jasig.
the class PortletAdministrationHelper method cleanOptions.
public void cleanOptions(PortletDefinitionForm form, PortletRequest request) {
// Add permission parameters to permissions collection
form.clearPermissions();
for (PortletPermissionsOnForm perm : PortletPermissionsOnForm.values()) {
addPermissionsFromRequestToForm(form, request, perm.getActivity());
}
// Names of valid preferences and parameters
final Set<String> preferenceNames = new HashSet<>();
final Set<String> parameterNames = new HashSet<>();
// Read all of the submitted channel parameter and portlet preference names from the request
for (final Enumeration<String> e = request.getParameterNames(); e.hasMoreElements(); ) {
final String name = e.nextElement();
final Matcher nameMatcher = PARAM_PATTERN.matcher(name);
if (nameMatcher.matches()) {
final String paramType = nameMatcher.group(1);
final String paramName = nameMatcher.group(2);
if ("portletPreferences".equals(paramType)) {
preferenceNames.add(paramName);
} else if ("parameters".equals(paramType)) {
parameterNames.add(paramName);
}
}
}
// Add all of the parameter and preference names that have default values in the CPD into
// the valid name sets
final PortletPublishingDefinition cpd = this.portletPublishingDefinitionDao.getChannelPublishingDefinition(form.getTypeId());
for (final Step step : cpd.getSteps()) {
final List<Parameter> parameters = step.getParameters();
if (parameters != null) {
for (final Parameter parameter : parameters) {
final JAXBElement<? extends ParameterInputType> parameterInput = parameter.getParameterInput();
if (parameterInput != null) {
final ParameterInputType parameterInputType = parameterInput.getValue();
if (parameterInputType != null && parameterInputType.getDefault() != null) {
parameterNames.add(parameter.getName());
}
}
}
}
final List<Preference> preferences = step.getPreferences();
if (preferences != null) {
for (final Preference preference : preferences) {
final JAXBElement<? extends PreferenceInputType> preferenceInput = preference.getPreferenceInput();
final PreferenceInputType preferenceInputType = preferenceInput.getValue();
if (preferenceInputType instanceof MultiValuedPreferenceInputType) {
final MultiValuedPreferenceInputType multiValuedPreferenceInputType = (MultiValuedPreferenceInputType) preferenceInputType;
final List<String> defaultValues = multiValuedPreferenceInputType.getDefaults();
if (defaultValues != null && !defaultValues.isEmpty()) {
preferenceNames.add(preference.getName());
}
} else if (preferenceInputType instanceof SingleValuedPreferenceInputType) {
final SingleValuedPreferenceInputType SingleValuedPreferenceInputType = (SingleValuedPreferenceInputType) preferenceInputType;
if (SingleValuedPreferenceInputType.getDefault() != null) {
preferenceNames.add(preference.getName());
}
}
}
}
}
// - do it only if portlet doesn't support configMode
if (!this.supportsConfigMode(form)) {
final Map<String, StringListAttribute> portletPreferences = form.getPortletPreferences();
final Map<String, BooleanAttribute> portletPreferencesOverrides = form.getPortletPreferenceReadOnly();
for (final Iterator<Entry<String, StringListAttribute>> portletPreferenceEntryItr = portletPreferences.entrySet().iterator(); portletPreferenceEntryItr.hasNext(); ) {
final Map.Entry<String, StringListAttribute> portletPreferenceEntry = portletPreferenceEntryItr.next();
final String key = portletPreferenceEntry.getKey();
final StringListAttribute valueAttr = portletPreferenceEntry.getValue();
if (!preferenceNames.contains(key) || valueAttr == null) {
portletPreferenceEntryItr.remove();
portletPreferencesOverrides.remove(key);
} else {
final List<String> values = valueAttr.getValue();
for (final Iterator<String> iter = values.iterator(); iter.hasNext(); ) {
String value = iter.next();
if (value == null) {
iter.remove();
}
}
if (values.size() == 0) {
portletPreferenceEntryItr.remove();
portletPreferencesOverrides.remove(key);
}
}
}
}
final Map<String, Attribute> parameters = form.getParameters();
for (final Iterator<Entry<String, Attribute>> parameterEntryItr = parameters.entrySet().iterator(); parameterEntryItr.hasNext(); ) {
final Entry<String, Attribute> parameterEntry = parameterEntryItr.next();
final String key = parameterEntry.getKey();
final Attribute value = parameterEntry.getValue();
if (!parameterNames.contains(key) || value == null || StringUtils.isBlank(value.getValue())) {
parameterEntryItr.remove();
}
}
}
use of org.apereo.portal.portlets.StringListAttribute in project uPortal by Jasig.
the class UserAccountHelper method getForm.
public PersonForm getForm(String username) {
ILocalAccountPerson person = accountDao.getPerson(username);
PersonForm form = new PersonForm(accountEditAttributes);
form.setUsername(person.getName());
form.setId(person.getId());
Set<String> attributeNames = accountDao.getCurrentAttributeNames();
for (String name : attributeNames) {
List<String> values = new ArrayList<String>();
List<Object> attrValues = person.getAttributeValues(name);
if (attrValues != null) {
for (Object value : person.getAttributeValues(name)) {
values.add((String) value);
}
}
form.getAttributes().put(name, new StringListAttribute(values));
}
return form;
}
use of org.apereo.portal.portlets.StringListAttribute in project uPortal by Jasig.
the class UserAccountHelper method getNewAccountForm.
public PersonForm getNewAccountForm() {
PersonForm form = new PersonForm(accountEditAttributes);
Set<String> attributeNames = accountDao.getCurrentAttributeNames();
for (String name : attributeNames) {
form.getAttributes().put(name, new StringListAttribute(Collections.<String>emptyList()));
}
return form;
}
Aggregations