} else if (socialProvider.equals(SocialProvider.YAHOO)) {
//FUTURE - Only valid on defined domain.
log.debug("Yahoo provider is disabled");
} else if (socialProvider.equals(SocialProvider.PLURK)) {
PlurkAPIOperations apiOperations = new PlurkAPITemplate(
apiKey, consumerSecret, accessToken.getValue(),
accessToken.getSecret());
SocialUserProfile profile = apiOperations.getProfile();
log.debug("plurk profile " + profile.toString());
final SocialAccount socialAccount = getSecurityService().getCurrentSocialAccount(socialProvider, profile.getId());
if (socialAccount == null) {
getSecurityService().addNewSocialAccount(
accessToken.getValue(), accessToken.getSecret(), null, profile,
socialProvider, getUserAccount());
} else {
log.warn("This account already exist");
throw new EnMeExistPreviousConnectionException(getMessage("social.repeated.account"));
}
} else if (socialProvider.equals(SocialProvider.TUMBLR)) {
TumblrAPIOperations apiOperations = new TumblrAPITemplate(
apiKey, consumerSecret, accessToken.getValue(),
accessToken.getSecret());
SocialUserProfile profile = apiOperations.getProfile();
log.debug("linkedin profile "+profile.toString());
final SocialAccount socialAccount = getSecurityService().getCurrentSocialAccount(socialProvider, profile.getId());
if (socialAccount == null) {
getSecurityService().addNewSocialAccount(
accessToken.getValue(), accessToken.getSecret(), null, profile,