spring.travel.site.services.LoginService.java Source code

Java tutorial

Introduction

Here is the source code for spring.travel.site.services.LoginService.java

Source

/**
 * Copyright 2014 Andy Godwin
 *
 * 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 spring.travel.site.services;

import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Service;
import spring.travel.site.model.LoginData;
import spring.travel.site.model.user.User;

import java.util.Optional;
import java.util.concurrent.CompletableFuture;

import static uk.co.sdev.async.Futures.none;
import static uk.co.sdev.async.Futures.withFallback;

@Service
public class LoginService {

    @Autowired
    private HttpClient client;

    @Autowired
    private ObjectMapper objectMapper;

    @Value("${login.service.url}")
    private String loginServiceUrl;

    public CompletableFuture<Optional<User>> login(LoginData loginData) {
        try {
            String body = objectMapper.writeValueAsString(loginData);
            return client.post(loginServiceUrl, body, new TypeReference<Optional<User>>() {
            }).handle(withFallback(Optional.<User>empty()));
        } catch (Exception e) {
            return none();
        }
    }
}