org.apache.camel.component.yammer.YammerEndpoint 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.yammer;
import org.apache.camel.Category;
import org.apache.camel.Consumer;
import org.apache.camel.Processor;
import org.apache.camel.Producer;
import org.apache.camel.spi.UriEndpoint;
import org.apache.camel.spi.UriParam;
import org.apache.camel.support.ScheduledPollEndpoint;
/**
* Interact with the Yammer enterprise social network.
*/
@UriEndpoint(firstVersion = "2.12.0", scheme = "yammer", title = "Yammer", syntax = "yammer:function",
category = { Category.SOCIAL, Category.CLOUD, Category.API })
public class YammerEndpoint extends ScheduledPollEndpoint {
@UriParam
private YammerConfiguration config;
public YammerEndpoint() {
}
public YammerEndpoint(String uri, YammerComponent component) {
super(uri, component);
}
public YammerEndpoint(String uri, YammerComponent yammerComponent, YammerConfiguration config) {
super(uri, yammerComponent);
this.setConfig(config);
}
@Override
public YammerComponent getComponent() {
return (YammerComponent) super.getComponent();
}
@Override
public Producer createProducer() throws Exception {
return new YammerMessageProducer(this);
}
@Override
public Consumer createConsumer(Processor processor) throws Exception {
switch (config.getFunction()) {
case MESSAGES:
case ALGO:
case FOLLOWING:
case MY_FEED:
case PRIVATE:
case SENT:
case RECEIVED:
YammerMessagePollingConsumer answer = new YammerMessagePollingConsumer(this, processor);
configureConsumer(answer);
return answer;
case USERS:
case CURRENT:
YammerUserPollingConsumer answer2 = new YammerUserPollingConsumer(this, processor);
configureConsumer(answer2);
return answer2;
default:
throw new Exception(String.format("%s is not a valid Yammer function type.", config.getFunction()));
}
}
public YammerConfiguration getConfig() {
return config;
}
public void setConfig(YammerConfiguration config) {
this.config = config;
}
@Override
protected String createEndpointUri() {
return String.format("yammer://%s?consumerKey=%s&consumerSecret=%s&accessToken=%s", config.getFunction(),
config.getConsumerKey(), config.getConsumerSecret(), config.getAccessToken());
}
}