Package org.springframework.social.showcase.config

Source Code of org.springframework.social.showcase.config.SocialConfig

/*
* Copyright 2012 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.social.showcase.config;

import javax.inject.Inject;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Profile;
import org.springframework.core.env.Environment;
import org.springframework.social.UserIdSource;
import org.springframework.social.config.annotation.EnableJdbcConnectionRepository;
import org.springframework.social.connect.ConnectionFactoryLocator;
import org.springframework.social.connect.ConnectionRepository;
import org.springframework.social.connect.UsersConnectionRepository;
import org.springframework.social.connect.web.ConnectController;
import org.springframework.social.facebook.config.annotation.EnableFacebook;
import org.springframework.social.facebook.web.DisconnectController;
import org.springframework.social.linkedin.config.annotation.EnableLinkedIn;
import org.springframework.social.security.AuthenticationNameUserIdSource;
import org.springframework.social.showcase.facebook.PostToWallAfterConnectInterceptor;
import org.springframework.social.showcase.twitter.TweetAfterConnectInterceptor;
import org.springframework.social.twitter.config.annotation.EnableTwitter;

/**
* Spring Social Configuration.
*
* This configuration is demonstrating the use of the simplified Spring Social configuration options from Spring Social 1.1.
* It will only be used when the "simple" profile is active.
* The more complex/explicit configuration is still available in ExplicitSocialConfig.java and will be used if the "explicit" profile is active.
*
* @author Craig Walls
*/
@Configuration
@Profile("simple")
@EnableJdbcConnectionRepository
@EnableTwitter(appId="${twitter.consumerKey}", appSecret="${twitter.consumerSecret}")
@EnableFacebook(appId="${facebook.clientId}", appSecret="${facebook.clientSecret}")
@EnableLinkedIn(appId="${linkedin.consumerKey}", appSecret="${linkedin.consumerSecret}")
public class SocialConfig {

  @Inject
  private Environment environment;
 
  @Inject
  private ConnectionFactoryLocator connectionFactoryLocator;
 
  @Inject
  private ConnectionRepository connectionRepository;

  @Inject
  private UsersConnectionRepository usersConnectionRepository;

  @Bean
  public ConnectController connectController() {
    ConnectController connectController = new ConnectController(connectionFactoryLocator, connectionRepository);
    connectController.addInterceptor(new PostToWallAfterConnectInterceptor());
    connectController.addInterceptor(new TweetAfterConnectInterceptor());
    return connectController;
  }
 
  @Bean
  public DisconnectController disconnectController() {
    return new DisconnectController(usersConnectionRepository, environment.getProperty("facebook.clientSecret"));
  }
 
  @Bean
  public UserIdSource userIdSource() {
    return new AuthenticationNameUserIdSource();
  }

}
TOP

Related Classes of org.springframework.social.showcase.config.SocialConfig

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.