Search in sources :

Example 1 with StringListAttribute

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));
}
Also used : StringListAttribute(org.apereo.portal.portlets.StringListAttribute) Test(org.junit.Test)

Example 2 with StringListAttribute

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;
}
Also used : HashMap(java.util.HashMap) StringListAttribute(org.apereo.portal.portlets.StringListAttribute)

Example 3 with StringListAttribute

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();
        }
    }
}
Also used : BooleanAttribute(org.apereo.portal.portlets.BooleanAttribute) Matcher(java.util.regex.Matcher) BooleanAttribute(org.apereo.portal.portlets.BooleanAttribute) StringListAttribute(org.apereo.portal.portlets.StringListAttribute) Attribute(org.apereo.portal.portlets.Attribute) PortletPublishingDefinition(org.apereo.portal.portletpublishing.xml.PortletPublishingDefinition) Step(org.apereo.portal.portletpublishing.xml.Step) SingleValuedPreferenceInputType(org.apereo.portal.portletpublishing.xml.SingleValuedPreferenceInputType) ParameterInputType(org.apereo.portal.portletpublishing.xml.ParameterInputType) Entry(java.util.Map.Entry) HashSet(java.util.HashSet) MultiValuedPreferenceInputType(org.apereo.portal.portletpublishing.xml.MultiValuedPreferenceInputType) SingleValuedPreferenceInputType(org.apereo.portal.portletpublishing.xml.SingleValuedPreferenceInputType) PreferenceInputType(org.apereo.portal.portletpublishing.xml.PreferenceInputType) MultiValuedPreferenceInputType(org.apereo.portal.portletpublishing.xml.MultiValuedPreferenceInputType) Preference(org.apereo.portal.portletpublishing.xml.Preference) IPortletPreference(org.apereo.portal.portlet.om.IPortletPreference) Parameter(org.apereo.portal.portletpublishing.xml.Parameter) StringListAttribute(org.apereo.portal.portlets.StringListAttribute) Map(java.util.Map) HashMap(java.util.HashMap)

Example 4 with StringListAttribute

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;
}
Also used : ArrayList(java.util.ArrayList) StringListAttribute(org.apereo.portal.portlets.StringListAttribute) ILocalAccountPerson(org.apereo.portal.persondir.ILocalAccountPerson)

Example 5 with StringListAttribute

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;
}
Also used : StringListAttribute(org.apereo.portal.portlets.StringListAttribute)

Aggregations

StringListAttribute (org.apereo.portal.portlets.StringListAttribute)6 HashMap (java.util.HashMap)2 IPortletPreference (org.apereo.portal.portlet.om.IPortletPreference)2 MultiValuedPreferenceInputType (org.apereo.portal.portletpublishing.xml.MultiValuedPreferenceInputType)2 Parameter (org.apereo.portal.portletpublishing.xml.Parameter)2 ParameterInputType (org.apereo.portal.portletpublishing.xml.ParameterInputType)2 Preference (org.apereo.portal.portletpublishing.xml.Preference)2 PreferenceInputType (org.apereo.portal.portletpublishing.xml.PreferenceInputType)2 SingleValuedPreferenceInputType (org.apereo.portal.portletpublishing.xml.SingleValuedPreferenceInputType)2 Step (org.apereo.portal.portletpublishing.xml.Step)2 Attribute (org.apereo.portal.portlets.Attribute)2 BooleanAttribute (org.apereo.portal.portlets.BooleanAttribute)2 ArrayList (java.util.ArrayList)1 HashSet (java.util.HashSet)1 Map (java.util.Map)1 Entry (java.util.Map.Entry)1 Matcher (java.util.regex.Matcher)1 ILocalAccountPerson (org.apereo.portal.persondir.ILocalAccountPerson)1 IPortletDefinitionParameter (org.apereo.portal.portlet.om.IPortletDefinitionParameter)1 PortletPublishingDefinition (org.apereo.portal.portletpublishing.xml.PortletPublishingDefinition)1