org.apache.camel.component.twitter.timeline.TwitterTimelineEndpoint Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.camel.component.twitter.timeline;
import org.apache.camel.Category;
import org.apache.camel.Consumer;
import org.apache.camel.Processor;
import org.apache.camel.Producer;
import org.apache.camel.component.twitter.AbstractTwitterEndpoint;
import org.apache.camel.component.twitter.TwitterConfiguration;
import org.apache.camel.component.twitter.TwitterConstants;
import org.apache.camel.component.twitter.TwitterHelper;
import org.apache.camel.component.twitter.consumer.AbstractTwitterConsumerHandler;
import org.apache.camel.component.twitter.data.TimelineType;
import org.apache.camel.spi.Metadata;
import org.apache.camel.spi.UriEndpoint;
import org.apache.camel.spi.UriParam;
import org.apache.camel.spi.UriPath;
import static org.apache.camel.component.twitter.TwitterConstants.SCHEME_TIMELINE;
import static org.apache.camel.component.twitter.data.TimelineType.USER;
/**
* Send tweets and receive tweets from user's timeline.
*/
@UriEndpoint(firstVersion = "2.10.0", scheme = SCHEME_TIMELINE, title = "Twitter Timeline",
syntax = "twitter-timeline:timelineType",
category = { Category.SAAS, Category.SOCIAL }, headersClass = TwitterConstants.class)
public class TwitterTimelineEndpoint extends AbstractTwitterEndpoint {
@UriPath(description = "The timeline type to produce/consume.")
@Metadata(required = true)
private TimelineType timelineType;
@UriParam(description = "The username when using timelineType=user")
private String user;
@UriParam(description = "The list name when using timelineType=list")
private String list;
public TwitterTimelineEndpoint(String uri, String remaining, String user, String list, TwitterTimelineComponent component,
TwitterConfiguration properties) {
super(uri, component, properties);
if (remaining == null) {
throw new IllegalArgumentException(String.format("The timeline type must be specified for '%s'", uri));
}
this.timelineType = component.getCamelContext().getTypeConverter().convertTo(TimelineType.class, remaining);
this.user = user;
this.list = list;
}
public String getUser() {
return user;
}
public void setUser(String user) {
this.user = user;
}
public String getList() {
return list;
}
public void setList(String list) {
this.list = list;
}
@Override
public Producer createProducer() throws Exception {
if (timelineType != USER) {
throw new IllegalArgumentException(
"Cannot create any producer with uri " + getEndpointUri() +
". A producer type was not provided (or an incorrect pairing was used).");
}
return new UserProducer(this);
}
@Override
public Consumer createConsumer(Processor processor) throws Exception {
AbstractTwitterConsumerHandler handler = null;
switch (timelineType) {
case HOME:
handler = new HomeConsumerHandler(this);
break;
case MENTIONS:
handler = new MentionsConsumerHandler(this);
break;
case LIST:
handler = new UserListConsumerHandler(this, user, list);
break;
case USER:
if (user == null || user.isBlank()) {
throw new IllegalArgumentException("Fetch type set to USER TIMELINE but no user was set.");
} else {
handler = new UserConsumerHandler(this, user);
break;
}
default:
break;
}
if (handler != null) {
return TwitterHelper.createConsumer(processor, this, handler);
}
throw new IllegalArgumentException(
"Cannot create any consumer with uri " + getEndpointUri()
+ ". A consumer type was not provided (or an incorrect pairing was used).");
}
public TimelineType getTimelineType() {
return timelineType;
}
}