blob: a8fed5f7e0ac3fa812898d2114f821c049a4a5c6 [file] [log] [blame]
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -08003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.ui.impl;
17
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070018import org.onosproject.rest.AbstractInjectionResource;
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080019import org.onosproject.ui.UiExtension;
20import org.onosproject.ui.UiExtensionService;
21import org.onosproject.ui.UiView;
22
23import javax.ws.rs.GET;
24import javax.ws.rs.Path;
25import javax.ws.rs.Produces;
26import javax.ws.rs.core.MediaType;
27import javax.ws.rs.core.Response;
28import java.io.ByteArrayInputStream;
29import java.io.IOException;
30import java.io.InputStream;
31import java.io.SequenceInputStream;
Simon Hunt38c2b6a2015-04-24 13:02:05 -070032import java.util.ArrayList;
33import java.util.List;
34import java.util.stream.Collectors;
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080035
36import static com.google.common.collect.ImmutableList.of;
37import static com.google.common.io.ByteStreams.toByteArray;
38
39/**
Thomas Vachuskae95da772015-02-23 15:50:11 -080040 * Resource for serving the dynamically composed nav.html.
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080041 */
Thomas Vachuska529db0a2015-02-23 16:42:14 -080042@Path("/")
Thomas Vachuskae95da772015-02-23 15:50:11 -080043public class MainNavResource extends AbstractInjectionResource {
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080044
Thomas Vachuskae95da772015-02-23 15:50:11 -080045 private static final String NAV_HTML = "nav.html";
Thomas Vachuskaa0509892015-02-21 22:18:41 -080046
Simon Hunt38c2b6a2015-04-24 13:02:05 -070047 private static final String INJECT_VIEW_ITEMS_START =
48 "<!-- {INJECTED-VIEW-NAV-START} -->";
49 private static final String INJECT_VIEW_ITEMS_END =
50 "<!-- {INJECTED-VIEW-NAV-END} -->";
Thomas Vachuskaa0509892015-02-21 22:18:41 -080051
Simon Hunt38c2b6a2015-04-24 13:02:05 -070052 private static final String HDR_FORMAT =
Phil Huang111bc592016-01-15 01:55:00 +080053 "<div class=\"nav-hdr\">%s</div>%n";
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080054 private static final String NAV_FORMAT =
Phil Huang111bc592016-01-15 01:55:00 +080055 "<a ng-click=\"navCtrl.hideNav()\" href=\"#/%s\">%s %s</a>%n";
Simon Huntfb35b832016-05-26 11:43:00 -070056 private static final String ICON_FORMAT =
57 "<div icon icon-id=\"%s\"></div>";
Simon Hunt20e16792015-04-24 14:29:39 -070058
59 private static final String BLANK_GLYPH = "unknown";
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080060
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080061 @GET
62 @Produces(MediaType.TEXT_HTML)
63 public Response getNavigation() throws IOException {
64 UiExtensionService service = get(UiExtensionService.class);
Simon Hunt38c2b6a2015-04-24 13:02:05 -070065 InputStream navTemplate =
66 getClass().getClassLoader().getResourceAsStream(NAV_HTML);
67 String html = new String(toByteArray(navTemplate));
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080068
Simon Hunt38c2b6a2015-04-24 13:02:05 -070069 int p1s = split(html, 0, INJECT_VIEW_ITEMS_START);
70 int p1e = split(html, 0, INJECT_VIEW_ITEMS_END);
71 int p2s = split(html, p1e, null);
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080072
73 StreamEnumeration streams =
Simon Hunt38c2b6a2015-04-24 13:02:05 -070074 new StreamEnumeration(of(stream(html, 0, p1s),
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080075 includeNavItems(service),
Simon Hunt38c2b6a2015-04-24 13:02:05 -070076 stream(html, p1e, p2s)));
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080077
78 return Response.ok(new SequenceInputStream(streams)).build();
79 }
80
Simon Hunt38c2b6a2015-04-24 13:02:05 -070081 // Produces an input stream of nav item injections from all extensions.
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080082 private InputStream includeNavItems(UiExtensionService service) {
Simon Hunt38c2b6a2015-04-24 13:02:05 -070083 List<UiExtension> extensions = service.getExtensions();
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080084 StringBuilder sb = new StringBuilder("\n");
Simon Hunt38c2b6a2015-04-24 13:02:05 -070085
86 for (UiView.Category cat : UiView.Category.values()) {
87 if (cat == UiView.Category.HIDDEN) {
88 continue;
89 }
90
91 List<UiView> catViews = getViewsForCat(extensions, cat);
92 if (!catViews.isEmpty()) {
93 addCatHeader(sb, cat);
94 addCatItems(sb, catViews);
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080095 }
96 }
Simon Hunt38c2b6a2015-04-24 13:02:05 -070097
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080098 return new ByteArrayInputStream(sb.toString().getBytes());
99 }
Simon Hunt38c2b6a2015-04-24 13:02:05 -0700100
101 private List<UiView> getViewsForCat(List<UiExtension> extensions,
102 UiView.Category cat) {
103 List<UiView> views = new ArrayList<>();
104 for (UiExtension extension : extensions) {
105 views.addAll(extension.views().stream().filter(
106 view -> cat.equals(view.category())
107 ).collect(Collectors.toList()));
108 }
109 return views;
110 }
111
112 private void addCatHeader(StringBuilder sb, UiView.Category cat) {
113 sb.append(String.format(HDR_FORMAT, cat.label()));
114 }
115
116 private void addCatItems(StringBuilder sb, List<UiView> catViews) {
117 for (UiView view : catViews) {
Simon Hunt20e16792015-04-24 14:29:39 -0700118 sb.append(String.format(NAV_FORMAT, view.id(), icon(view), view.label()));
Simon Hunt38c2b6a2015-04-24 13:02:05 -0700119 }
120 }
Simon Hunt20e16792015-04-24 14:29:39 -0700121
122 private String icon(UiView view) {
123 String gid = view.iconId() == null ? BLANK_GLYPH : view.iconId();
Simon Huntfb35b832016-05-26 11:43:00 -0700124 return String.format(ICON_FORMAT, gid);
Simon Hunt20e16792015-04-24 14:29:39 -0700125 }
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -0800126}