blob: 7f0af3a5fc4592af2a2787ee5f2fa3a2923c9bff [file] [log] [blame]
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -08001/*
2 * Copyright 2015 Open Networking Laboratory
3 *
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 =
53 "<div class=\"nav-hdr\">%s</div>\n";
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080054 private static final String NAV_FORMAT =
Simon Hunt20e16792015-04-24 14:29:39 -070055 "<a ng-click=\"navCtrl.hideNav()\" href=\"#/%s\">%s %s</a>\n";
56
57 private static final String BLANK_GLYPH = "unknown";
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080058
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080059 @GET
60 @Produces(MediaType.TEXT_HTML)
61 public Response getNavigation() throws IOException {
62 UiExtensionService service = get(UiExtensionService.class);
Simon Hunt38c2b6a2015-04-24 13:02:05 -070063 InputStream navTemplate =
64 getClass().getClassLoader().getResourceAsStream(NAV_HTML);
65 String html = new String(toByteArray(navTemplate));
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080066
Simon Hunt38c2b6a2015-04-24 13:02:05 -070067 int p1s = split(html, 0, INJECT_VIEW_ITEMS_START);
68 int p1e = split(html, 0, INJECT_VIEW_ITEMS_END);
69 int p2s = split(html, p1e, null);
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080070
71 StreamEnumeration streams =
Simon Hunt38c2b6a2015-04-24 13:02:05 -070072 new StreamEnumeration(of(stream(html, 0, p1s),
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080073 includeNavItems(service),
Simon Hunt38c2b6a2015-04-24 13:02:05 -070074 stream(html, p1e, p2s)));
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080075
76 return Response.ok(new SequenceInputStream(streams)).build();
77 }
78
Simon Hunt38c2b6a2015-04-24 13:02:05 -070079 // Produces an input stream of nav item injections from all extensions.
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080080 private InputStream includeNavItems(UiExtensionService service) {
Simon Hunt38c2b6a2015-04-24 13:02:05 -070081 List<UiExtension> extensions = service.getExtensions();
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080082 StringBuilder sb = new StringBuilder("\n");
Simon Hunt38c2b6a2015-04-24 13:02:05 -070083
84 for (UiView.Category cat : UiView.Category.values()) {
85 if (cat == UiView.Category.HIDDEN) {
86 continue;
87 }
88
89 List<UiView> catViews = getViewsForCat(extensions, cat);
90 if (!catViews.isEmpty()) {
91 addCatHeader(sb, cat);
92 addCatItems(sb, catViews);
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080093 }
94 }
Simon Hunt38c2b6a2015-04-24 13:02:05 -070095
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080096 return new ByteArrayInputStream(sb.toString().getBytes());
97 }
Simon Hunt38c2b6a2015-04-24 13:02:05 -070098
99 private List<UiView> getViewsForCat(List<UiExtension> extensions,
100 UiView.Category cat) {
101 List<UiView> views = new ArrayList<>();
102 for (UiExtension extension : extensions) {
103 views.addAll(extension.views().stream().filter(
104 view -> cat.equals(view.category())
105 ).collect(Collectors.toList()));
106 }
107 return views;
108 }
109
110 private void addCatHeader(StringBuilder sb, UiView.Category cat) {
111 sb.append(String.format(HDR_FORMAT, cat.label()));
112 }
113
114 private void addCatItems(StringBuilder sb, List<UiView> catViews) {
115 for (UiView view : catViews) {
Simon Hunt20e16792015-04-24 14:29:39 -0700116 sb.append(String.format(NAV_FORMAT, view.id(), icon(view), view.label()));
Simon Hunt38c2b6a2015-04-24 13:02:05 -0700117 }
118 }
Simon Hunt20e16792015-04-24 14:29:39 -0700119
120 private String icon(UiView view) {
121 String gid = view.iconId() == null ? BLANK_GLYPH : view.iconId();
122 return "<div icon icon-id=\"" + gid + "\"></div>";
123 }
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -0800124}