Java tutorial
/******************************************************************************* * Cloud Foundry * Copyright (c) [2009-2016] Pivotal Software, Inc. All Rights Reserved. * * This product is licensed to you under the Apache License, Version 2.0 (the "License"). * You may not use this product except in compliance with the License. * * This product includes a number of subcomponents with * separate copyright notices and license terms. Your use of these * subcomponents is subject to the terms and conditions of the * subcomponent's license, as noted in the LICENSE file. *******************************************************************************/ package org.cloudfoundry.identity.uaa.home; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.apache.http.client.utils.URIBuilder; import org.cloudfoundry.identity.uaa.client.ClientMetadata; import org.cloudfoundry.identity.uaa.client.JdbcClientMetadataProvisioning; import org.cloudfoundry.identity.uaa.constants.OriginKeys; import org.cloudfoundry.identity.uaa.zone.IdentityZoneConfiguration; import org.cloudfoundry.identity.uaa.zone.IdentityZoneHolder; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.core.env.Environment; import org.springframework.security.core.AuthenticationException; import org.springframework.security.web.WebAttributes; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestMapping; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.net.MalformedURLException; import java.net.URI; import java.net.URISyntaxException; import java.net.URL; import java.security.Principal; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import static org.springframework.util.StringUtils.hasText; @Controller public class HomeController { private final Log logger = LogFactory.getLog(getClass()); protected final Environment environment; private Map<String, String> links = new HashMap<String, String>(); private String baseUrl; @Autowired private JdbcClientMetadataProvisioning clientMetadataProvisioning; public HomeController(Environment environment) { this.environment = environment; } /** * @param links the links to set */ public void setLinks(Map<String, String> links) { this.links = links; } public Map<String, String> getLinks() { return links; } /** * @param baseUrl the base uaa url */ public void setUaaBaseUrl(String baseUrl) { this.baseUrl = baseUrl; } protected String getUaaBaseUrl() { return baseUrl; } protected Map<String, ?> getLinksInfo() { Map<String, Object> model = new HashMap<String, Object>(); model.put(OriginKeys.UAA, getUaaBaseUrl()); model.put("login", getUaaBaseUrl().replaceAll(OriginKeys.UAA, "login")); model.putAll(getLinks()); return model; } protected void populateBuildAndLinkInfo(Model model) { Map<String, Object> attributes = new HashMap<String, Object>(); attributes.put("links", getLinksInfo()); model.addAllAttributes(attributes); model.addAttribute("links", getLinks()); } @RequestMapping(value = { "/", "/home" }) public String home(Model model, Principal principal) { IdentityZoneConfiguration config = IdentityZoneHolder.get().getConfig(); String homePage = config != null ? config.getLinks().getHomeRedirect() : null; if (homePage != null) { return "redirect:" + homePage; } model.addAttribute("principal", principal); List<TileData> tiles = new ArrayList<>(); List<ClientMetadata> clientMetadataList = clientMetadataProvisioning.retrieveAll(); clientMetadataList.stream().filter(clientMetadata -> clientMetadata.isShowOnHomePage()) .map(data -> new TileData(data.getClientId(), data.getAppLaunchUrl().toString(), "data:image/png;base64," + data.getAppIcon(), hasText(data.getClientName()) ? data.getClientName() : data.getClientId())) .forEach(tile -> tiles.add(tile)); model.addAttribute("tiles", tiles); boolean invitationsEnabled = "true".equalsIgnoreCase(environment.getProperty("login.invitationsEnabled")); if (invitationsEnabled) { model.addAttribute("invitationsLink", "/invitations/new"); } populateBuildAndLinkInfo(model); return "home"; } @RequestMapping("/error500") public String error500(Model model, HttpServletRequest request) { logger.error("Internal error", (Throwable) request.getAttribute("javax.servlet.error.exception")); populateBuildAndLinkInfo(model); return "error"; } @RequestMapping("/error404") public String error404(Model model) { populateBuildAndLinkInfo(model); return "error"; } @RequestMapping("/saml_error") public String error401(Model model, HttpServletRequest request) { AuthenticationException exception = (AuthenticationException) request.getSession() .getAttribute(WebAttributes.AUTHENTICATION_EXCEPTION); model.addAttribute("saml_error", exception.getMessage()); return "external_auth_error"; } @RequestMapping("/oauth_error") public String error_oauth() throws URISyntaxException { return "external_auth_error"; } private static class TileData { private String appLaunchUrl; private String appIcon; private String clientId; private String clientName; private TileData(String clientId, String appLaunchUrl, String appIcon, String clientName) { this.appLaunchUrl = appLaunchUrl; this.appIcon = appIcon; this.clientId = clientId; this.clientName = clientName; } public String getClientId() { return clientId; } public String getAppIcon() { return appIcon; } public String getAppLaunchUrl() { return appLaunchUrl; } public String getClientName() { return clientName; } } }