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

com.binarywang.spring.starter.wxjava.qidian.config.WxQidianServiceAutoConfiguration Maven / Gradle / Ivy

There is a newer version: 4.6.9.B
Show newest version
package com.binarywang.spring.starter.wxjava.qidian.config;

import com.binarywang.spring.starter.wxjava.qidian.enums.HttpClientType;
import com.binarywang.spring.starter.wxjava.qidian.properties.WxQidianProperties;
import me.chanjar.weixin.qidian.api.WxQidianService;
import me.chanjar.weixin.qidian.api.impl.WxQidianServiceHttpClientImpl;
import me.chanjar.weixin.qidian.api.impl.WxQidianServiceImpl;
import me.chanjar.weixin.qidian.api.impl.WxQidianServiceJoddHttpImpl;
import me.chanjar.weixin.qidian.api.impl.WxQidianServiceOkHttpImpl;
import me.chanjar.weixin.qidian.config.WxQidianConfigStorage;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

/**
 * 腾讯企点相关服务自动注册.
 *
 * @author alegria
 */
@Configuration
public class WxQidianServiceAutoConfiguration {

  @Bean
  @ConditionalOnMissingBean
  public WxQidianService wxQidianService(WxQidianConfigStorage configStorage, WxQidianProperties wxQidianProperties) {
    HttpClientType httpClientType = wxQidianProperties.getConfigStorage().getHttpClientType();
    WxQidianService wxQidianService;
    switch (httpClientType) {
      case OkHttp:
        wxQidianService = newWxQidianServiceOkHttpImpl();
        break;
      case JoddHttp:
        wxQidianService = newWxQidianServiceJoddHttpImpl();
        break;
      case HttpClient:
        wxQidianService = newWxQidianServiceHttpClientImpl();
        break;
      default:
        wxQidianService = newWxQidianServiceImpl();
        break;
    }

    wxQidianService.setWxMpConfigStorage(configStorage);
    return wxQidianService;
  }

  private WxQidianService newWxQidianServiceImpl() {
    return new WxQidianServiceImpl();
  }

  private WxQidianService newWxQidianServiceHttpClientImpl() {
    return new WxQidianServiceHttpClientImpl();
  }

  private WxQidianService newWxQidianServiceOkHttpImpl() {
    return new WxQidianServiceOkHttpImpl();
  }

  private WxQidianService newWxQidianServiceJoddHttpImpl() {
    return new WxQidianServiceJoddHttpImpl();
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy