twitter4j.TwitterAdsFactory Maven / Gradle / Ivy
package twitter4j;
import twitter4j.auth.AccessToken;
import twitter4j.auth.Authorization;
import twitter4j.auth.AuthorizationFactory;
import twitter4j.auth.OAuthAuthorization;
import twitter4j.conf.Configuration;
import twitter4j.conf.ConfigurationContext;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
/**
* User: abhay
* Date: 3/16/16
* Time: 1:10 PM
*/
public class TwitterAdsFactory {
private static final Constructor TWITTER_CONSTRUCTOR;
/*AsyncTwitterFactory and TWitterStream will access this field*/
static final Authorization DEFAULT_AUTHORIZATION = AuthorizationFactory.getInstance(ConfigurationContext.getInstance());
private static final Twitter SINGLETON;
private static final long serialVersionUID = 5193900138477709155L;
private final Configuration conf;
static {
String className = "twitter4j.TwitterImpl";
Constructor constructor;
Class clazz;
try {
clazz = Class.forName(className);
constructor = clazz.getDeclaredConstructor(Configuration.class, Authorization.class);
} catch (NoSuchMethodException e) {
throw new AssertionError(e);
} catch (ClassNotFoundException e) {
throw new AssertionError(e);
}
TWITTER_CONSTRUCTOR = constructor;
try {
SINGLETON = TWITTER_CONSTRUCTOR.newInstance(ConfigurationContext.getInstance(), DEFAULT_AUTHORIZATION);
} catch (InstantiationException e) {
throw new AssertionError(e);
} catch (IllegalAccessException e) {
throw new AssertionError(e);
} catch (InvocationTargetException e) {
throw new AssertionError(e);
}
}
/**
* Creates a TwitterFactory with the root configuration.
*/
public TwitterAdsFactory() {
this(ConfigurationContext.getInstance());
}
/**
* Creates a TwitterFactory with the given configuration.
*
* @param conf the configuration to use
* @since Twitter4J 2.1.1
*/
public TwitterAdsFactory(Configuration conf) {
if (conf == null) {
throw new NullPointerException("configuration cannot be null");
}
this.conf = conf;
}
/**
* Creates a TwitterFactory with a specified config tree
*
* @param configTreePath the path
*/
public TwitterAdsFactory(String configTreePath) {
this(ConfigurationContext.getInstance(configTreePath));
}
/**
* Returns a instance associated with the configuration bound to this factory.
*
* @return default singleton instance
*/
public Twitter getInstance() {
return getInstance(AuthorizationFactory.getInstance(conf));
}
/**
* Returns a OAuth Authenticated instance.
* consumer key and consumer Secret must be provided by twitter4j.properties, or system properties.
* Unlike {@link Twitter#setOAuthAccessToken(twitter4j.auth.AccessToken)}, this factory method potentially returns a cached instance.
*
* @param accessToken access token
* @return an instance
* @since Twitter4J 2.1.9
*/
public Twitter getInstance(AccessToken accessToken) {
String consumerKey = conf.getOAuthConsumerKey();
String consumerSecret = conf.getOAuthConsumerSecret();
if (null == consumerKey && null == consumerSecret) {
throw new IllegalStateException("Consumer key and Consumer secret not supplied.");
}
OAuthAuthorization oauth = new OAuthAuthorization(conf);
oauth.setOAuthAccessToken(accessToken);
return getInstance(oauth);
}
public Twitter getInstance(Authorization auth) {
try {
return TWITTER_CONSTRUCTOR.newInstance(conf, auth);
} catch (InstantiationException e) {
throw new AssertionError(e);
} catch (IllegalAccessException e) {
throw new AssertionError(e);
} catch (InvocationTargetException e) {
throw new AssertionError(e);
}
}
/**
* Returns default singleton Twitter instance.
*
* @return default singleton Twitter instance
* @since Twitter4J 2.2.4
*/
public static Twitter getSingleton() {
return SINGLETON;
}
public TwitterAds getAdsInstance() {
return new TwitterAdsImpl(conf, AuthorizationFactory.getInstance(conf));
}
}