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

org.wicketstuff.facebook.plugins.LoginButton Maven / Gradle / Ivy

There is a newer version: 10.1.1
Show newest version
package org.wicketstuff.facebook.plugins;

import java.util.Arrays;
import java.util.Collections;
import java.util.List;

import org.apache.wicket.AttributeModifier;
import org.apache.wicket.model.IModel;
import org.apache.wicket.model.PropertyModel;
import org.wicketstuff.facebook.FacebookPermission;

/**
 * https://developers.facebook.com/docs/reference/plugins/login/
 *
 * @author Till Freier
 *
 */
public class LoginButton extends AbstractFacebookPlugin
{
	private class PermissionsModel implements IModel
	{
		private static final long serialVersionUID = 1L;

		@Override
		public String getObject()
		{
			final StringBuilder str = new StringBuilder();

			for (final FacebookPermission perm : permissions) {
				str.append(perm.name().toLowerCase()).append(',');
			}

			if (str.length() > 0) {
				str.deleteCharAt(str.length() - 1);
			}

			return str.toString();
		}

	}
	private static final long serialVersionUID = 1L;

	private int maxRows = 1;
	private List permissions = Collections.emptyList();
	private boolean showFaces = false;

	public LoginButton(final String id)
	{
		super(id, "fb-login-button");

		add(new AttributeModifier("data-show-faces", new PropertyModel(this, "showFaces")));
		add(new AttributeModifier("data-max-rows", new PropertyModel(this, "maxRows")));
		add(new AttributeModifier("data-scope", new PermissionsModel()));
	}

	/**
	 * By default the Login button prompts users for their public information. If your application
	 * needs to access other parts of the user's profile that may be private, your application can
	 * request extended permissions
	 *
	 * @param id
	 *            wicket-id
	 * @param permissions
	 */
	public LoginButton(final String id, final FacebookPermission... permissions)
	{
		this(id);
		this.permissions = Arrays.asList(permissions);
	}

	/**
	 * @see #setMaxRows(int)
	 * @return
	 */
	public int getMaxRows()
	{
		return maxRows;
	}

	/**
	 * @see FacebookPermission
	 *
	 */
	public List getPermissions()
	{
		return permissions;
	}

	public boolean isShowFaces()
	{
		return showFaces;
	}

	/**
	 * the maximum number of rows of profile pictures to display. Default value: 1.
	 *
	 * @param maxRows
	 */
	public void setMaxRows(final int maxRows)
	{
		this.maxRows = maxRows;
	}

	/**
	 * @see FacebookPermission
	 * @param permissions
	 */
	public void setPermissions(final List permissions)
	{
		this.permissions = permissions;
	}

	/**
	 *
	 * @param showFaces
	 *            whether to show faces underneath the Login button.
	 */
	public void setShowFaces(final boolean showFaces)
	{
		this.showFaces = showFaces;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy