org.apache.camel.component.jira.consumer.AbstractJiraConsumer Maven / Gradle / Ivy
The newest version!
/*
* 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.jira.consumer;
import java.util.LinkedHashSet;
import java.util.LinkedList;
import java.util.Queue;
import java.util.Set;
import com.atlassian.jira.rest.client.api.JiraRestClient;
import com.atlassian.jira.rest.client.api.RestClientException;
import com.atlassian.jira.rest.client.api.SearchRestClient;
import com.atlassian.jira.rest.client.api.domain.Issue;
import com.atlassian.jira.rest.client.api.domain.SearchResult;
import org.apache.camel.Exchange;
import org.apache.camel.ExchangePropertyKey;
import org.apache.camel.Processor;
import org.apache.camel.component.jira.JiraEndpoint;
import org.apache.camel.support.EmptyAsyncCallback;
import org.apache.camel.support.ScheduledBatchPollingConsumer;
import org.apache.camel.util.ObjectHelper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public abstract class AbstractJiraConsumer extends ScheduledBatchPollingConsumer {
protected static final int SEARCH_START_AT = 0;
protected static final int SEARCH_MAX_PER_QUERY = 50;
private static final Logger LOG = LoggerFactory.getLogger(AbstractJiraConsumer.class);
private final JiraEndpoint endpoint;
protected AbstractJiraConsumer(JiraEndpoint endpoint, Processor processor) {
super(endpoint, processor);
this.endpoint = endpoint;
setDelay(endpoint.getDelay());
}
@Override
public JiraEndpoint getEndpoint() {
return (JiraEndpoint) super.getEndpoint();
}
protected abstract int doPoll() throws Exception;
@Override
public int poll() throws Exception {
try {
return doPoll();
} catch (Exception e) {
RestClientException rcr = ObjectHelper.getException(RestClientException.class, e);
if (rcr != null) {
if (rcr.getStatusCode().isPresent()) {
int code = rcr.getStatusCode().get();
// if auth or server error then cause a re-connect
if (code >= 400) {
LOG.warn("RestClientException error code: {} caused by {}. Will re-connect on next poll.", code,
rcr.getMessage());
getEndpoint().disconnect();
}
}
}
throw e;
}
}
@Override
public int processBatch(Queue
© 2015 - 2025 Weber Informatics LLC | Privacy Policy