Java tutorial
/* * Copyright 2013-2015 JIWHIZ Consulting Inc. * * 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 com.jiwhiz.web.config; import javax.inject.Inject; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Scope; import org.springframework.context.annotation.ScopedProxyMode; import org.springframework.core.env.Environment; import org.springframework.security.crypto.encrypt.Encryptors; import org.springframework.social.config.annotation.ConnectionFactoryConfigurer; import org.springframework.social.config.annotation.SocialConfigurerAdapter; import org.springframework.social.connect.Connection; import org.springframework.social.connect.ConnectionFactoryLocator; import org.springframework.social.connect.ConnectionRepository; import org.springframework.social.connect.ConnectionSignUp; import org.springframework.social.connect.UsersConnectionRepository; import org.springframework.social.google.api.Google; import org.springframework.social.google.api.impl.GoogleTemplate; import org.springframework.social.google.connect.GoogleConnectionFactory; import org.springframework.social.security.SocialAuthenticationServiceLocator; import com.jiwhiz.domain.account.UserAccountService; import com.jiwhiz.domain.account.UserSocialConnectionRepository; import com.jiwhiz.domain.account.impl.MongoUsersConnectionRepositoryImpl; import com.jiwhiz.rest.MessageSender; /** * Configuration for Spring Social. * * @author Yuan Ji * */ @Configuration public class SocialConfig extends SocialConfigurerAdapter { @Inject private UserSocialConnectionRepository userSocialConnectionRepository; @Inject private UserAccountService userAccountService; @Inject private MessageSender messageSender; @Bean public ConnectionSignUp autoConnectionSignUp() { return new AutoConnectionSignUp(userAccountService, messageSender); } @Override public UsersConnectionRepository getUsersConnectionRepository( ConnectionFactoryLocator connectionFactoryLocator) { MongoUsersConnectionRepositoryImpl repository = new MongoUsersConnectionRepositoryImpl( userSocialConnectionRepository, (SocialAuthenticationServiceLocator) connectionFactoryLocator, Encryptors.noOpText()); repository.setConnectionSignUp(autoConnectionSignUp()); return repository; } @Bean @Scope(value = "request", proxyMode = ScopedProxyMode.INTERFACES) public Google google(ConnectionRepository repository) { Connection<Google> connection = repository.findPrimaryConnection(Google.class); return connection != null ? connection.getApi() : new GoogleTemplate(); } @Override public void addConnectionFactories(ConnectionFactoryConfigurer configurer, Environment environment) { configurer.addConnectionFactory( new GoogleConnectionFactory(environment.getProperty("spring.social.google.appId"), environment.getProperty("spring.social.google.appSecret"))); } }