Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* 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.whatsapp.service;
import java.io.IOException;
import java.io.InputStream;
import java.math.BigInteger;
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpRequest.BodyPublisher;
import java.net.http.HttpRequest.BodyPublishers;
import java.net.http.HttpRequest.Builder;
import java.net.http.HttpResponse;
import java.util.HashMap;
import java.util.Map;
import java.util.Random;
import java.util.concurrent.CompletableFuture;
import java.util.function.Supplier;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule;
import org.apache.camel.AsyncCallback;
import org.apache.camel.Exchange;
import org.apache.camel.RuntimeCamelException;
import org.apache.camel.component.whatsapp.WhatsAppService;
import org.apache.camel.component.whatsapp.model.BaseMessage;
import org.apache.camel.component.whatsapp.model.ContactMessageRequest;
import org.apache.camel.component.whatsapp.model.InteractiveMessageRequest;
import org.apache.camel.component.whatsapp.model.LocationMessageRequest;
import org.apache.camel.component.whatsapp.model.MediaMessageRequest;
import org.apache.camel.component.whatsapp.model.MessageResponse;
import org.apache.camel.component.whatsapp.model.TemplateMessageRequest;
import org.apache.camel.component.whatsapp.model.TextMessageRequest;
import org.apache.camel.component.whatsapp.model.UploadMediaRequest;
import org.apache.camel.component.whatsapp.util.FileUploadStreamSupplier;
import org.apache.camel.util.ObjectHelper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Java11 Http Client implementation
*/
public class WhatsAppServiceRestAPIAdapter implements WhatsAppService {
private static final Logger LOG = LoggerFactory.getLogger(WhatsAppServiceRestAPIAdapter.class);
private static final String MESSAGES_ENDPOINT = "/messages";
private static final String MEDIA_ENDPOINT = "/media";
private final Map, WhatsAppServiceRestAPIAdapter.OutgoingMessageHandler>> handlers;
private final ObjectMapper mapper;
private final String baseUri;
private final String authorizationToken;
public WhatsAppServiceRestAPIAdapter(HttpClient client, String baseUri, String apiVersion, String phoneNumberId,
String authorizationToken) {
this.baseUri = baseUri + "/" + apiVersion + "/" + phoneNumberId;
this.mapper = new ObjectMapper().registerModule(new JavaTimeModule());
this.mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);
this.authorizationToken = authorizationToken;
final Map, WhatsAppServiceRestAPIAdapter.OutgoingMessageHandler>> m = new HashMap<>();
m.put(TextMessageRequest.class, new OutgoingPlainMessageHandler(client, mapper, this.baseUri + MESSAGES_ENDPOINT));
m.put(MediaMessageRequest.class, new OutgoingPlainMessageHandler(client, mapper, this.baseUri + MESSAGES_ENDPOINT));
m.put(LocationMessageRequest.class, new OutgoingPlainMessageHandler(client, mapper, this.baseUri + MESSAGES_ENDPOINT));
m.put(ContactMessageRequest.class, new OutgoingPlainMessageHandler(client, mapper, this.baseUri + MESSAGES_ENDPOINT));
m.put(InteractiveMessageRequest.class,
new OutgoingPlainMessageHandler(client, mapper, this.baseUri + MESSAGES_ENDPOINT));
m.put(UploadMediaRequest.class, new OutgoingMediaMessageHandler(client, mapper, this.baseUri + MEDIA_ENDPOINT));
m.put(TemplateMessageRequest.class, new OutgoingPlainMessageHandler(client, mapper, this.baseUri + MESSAGES_ENDPOINT));
this.handlers = m;
}
@Override
public void sendMessage(Exchange exchange, AsyncCallback callback, BaseMessage message) {
@SuppressWarnings("unchecked")
final WhatsAppServiceRestAPIAdapter.OutgoingMessageHandler handler
= (WhatsAppServiceRestAPIAdapter.OutgoingMessageHandler) handlers
.get(message.getClass());
ObjectHelper.notNull(handler, "handler");
try {
handler.sendMessage(exchange, callback, message, authorizationToken);
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
throw new RuntimeCamelException("Could not send message " + message, e);
} catch (IOException e) {
throw new RuntimeCamelException("Could not send message " + message, e);
}
}
static class OutgoingMediaMessageHandler extends WhatsAppServiceRestAPIAdapter.OutgoingMessageHandler {
public OutgoingMediaMessageHandler(HttpClient httpClient, ObjectMapper mapper, String uri,
Class extends MessageResponse> resultClass) {
super(httpClient, mapper, uri, null, resultClass);
}
public OutgoingMediaMessageHandler(HttpClient httpClient, ObjectMapper mapper, String uri) {
this(httpClient, mapper, uri, MessageResponse.class);
}
@Override
protected void addBody(Builder builder, UploadMediaRequest message) {
Map