blob: f13488653920102e60d793e674b42feb7df458a7 [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
18import org.onosproject.ui.UiExtension;
19import org.onosproject.ui.UiExtensionService;
20import org.onosproject.ui.UiView;
21
22import javax.ws.rs.GET;
23import javax.ws.rs.Path;
24import javax.ws.rs.Produces;
25import javax.ws.rs.core.MediaType;
26import javax.ws.rs.core.Response;
27import java.io.ByteArrayInputStream;
28import java.io.IOException;
29import java.io.InputStream;
30import java.io.SequenceInputStream;
Simon Hunt38c2b6a2015-04-24 13:02:05 -070031import java.util.ArrayList;
32import java.util.List;
33import java.util.stream.Collectors;
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080034
35import static com.google.common.collect.ImmutableList.of;
36import static com.google.common.io.ByteStreams.toByteArray;
37
38/**
Thomas Vachuskae95da772015-02-23 15:50:11 -080039 * Resource for serving the dynamically composed nav.html.
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080040 */
Thomas Vachuska529db0a2015-02-23 16:42:14 -080041@Path("/")
Thomas Vachuskae95da772015-02-23 15:50:11 -080042public class MainNavResource extends AbstractInjectionResource {
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080043
Thomas Vachuskae95da772015-02-23 15:50:11 -080044 private static final String NAV_HTML = "nav.html";
Thomas Vachuskaa0509892015-02-21 22:18:41 -080045
Simon Hunt38c2b6a2015-04-24 13:02:05 -070046 private static final String INJECT_VIEW_ITEMS_START =
47 "<!-- {INJECTED-VIEW-NAV-START} -->";
48 private static final String INJECT_VIEW_ITEMS_END =
49 "<!-- {INJECTED-VIEW-NAV-END} -->";
Thomas Vachuskaa0509892015-02-21 22:18:41 -080050
Simon Hunt38c2b6a2015-04-24 13:02:05 -070051 private static final String HDR_FORMAT =
52 "<div class=\"nav-hdr\">%s</div>\n";
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080053 private static final String NAV_FORMAT =
Simon Hunt20e16792015-04-24 14:29:39 -070054 "<a ng-click=\"navCtrl.hideNav()\" href=\"#/%s\">%s %s</a>\n";
55
56 private static final String BLANK_GLYPH = "unknown";
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080057
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080058 @GET
59 @Produces(MediaType.TEXT_HTML)
60 public Response getNavigation() throws IOException {
61 UiExtensionService service = get(UiExtensionService.class);
Simon Hunt38c2b6a2015-04-24 13:02:05 -070062 InputStream navTemplate =
63 getClass().getClassLoader().getResourceAsStream(NAV_HTML);
64 String html = new String(toByteArray(navTemplate));
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080065
Simon Hunt38c2b6a2015-04-24 13:02:05 -070066 int p1s = split(html, 0, INJECT_VIEW_ITEMS_START);
67 int p1e = split(html, 0, INJECT_VIEW_ITEMS_END);
68 int p2s = split(html, p1e, null);
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080069
70 StreamEnumeration streams =
Simon Hunt38c2b6a2015-04-24 13:02:05 -070071 new StreamEnumeration(of(stream(html, 0, p1s),
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080072 includeNavItems(service),
Simon Hunt38c2b6a2015-04-24 13:02:05 -070073 stream(html, p1e, p2s)));
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080074
75 return Response.ok(new SequenceInputStream(streams)).build();
76 }
77
Simon Hunt38c2b6a2015-04-24 13:02:05 -070078 // Produces an input stream of nav item injections from all extensions.
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080079 private InputStream includeNavItems(UiExtensionService service) {
Simon Hunt38c2b6a2015-04-24 13:02:05 -070080 List<UiExtension> extensions = service.getExtensions();
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080081 StringBuilder sb = new StringBuilder("\n");
Simon Hunt38c2b6a2015-04-24 13:02:05 -070082
83 for (UiView.Category cat : UiView.Category.values()) {
84 if (cat == UiView.Category.HIDDEN) {
85 continue;
86 }
87
88 List<UiView> catViews = getViewsForCat(extensions, cat);
89 if (!catViews.isEmpty()) {
90 addCatHeader(sb, cat);
91 addCatItems(sb, catViews);
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080092 }
93 }
Simon Hunt38c2b6a2015-04-24 13:02:05 -070094
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -080095 return new ByteArrayInputStream(sb.toString().getBytes());
96 }
Simon Hunt38c2b6a2015-04-24 13:02:05 -070097
98 private List<UiView> getViewsForCat(List<UiExtension> extensions,
99 UiView.Category cat) {
100 List<UiView> views = new ArrayList<>();
101 for (UiExtension extension : extensions) {
102 views.addAll(extension.views().stream().filter(
103 view -> cat.equals(view.category())
104 ).collect(Collectors.toList()));
105 }
106 return views;
107 }
108
109 private void addCatHeader(StringBuilder sb, UiView.Category cat) {
110 sb.append(String.format(HDR_FORMAT, cat.label()));
111 }
112
113 private void addCatItems(StringBuilder sb, List<UiView> catViews) {
114 for (UiView view : catViews) {
Simon Hunt20e16792015-04-24 14:29:39 -0700115 sb.append(String.format(NAV_FORMAT, view.id(), icon(view), view.label()));
Simon Hunt38c2b6a2015-04-24 13:02:05 -0700116 }
117 }
Simon Hunt20e16792015-04-24 14:29:39 -0700118
119 private String icon(UiView view) {
120 String gid = view.iconId() == null ? BLANK_GLYPH : view.iconId();
121 return "<div icon icon-id=\"" + gid + "\"></div>";
122 }
Thomas Vachuskafe8c98a2015-02-04 01:24:32 -0800123}