cn.jiguang.common.ClientConfig Java Examples

The following examples show how to use cn.jiguang.common.ClientConfig. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: JPushUtil.java    From anyline with Apache License 2.0 6 votes vote down vote up
public static JPushUtil getInstance(String key){ 
	if(BasicUtil.isEmpty(key)){ 
		key = "default"; 
	} 
	JPushUtil util = instances.get(key); 
	if(null == util){ 
		util = new JPushUtil(); 
		JPushConfig config = JPushConfig.getInstance(key); 
		util.config = config; 

		ClientConfig clientConfig; 
		clientConfig = ClientConfig.getInstance(); 
		clientConfig.setApnsProduction(false);  
		clientConfig.setTimeToLive(60 * 60 * 24); 
		util.client = new JPushClient(config.MASTER_SECRET, config.APP_KEY, null, clientConfig); 
		 
		instances.put(key, util); 
	} 
	return util; 
}
 
Example #2
Source File: NettyHttpClient.java    From jiguang-java-client-common with MIT License 6 votes vote down vote up
public NettyHttpClient(String authCode, HttpProxy proxy, ClientConfig config) {
    _maxRetryTimes = config.getMaxRetryTimes();
    _readTimeout = config.getReadTimeout();
    String message = MessageFormat.format("Created instance with "
                    + "connectionTimeout {0}, readTimeout {1}, maxRetryTimes {2}, SSL Version {3}",
            config.getConnectionTimeout(), _readTimeout, _maxRetryTimes, config.getSSLVersion());
    LOG.debug(message);
    _authCode = authCode;
    _encryptType = config.getEncryptType();
    try {
        _sslCtx = SslContextBuilder.forClient().trustManager(InsecureTrustManagerFactory.INSTANCE).build();
        _workerGroup = new NioEventLoopGroup();
        b = new Bootstrap(); // (1)
        b.group(_workerGroup); // (2)
        b.channel(NioSocketChannel.class); // (3)
        b.option(ChannelOption.SO_KEEPALIVE, true); // (4)
    } catch (SSLException e) {
        e.printStackTrace();
    }
}
 
Example #3
Source File: Http2Client.java    From jiguang-java-client-common with MIT License 6 votes vote down vote up
public Http2Client(String authCode, HttpProxy proxy, ClientConfig config) {
    _maxRetryTimes = config.getMaxRetryTimes();
    _connectionTimeout = config.getConnectionTimeout();
    _readTimeout = config.getReadTimeout();
    _sslVer = config.getSSLVersion();

    _authCode = authCode;
    _proxy = proxy;
    _encryptType = config.getEncryptType();
    String message = MessageFormat.format("Created instance with "
                    + "connectionTimeout {0}, readTimeout {1}, maxRetryTimes {2}, SSL Version {3}",
            _connectionTimeout, _readTimeout, _maxRetryTimes, _sslVer);
    LOG.info(message);

    if (null != _proxy && _proxy.isAuthenticationNeeded()) {
        Authenticator.setDefault(new NativeHttpClient.SimpleProxyAuthenticator(
                _proxy.getUsername(), _proxy.getPassword()));
    }
}
 
Example #4
Source File: NativeHttpClient.java    From jiguang-java-client-common with MIT License 6 votes vote down vote up
public NativeHttpClient(String authCode, HttpProxy proxy, ClientConfig config ) {
      _maxRetryTimes = config.getMaxRetryTimes();
_connectionTimeout = config.getConnectionTimeout();
_readTimeout = config.getReadTimeout();
_sslVer = config.getSSLVersion();
      _encryptType = config.getEncryptType();
_authCode = authCode;
_proxy = proxy;

String message = MessageFormat.format("Created instance with "
				+ "connectionTimeout {0}, readTimeout {1}, maxRetryTimes {2}, SSL Version {3}",
		_connectionTimeout, _readTimeout, _maxRetryTimes, _sslVer);
      LOG.debug(message);

      if ( null != _proxy && _proxy.isAuthenticationNeeded()) {
      	Authenticator.setDefault(new SimpleProxyAuthenticator(
              _proxy.getUsername(), _proxy.getPassword()));
      }
      initSSL(_sslVer);
  }
 
Example #5
Source File: ApiBootMessagePushJiGuangServiceImpl.java    From api-boot with Apache License 2.0 5 votes vote down vote up
/**
 * execute push message
 *
 * @param messagePushBody request body
 * @throws ApiBootException ApiBoot Exception
 */
@Override
public void executePush(MessagePushBody messagePushBody) throws ApiBootException {
    try {
        // push client config
        PushClientConfig pushClientConfig = getCurrentPushClient();
        // jpush client
        JPushClient pushClient = new JPushClient(pushClientConfig.getMasterSecret(), pushClientConfig.getAppKey(), null, ClientConfig.getInstance());

        PushPayload.Builder builder = PushPayload.newBuilder();

        // setting platform
        addPlatformMeta(messagePushBody, builder);

        // setting tag
        addTagMeta(messagePushBody, builder);
        // setting alias
        // Priority is higher than tag
        addAliasMeta(messagePushBody.getAlias(), builder);

        // setting notification
        addNotificationMeta(builder, messagePushBody);

        // execute push message
        pushClient.sendPush(builder.build());
    } catch (Exception e) {
        logger.error("Execute push message fail.", e);
    }

}
 
Example #6
Source File: ApacheHttpClient.java    From jiguang-java-client-common with MIT License 5 votes vote down vote up
public ApacheHttpClient(String authCode, HttpProxy proxy, ClientConfig config) {
    _maxRetryTimes = config.getMaxRetryTimes();
    _connectionTimeout = config.getConnectionTimeout();
    _connectionRequestTimeout = config.getConnectionRequestTimeout();
    _socketTimeout = config.getSocketTimeout();
    _authCode = authCode;
    _encryptType = config.getEncryptType();
    if (proxy != null) {
        _proxy = new HttpHost(proxy.getHost(), proxy.getPort());
    }
}
 
Example #7
Source File: JSMSConfig.java    From jsms-api-java-client with MIT License 4 votes vote down vote up
public ClientConfig getClientConfig() {
	return clientConfig;
}
 
Example #8
Source File: JMessageConfig.java    From jmessage-api-java-client with MIT License 4 votes vote down vote up
public ClientConfig getClientConfig() {
    return clientConfig;
}