a18833e57de3d3ec09e8c8144c84826b3e6cff22
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / hub / model / Subscriber.java
1 /**
2  *     Copyright (c) 2018 Orange
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  */
16 package org.onap.nbi.apis.hub.model;
17
18 import org.slf4j.Logger;
19 import org.slf4j.LoggerFactory;
20 import org.springframework.data.annotation.Id;
21 import org.springframework.data.mongodb.core.mapping.Document;
22
23 import java.util.HashMap;
24 import java.util.Map;
25 import java.util.stream.Stream;
26
27
28 @Document
29 public class Subscriber {
30     private static final Logger logger = LoggerFactory.getLogger(Subscriber.class);
31
32     @Id
33     private String id;
34     private String callback;
35
36     private Map<String, String[]> query = new HashMap<>();
37
38     public String getId() {
39         return id;
40     }
41
42     public void setId(String id) {
43         this.id = id;
44     }
45
46     public String getCallback() {
47         return callback;
48     }
49
50     public void setCallback(String callback) {
51         this.callback = callback;
52     }
53
54     public Map<String, String[]> getQuery() {
55         return query;
56     }
57
58     public static Subscriber createFromRequest(Subscription request) {
59         Subscriber sub = new Subscriber();
60         sub.setCallback(request.getCallback());
61
62         Stream.of(request.getQuery().split("&"))
63                 .map(q -> q.split("="))
64                 .filter(q -> q.length == 2)
65                 .forEach(q -> sub.getQuery().put(q[0], q[1].split(",")));
66
67         return sub;
68     }
69 }