All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.day.cq.personalization.tags.ContextProfileAvatarTag Maven / Gradle / Ivy

There is a newer version: 6.5.21
Show newest version
/*
 * Copyright 1997-2010 Day Management AG
 * Barfuesserplatz 6, 4001 Basel, Switzerland
 * All Rights Reserved.
 *
 * This software is the confidential and proprietary information of
 * Day Management AG, ("Confidential Information"). You shall not
 * disclose such Confidential Information and shall use it only in
 * accordance with the terms of the license agreement you entered into
 * with Day.
 */

package com.day.cq.personalization.tags;

import com.adobe.granite.xss.XSSAPI;
import com.day.cq.personalization.ClientContextUtil;
import org.apache.sling.api.SlingHttpServletRequest;
import org.apache.sling.api.scripting.SlingBindings;
import org.apache.sling.scripting.jsp.util.TagUtil;

import javax.servlet.jsp.JspException;
import javax.servlet.jsp.JspWriter;
import javax.servlet.jsp.PageContext;
import javax.servlet.jsp.tagext.TagSupport;
import java.io.IOException;

/**
 * Implements the <personalisation:contextProfileAvatar/> tag
 * AdobePatentID="B1393"
 */
public class ContextProfileAvatarTag extends TagSupport {

    private static final long serialVersionUID = -8276659679028145718L;

    @SuppressWarnings("unused")
    private String avatarPath;
    private String defaultPath;
    private String store;
    private String avatarPropertyName;
    private String titlePropertyName;

    @Override
    public void setPageContext(PageContext pageContext) {
        super.setPageContext(pageContext);
        avatarPath = null;
        defaultPath = null;
        store = "profile";
        avatarPropertyName = "avatar";
        titlePropertyName = "formattedName";
    }


    public void setAvatarPath(String avatarPath) {
        this.avatarPath = avatarPath;
    }

    public void setDefaultPath(String defaultPath) {
        this.defaultPath = defaultPath;
    }

    public void setStore(String store) {
        this.store = store;
    }

    public void setAvatarPropertyName(String avatarPropertyName) {
        this.avatarPropertyName = avatarPropertyName;
    }

    public void setTitlePropertyName(String titlePropertyName) {
        this.titlePropertyName = titlePropertyName;
    }

    @Override
    public int doEndTag() throws JspException {
        final JspWriter out = pageContext.getOut();
        final SlingHttpServletRequest request = TagUtil.getRequest(pageContext);
        try {
            out.println(getScript(request));

        } catch (IOException e) {
            throw new JspException("Could not write property value", e);
        }

        return EVAL_PAGE;
    }

    String getScript(SlingHttpServletRequest request) {

        SlingBindings bindings = (SlingBindings) request.getAttribute(SlingBindings.class.getName());
        XSSAPI xssAPI = bindings.getSling().getService(XSSAPI.class).getRequestSpecificAPI(request);

        StringBuilder res = new StringBuilder();

        String id = store + "-avatar-" + ClientContextUtil.getId(request.getResource().getPath());
        res.append("");

        res.append("");

        return res.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy