| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
|
| 17 | |
|
| 18 | |
|
| 19 | |
|
| 20 | |
|
| 21 | |
|
| 22 | |
|
| 23 | |
|
| 24 | |
|
| 25 | |
|
| 26 | |
|
| 27 | |
|
| 28 | |
|
| 29 | |
|
| 30 | |
|
| 31 | |
|
| 32 | |
|
| 33 | |
package net.sourceforge.pebble.web.action; |
| 34 | |
|
| 35 | |
import net.sourceforge.pebble.Constants; |
| 36 | |
import net.sourceforge.pebble.PebbleContext; |
| 37 | |
import net.sourceforge.pebble.domain.AbstractBlog; |
| 38 | |
import net.sourceforge.pebble.security.PebbleUserDetails; |
| 39 | |
import net.sourceforge.pebble.security.SecurityRealm; |
| 40 | |
import net.sourceforge.pebble.security.SecurityRealmException; |
| 41 | |
import net.sourceforge.pebble.util.SecurityUtils; |
| 42 | |
import net.sourceforge.pebble.util.StringUtils; |
| 43 | |
import net.sourceforge.pebble.web.validation.ValidationContext; |
| 44 | |
import net.sourceforge.pebble.web.view.RedirectView; |
| 45 | |
import net.sourceforge.pebble.web.view.View; |
| 46 | |
import net.sourceforge.pebble.web.view.impl.UserPreferencesView; |
| 47 | |
import org.apache.commons.logging.Log; |
| 48 | |
import org.apache.commons.logging.LogFactory; |
| 49 | |
import org.springframework.security.openid.OpenIDAuthenticationStatus; |
| 50 | |
import org.springframework.security.openid.OpenIDAuthenticationToken; |
| 51 | |
import org.springframework.security.openid.OpenIDConsumer; |
| 52 | |
import org.springframework.security.openid.OpenIDConsumerException; |
| 53 | |
|
| 54 | |
import javax.inject.Inject; |
| 55 | |
import javax.servlet.ServletException; |
| 56 | |
import javax.servlet.http.HttpServletRequest; |
| 57 | |
import javax.servlet.http.HttpServletResponse; |
| 58 | |
|
| 59 | |
|
| 60 | |
|
| 61 | |
|
| 62 | 0 | public class AddOpenIdAction extends SecureAction { |
| 63 | 0 | private static final Log log = LogFactory.getLog(AddOpenIdAction.class); |
| 64 | |
|
| 65 | |
@Inject |
| 66 | |
private OpenIDConsumer openIDConsumer; |
| 67 | |
@Inject |
| 68 | |
private SecurityRealm securityRealm; |
| 69 | |
|
| 70 | |
public View process(HttpServletRequest request, HttpServletResponse response) throws ServletException { |
| 71 | 0 | PebbleUserDetails userDetails = SecurityUtils.getUserDetails(); |
| 72 | 0 | ValidationContext validationContext = new ValidationContext(); |
| 73 | 0 | AbstractBlog blog = (AbstractBlog)getModel().get(Constants.BLOG_KEY); |
| 74 | |
|
| 75 | 0 | String identity = request.getParameter("openid.identity"); |
| 76 | |
|
| 77 | |
|
| 78 | 0 | if (identity == null || identity.length() == 0) { |
| 79 | 0 | String claimedIdentity = request.getParameter("openid_identifier"); |
| 80 | |
try { |
| 81 | 0 | String returnToUrl = request.getRequestURL().toString(); |
| 82 | 0 | String realm = PebbleContext.getInstance().getConfiguration().getUrl(); |
| 83 | 0 | String openIdUrl = openIDConsumer.beginConsumption(request, claimedIdentity, returnToUrl, realm); |
| 84 | 0 | return new RedirectView(openIdUrl); |
| 85 | 0 | } catch (OpenIDConsumerException oice) { |
| 86 | 0 | log.error("Error adding OpenID", oice); |
| 87 | 0 | validationContext.addError("Error adding OpenID " + oice.getMessage()); |
| 88 | |
} |
| 89 | |
|
| 90 | 0 | } else { |
| 91 | |
|
| 92 | |
try { |
| 93 | 0 | OpenIDAuthenticationToken token = openIDConsumer.endConsumption(request); |
| 94 | 0 | if (token.getStatus() == OpenIDAuthenticationStatus.SUCCESS) { |
| 95 | |
|
| 96 | 0 | String openId = token.getIdentityUrl(); |
| 97 | 0 | if (securityRealm.getUserForOpenId(openId) != null) { |
| 98 | 0 | validationContext.addError("The OpenID supplied is already mapped to a user."); |
| 99 | |
} else { |
| 100 | |
|
| 101 | 0 | securityRealm.addOpenIdToUser(userDetails, openId); |
| 102 | 0 | return new RedirectView(blog.getUrl() + "/editUserPreferences.secureaction"); |
| 103 | |
} |
| 104 | 0 | } else { |
| 105 | 0 | validationContext.addError(StringUtils.transformHTML(token.getMessage())); |
| 106 | |
} |
| 107 | |
|
| 108 | 0 | } catch (OpenIDConsumerException oice) { |
| 109 | 0 | log.error("Error in consumer", oice); |
| 110 | 0 | validationContext.addError("Error adding OpenID " + oice.getMessage()); |
| 111 | 0 | } catch (SecurityRealmException sre) { |
| 112 | 0 | log.error("Error looking up user by security realm", sre); |
| 113 | 0 | } |
| 114 | |
} |
| 115 | |
|
| 116 | 0 | getModel().put("user", userDetails); |
| 117 | 0 | getModel().put("validationContext", validationContext); |
| 118 | 0 | return new UserPreferencesView(); |
| 119 | |
} |
| 120 | |
|
| 121 | |
|
| 122 | |
|
| 123 | |
|
| 124 | |
|
| 125 | |
|
| 126 | |
|
| 127 | |
|
| 128 | |
public String[] getRoles(HttpServletRequest request) { |
| 129 | 0 | return new String[]{Constants.ANY_ROLE}; |
| 130 | |
} |
| 131 | |
} |