fr.arlefebvre.pronostics.controller.UEFATeamsController.java Source code

Java tutorial

Introduction

Here is the source code for fr.arlefebvre.pronostics.controller.UEFATeamsController.java

Source

/*
 * The MIT License (MIT)
 *
 * Copyright (c) 2016 Arthur Lefebvre
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

package fr.arlefebvre.pronostics.controller;

import fr.arlefebvre.pronostics.model.Team;
import org.jsoup.Jsoup;
import org.jsoup.select.Elements;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.client.RestTemplate;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;

import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.stream.Collectors;

/**
 * Created by alefebvre on 08/04/2016.
 */
@RestController
public class UEFATeamsController {

    private ArrayList<Team> pseudoCache;

    @RequestMapping("/uefa/teams")
    public List<Team> teams() {
        if (pseudoCache != null && !pseudoCache.isEmpty())
            return pseudoCache;
        ArrayList<Team> result = new ArrayList<Team>();
        String uri = "http://fr.fifa.com/fifa-world-ranking/ranking-table/men/uefa.html";

        //On se connecte au site et on charge le document html

        Document doc;
        try {
            doc = Jsoup.connect(uri).get();
            Elements elements = doc.getElementsByClass("table");
            for (Element element : elements) {
                Element tbody = element.getElementsByTag("tbody").first();
                for (Element child : tbody.children()) {
                    Element teamNameElement = child.getElementsByClass("tbl-teamname").first();
                    String name = teamNameElement.text();
                    String countryCode = child.getElementsByClass("tbl-countrycode").first().text();
                    String imgUrl = teamNameElement.select("img").first().absUrl("src");
                    Team team = new Team();
                    team.setName(name);
                    team.setCountryCode(countryCode);
                    team.setImgUrl(imgUrl);
                    team.setNationalTeam(true);
                    result.add(team);
                }
            }

            //String titre =  element.text();
        } catch (IOException e) {
            e.printStackTrace();
        }

        //        RestTemplate restTemplate = new RestTemplate();
        //        ResponseEntity<ChampionListDto> response = restTemplate.getForEntity(
        //                uri,
        //                ChampionListDto.class);
        //
        //        List<ChampionDto> champions = response.getBody().getChampions();
        //        return champions.stream().map(c -> getChampionById(c.getId()).getName()).collect(Collectors.toList());
        result.sort((t1, t2) -> t1.getName().compareTo(t2.getName()));
        if (pseudoCache == null)
            pseudoCache = result;
        return result;
    }
}