aboutsummaryrefslogtreecommitdiff
path: root/central/src/main/java/moe/yuuta/dn42peering/admin/AdminUI.java
blob: 59dbe08b3bd0fbe308f3d268ded150319a352645 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package moe.yuuta.dn42peering.admin;

import com.wireguard.crypto.Key;
import com.wireguard.crypto.KeyFormatException;
import edazdarevic.commons.net.CIDRUtils;
import io.vertx.core.AsyncResult;
import io.vertx.core.Future;
import io.vertx.core.Handler;
import io.vertx.core.buffer.Buffer;
import io.vertx.core.json.JsonObject;
import io.vertx.ext.web.RoutingContext;
import io.vertx.ext.web.common.template.TemplateEngine;
import moe.yuuta.dn42peering.node.INodeService;
import moe.yuuta.dn42peering.node.Node;
import moe.yuuta.dn42peering.peer.Peer;
import moe.yuuta.dn42peering.peer.ProvisionStatus;
import moe.yuuta.dn42peering.portal.FormException;
import org.apache.commons.validator.routines.InetAddressValidator;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import java.io.IOException;
import java.net.Inet6Address;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;

import static moe.yuuta.dn42peering.portal.RenderingUtils.getGeneralRenderingHandler;

class AdminUI {
    public static void renderIndex(@Nonnull TemplateEngine engine,
                                   @Nonnull String asn,
                                   @Nonnull RoutingContext ctx) {
        final Map<String, Object> root = new HashMap<>();
        root.put("asn", asn);
        engine.render(root, "admin/index.ftlh", getGeneralRenderingHandler(ctx));
    }

    public static void renderSudo(@Nonnull TemplateEngine engine,
                                   @Nonnull String asn,
                                   @Nullable List<String> errors,
                                   @Nullable String targetASN,
                                   @Nonnull RoutingContext ctx) {
        final Map<String, Object> root = new HashMap<>();
        root.put("asn", asn);
        root.put("errors", errors);
        root.put("target_asn", targetASN);
        engine.render(root, "admin/sudo.ftlh", getGeneralRenderingHandler(ctx));
    }
}