]> git.basschouten.com Git - openhab-addons.git/blob
f20c46873ef092a493dff9d87554b25a0e70de36
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2023 Contributors to the openHAB project
3  *
4  * See the NOTICE file(s) distributed with this work for additional
5  * information.
6  *
7  * This program and the accompanying materials are made available under the
8  * terms of the Eclipse Public License 2.0 which is available at
9  * http://www.eclipse.org/legal/epl-2.0
10  *
11  * SPDX-License-Identifier: EPL-2.0
12  */
13 package org.openhab.binding.energidataservice.internal.api;
14
15 import static org.openhab.binding.energidataservice.internal.EnergiDataServiceBindingConstants.*;
16
17 import java.time.Duration;
18 import java.time.LocalDate;
19 import java.util.Set;
20
21 import org.eclipse.jdt.annotation.NonNullByDefault;
22
23 /**
24  * Factory for creating a {@link DatahubTariffFilter} for a specific Grid Company GLN.
25  * 
26  * @author Jacob Laursen - Initial contribution
27  */
28 @NonNullByDefault
29 public class DatahubTariffFilterFactory {
30
31     private static final String GLN_CERIUS = "5790000705184";
32     private static final String GLN_DINEL = "5790000610099";
33     private static final String GLN_ELEKTRUS = "5790000836239";
34     private static final String GLN_ELINORD = "5790001095277";
35     private static final String GLN_ELNET_MIDT = "5790001100520";
36     private static final String GLN_ELNET_KONGERSLEV = "5790002502699";
37     private static final String GLN_FLOW_ELNET = "5790000392551";
38     private static final String GLN_HAMMEL_ELFORSYNING_NET = "5790001090166";
39     private static final String GLN_HURUP_ELVAERK_NET = "5790000610839";
40     private static final String GLN_IKAST_E1_NET = "5790000682102";
41     private static final String GLN_KONSTANT = "5790000704842";
42     private static final String GLN_L_NET = "5790001090111";
43     private static final String GLN_MIDTFYNS_ELFORSYNING = "5790001089023";
44     private static final String GLN_N1 = "5790001089030";
45     private static final String GLN_NETSELSKABET_ELVAERK = "5790000681075";
46     private static final String GLN_NKE_ELNET = "5790001088231";
47     private static final String GLN_NORD_ENERGI_NET = "5790000610877";
48     private static final String GLN_NORDVESTJYSK_ELFORSYNING_NOE_NET = "5790000395620";
49     private static final String GLN_RADIUS = "5790000705689";
50     private static final String GLN_RAH_NET = "5790000681327";
51     private static final String GLN_RAVDEX = "5790000836727";
52     private static final String GLN_SUNDS_NET = "5790001095444";
53     private static final String GLN_TARM_ELVAERK_NET = "5790000706419";
54     private static final String GLN_TREFOR_EL_NET = "5790000392261";
55     private static final String GLN_TREFOR_EL_NET_OEST = "5790000706686";
56     private static final String GLN_VEKSEL = "5790001088217";
57     private static final String GLN_VORES_ELNET = "5790000610976";
58     private static final String GLN_ZEANET = "5790001089375";
59
60     private static final String NOTE_NET_TARIFF = "Nettarif";
61     private static final String NOTE_NET_TARIFF_C = NOTE_NET_TARIFF + " C";
62     private static final String NOTE_NET_TARIFF_C_HOUR = NOTE_NET_TARIFF_C + " time";
63     private static final String NOTE_NET_TARIFF_C_FLEX = NOTE_NET_TARIFF_C + " Flex";
64     private static final String NOTE_NET_TARIFF_C_FLEX_HOUR = NOTE_NET_TARIFF_C_FLEX + " - time";
65     private static final String NOTE_SYSTEM_TARIFF = "Systemtarif";
66     private static final String NOTE_ELECTRICITY_TAX = "Elafgift";
67     private static final String NOTE_TRANSMISSION_NET_TARIFF = "Transmissions nettarif";
68
69     public static final LocalDate N1_CUTOFF_DATE = LocalDate.of(2023, 1, 1);
70     public static final LocalDate RADIUS_CUTOFF_DATE = LocalDate.of(2023, 1, 1);
71     public static final LocalDate KONSTANT_CUTOFF_DATE = LocalDate.of(2023, 2, 1);
72
73     public static DatahubTariffFilter getNetTariffByGLN(String globalLocationNumber) {
74         switch (globalLocationNumber) {
75             case GLN_CERIUS:
76                 return new DatahubTariffFilter(Set.of(ChargeTypeCode.of("30TR_C_ET")), Set.of(NOTE_NET_TARIFF_C_HOUR));
77             case GLN_DINEL:
78                 return new DatahubTariffFilter(Set.of(ChargeTypeCode.of("TCL>100_02")), Set.of(NOTE_NET_TARIFF_C_HOUR));
79             case GLN_ELEKTRUS:
80                 return new DatahubTariffFilter(Set.of(ChargeTypeCode.of("6000091")), Set.of(NOTE_NET_TARIFF_C_HOUR),
81                         DateQueryParameter.of(DateQueryParameterType.START_OF_DAY, Duration.ofDays(-1)));
82             case GLN_ELINORD:
83                 return new DatahubTariffFilter(Set.of(ChargeTypeCode.of("43300")),
84                         Set.of("Transportbetaling, eget net C"));
85             case GLN_ELNET_MIDT:
86                 return new DatahubTariffFilter(Set.of(ChargeTypeCode.of("T3002")), Set.of(NOTE_NET_TARIFF_C),
87                         DateQueryParameter.of(DateQueryParameterType.START_OF_DAY, Duration.ofDays(-1)));
88             case GLN_ELNET_KONGERSLEV:
89                 return new DatahubTariffFilter(Set.of(ChargeTypeCode.of("K_22100")), Set.of(NOTE_NET_TARIFF_C));
90             case GLN_FLOW_ELNET:
91                 return new DatahubTariffFilter(Set.of(ChargeTypeCode.of("FE2 NT-01")), Set.of(NOTE_NET_TARIFF_C_HOUR),
92                         DateQueryParameter.of(DateQueryParameterType.START_OF_DAY, Duration.ofDays(-1)));
93             case GLN_HAMMEL_ELFORSYNING_NET:
94                 return new DatahubTariffFilter(Set.of(ChargeTypeCode.of("50001")), Set.of("Overliggende net"),
95                         DateQueryParameter.of(DateQueryParameterType.START_OF_DAY, Duration.ofDays(-1)));
96             case GLN_HURUP_ELVAERK_NET:
97                 return new DatahubTariffFilter(Set.of(ChargeTypeCode.of("HEV-NT-01")), Set.of(NOTE_NET_TARIFF));
98             case GLN_IKAST_E1_NET:
99                 return new DatahubTariffFilter(Set.of(ChargeTypeCode.of("IEV-NT-01"), ChargeTypeCode.of("IEV-NT-11")),
100                         Set.of(NOTE_NET_TARIFF_C_HOUR, "Transport - Overordnet net"));
101             case GLN_KONSTANT:
102                 return new DatahubTariffFilter(Set.of(ChargeTypeCode.of("151-NT01T"), ChargeTypeCode.of("151-NRA04T")),
103                         Set.of(), DateQueryParameter.of(KONSTANT_CUTOFF_DATE));
104             case GLN_L_NET:
105                 return new DatahubTariffFilter(Set.of(ChargeTypeCode.of("4010")), Set.of(NOTE_NET_TARIFF_C_HOUR));
106             case GLN_MIDTFYNS_ELFORSYNING:
107                 return new DatahubTariffFilter(Set.of(ChargeTypeCode.of("TNT15000")), Set.of(NOTE_NET_TARIFF_C_FLEX),
108                         DateQueryParameter.of(DateQueryParameterType.START_OF_DAY, Duration.ofDays(-1)));
109             case GLN_N1:
110                 return new DatahubTariffFilter(Set.of(ChargeTypeCode.of("CD"), ChargeTypeCode.of("CD R")), Set.of(),
111                         DateQueryParameter.of(N1_CUTOFF_DATE));
112             case GLN_NETSELSKABET_ELVAERK:
113                 return new DatahubTariffFilter(Set.of(ChargeTypeCode.of("0NCFF")), Set.of(NOTE_NET_TARIFF_C + " Flex"),
114                         DateQueryParameter.of(DateQueryParameterType.START_OF_DAY, Duration.ofDays(-1)));
115             case GLN_NKE_ELNET:
116                 return new DatahubTariffFilter(Set.of(ChargeTypeCode.of("94TR_C_ET")), Set.of(NOTE_NET_TARIFF_C_HOUR),
117                         DateQueryParameter.of(DateQueryParameterType.START_OF_DAY, Duration.ofDays(-1)));
118             case GLN_NORD_ENERGI_NET:
119                 return new DatahubTariffFilter(Set.of(ChargeTypeCode.of("TAC")), Set.of(NOTE_NET_TARIFF_C),
120                         DateQueryParameter.of(DateQueryParameterType.START_OF_DAY, Duration.ofDays(-1)));
121             case GLN_NORDVESTJYSK_ELFORSYNING_NOE_NET:
122                 return new DatahubTariffFilter(Set.of(ChargeTypeCode.of("Net C")), Set.of(NOTE_NET_TARIFF_C));
123             case GLN_RADIUS:
124                 return new DatahubTariffFilter(Set.of(ChargeTypeCode.of("DT_C_01")), Set.of(NOTE_NET_TARIFF_C_HOUR),
125                         DateQueryParameter.of(RADIUS_CUTOFF_DATE));
126             case GLN_RAH_NET:
127                 return new DatahubTariffFilter(Set.of(ChargeTypeCode.of("RAH-C")), Set.of(NOTE_NET_TARIFF_C_HOUR),
128                         DateQueryParameter.of(DateQueryParameterType.START_OF_DAY, Duration.ofDays(-1)));
129             case GLN_RAVDEX:
130                 return new DatahubTariffFilter(Set.of(ChargeTypeCode.of("NT-C")), Set.of(NOTE_NET_TARIFF_C_HOUR),
131                         DateQueryParameter.of(DateQueryParameterType.START_OF_DAY, Duration.ofDays(-1)));
132             case GLN_SUNDS_NET:
133                 return new DatahubTariffFilter(Set.of(ChargeTypeCode.of("SEF-NT-05")),
134                         Set.of(NOTE_NET_TARIFF_C_FLEX_HOUR),
135                         DateQueryParameter.of(DateQueryParameterType.START_OF_DAY, Duration.ofDays(-1)));
136             case GLN_TARM_ELVAERK_NET:
137                 return new DatahubTariffFilter(Set.of(ChargeTypeCode.of("TEV-NT-01")), Set.of(NOTE_NET_TARIFF_C));
138             case GLN_TREFOR_EL_NET:
139                 return new DatahubTariffFilter(Set.of(ChargeTypeCode.of("C")), Set.of(NOTE_NET_TARIFF_C_HOUR),
140                         DateQueryParameter.of(DateQueryParameterType.START_OF_DAY, Duration.ofDays(-1)));
141             case GLN_TREFOR_EL_NET_OEST:
142                 return new DatahubTariffFilter(Set.of(ChargeTypeCode.of("46")), Set.of(NOTE_NET_TARIFF_C_HOUR),
143                         DateQueryParameter.of(DateQueryParameterType.START_OF_DAY, Duration.ofDays(-1)));
144             case GLN_VEKSEL:
145                 return new DatahubTariffFilter(Set.of(ChargeTypeCode.of("NT-10")),
146                         Set.of(NOTE_NET_TARIFF_C_HOUR + "  NT-10"));
147             case GLN_VORES_ELNET:
148                 return new DatahubTariffFilter(Set.of(ChargeTypeCode.of("TNT1009")), Set.of(NOTE_NET_TARIFF_C_HOUR),
149                         DateQueryParameter.of(DateQueryParameterType.START_OF_DAY, Duration.ofDays(-1)));
150             case GLN_ZEANET:
151                 return new DatahubTariffFilter(Set.of(ChargeTypeCode.of("43110")), Set.of(NOTE_NET_TARIFF_C_HOUR),
152                         DateQueryParameter.of(DateQueryParameterType.START_OF_DAY, Duration.ofDays(-1)));
153             default:
154                 return new DatahubTariffFilter(Set.of(), Set.of(NOTE_NET_TARIFF_C),
155                         DateQueryParameter.of(DateQueryParameterType.START_OF_YEAR));
156         }
157     }
158
159     public static DatahubTariffFilter getSystemTariff() {
160         return new DatahubTariffFilter(Set.of(), Set.of(NOTE_SYSTEM_TARIFF),
161                 DateQueryParameter.of(ENERGINET_CUTOFF_DATE));
162     }
163
164     public static DatahubTariffFilter getElectricityTax() {
165         return new DatahubTariffFilter(Set.of(), Set.of(NOTE_ELECTRICITY_TAX),
166                 DateQueryParameter.of(ENERGINET_CUTOFF_DATE));
167     }
168
169     public static DatahubTariffFilter getTransmissionNetTariff() {
170         return new DatahubTariffFilter(Set.of(), Set.of(NOTE_TRANSMISSION_NET_TARIFF),
171                 DateQueryParameter.of(ENERGINET_CUTOFF_DATE));
172     }
173 }