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