Java tutorial
/* * Copyright 2016 Lime - HighTech Solutions s.r.o. * * Licensed 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 io.getlime.security.powerauth.app.server.service.behavior; import io.getlime.security.powerauth.*; import io.getlime.security.powerauth.app.server.repository.CallbackUrlRepository; import io.getlime.security.powerauth.app.server.repository.model.entity.CallbackUrlEntity; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpEntity; import org.springframework.stereotype.Component; import org.springframework.web.client.AsyncRestTemplate; import java.util.HashMap; import java.util.Map; import java.util.UUID; /** * Class that manages the service logic related to callback URL management. * * @author Petr Dvorak, petr@lime-company.eu */ @Component public class CallbackUrlBehavior { private CallbackUrlRepository callbackUrlRepository; @Autowired public CallbackUrlBehavior(CallbackUrlRepository callbackUrlRepository) { this.callbackUrlRepository = callbackUrlRepository; } /** * Creates a new callback URL record for application with given ID. * @param request Instance specifying parameters of the callback URL. * @return Newly created callback URL record. */ public CreateCallbackUrlResponse createCallbackUrl(CreateCallbackUrlRequest request) { CallbackUrlEntity entity = new CallbackUrlEntity(); entity.setId(UUID.randomUUID().toString()); entity.setApplicationId(request.getApplicationId()); entity.setName(request.getName()); // TODO: Check the URL format entity.setCallbackUrl(request.getCallbackUrl()); callbackUrlRepository.save(entity); CreateCallbackUrlResponse response = new CreateCallbackUrlResponse(); response.setId(entity.getId()); response.setApplicationId(entity.getApplicationId()); response.setName(entity.getName()); response.setCallbackUrl(entity.getCallbackUrl()); return response; } /** * Get the list of all current callback URLs for given application. * @param request Request with application ID to fetch the callback URL agains. * @return List of all current callback URLs. */ public GetCallbackUrlListResponse getCallbackUrlList(GetCallbackUrlListRequest request) { final Iterable<CallbackUrlEntity> callbackUrlEntities = callbackUrlRepository .findByApplicationIdOrderByName(request.getApplicationId()); GetCallbackUrlListResponse response = new GetCallbackUrlListResponse(); for (CallbackUrlEntity callbackUrl : callbackUrlEntities) { GetCallbackUrlListResponse.CallbackUrlList item = new GetCallbackUrlListResponse.CallbackUrlList(); item.setId(callbackUrl.getId()); item.setApplicationId(callbackUrl.getApplicationId()); item.setName(callbackUrl.getName()); item.setCallbackUrl(callbackUrl.getCallbackUrl()); response.getCallbackUrlList().add(item); } return response; } /** * Remove callback URL with given ID. * @param request Request specifying the callback URL to be removed. * @return Information about removal status. */ public RemoveCallbackUrlResponse removeIntegration(RemoveCallbackUrlRequest request) { RemoveCallbackUrlResponse response = new RemoveCallbackUrlResponse(); response.setId(request.getId()); if (callbackUrlRepository.findOne(request.getId()) != null) { response.setRemoved(true); } else { response.setRemoved(false); } callbackUrlRepository.delete(request.getId()); return response; } /** * Tries to asynchronously notify all callbacks that are registered for given application. * @param applicationId Application for the callbacks to be used. * @param activationId Activation ID to be notified about. */ public void notifyCallbackListeners(Long applicationId, String activationId) { final Iterable<CallbackUrlEntity> callbackUrlEntities = callbackUrlRepository .findByApplicationIdOrderByName(applicationId); Map<String, String> callbackData = new HashMap<>(); callbackData.put("activationId", activationId); AsyncRestTemplate template = new AsyncRestTemplate(); for (CallbackUrlEntity callbackUrl : callbackUrlEntities) { HttpEntity<Map<String, String>> request = new HttpEntity<>(callbackData); template.postForEntity(callbackUrl.getCallbackUrl(), request, Map.class, new HashMap<>()); } } }