1 |
|
package org.europa.together.application; |
2 |
|
|
3 |
|
import com.google.zxing.BarcodeFormat; |
4 |
|
import com.google.zxing.BinaryBitmap; |
5 |
|
import com.google.zxing.EncodeHintType; |
6 |
|
import com.google.zxing.MultiFormatReader; |
7 |
|
import com.google.zxing.MultiFormatWriter; |
8 |
|
import com.google.zxing.client.j2se.BufferedImageLuminanceSource; |
9 |
|
import com.google.zxing.client.j2se.MatrixToImageWriter; |
10 |
|
import com.google.zxing.common.BitMatrix; |
11 |
|
import com.google.zxing.common.HybridBinarizer; |
12 |
|
import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel; |
13 |
|
import java.io.File; |
14 |
|
import java.io.FileInputStream; |
15 |
|
import java.nio.file.Paths; |
16 |
|
import java.time.LocalDateTime; |
17 |
|
import java.time.ZonedDateTime; |
18 |
|
import java.time.format.DateTimeFormatter; |
19 |
|
import java.util.HashMap; |
20 |
|
import java.util.Map; |
21 |
|
import javax.imageio.ImageIO; |
22 |
|
import org.europa.together.business.Logger; |
23 |
|
import org.europa.together.business.QrCodeGenerator; |
24 |
|
import org.europa.together.domain.LogLevel; |
25 |
|
import org.springframework.stereotype.Repository; |
26 |
|
|
27 |
|
|
28 |
|
|
29 |
|
|
30 |
|
@Repository |
|
|
| 100% |
Uncovered Elements: 0 (41) |
Complexity: 12 |
Complexity Density: 0.39 |
|
31 |
|
public class ZxingGenerator implements QrCodeGenerator { |
32 |
|
|
33 |
|
private static final long serialVersionUID = 7L; |
34 |
|
private static final Logger LOGGER = new LogbackLogger(ZxingGenerator.class); |
35 |
|
|
36 |
|
private final String charset; |
37 |
|
private int dimensionHeight; |
38 |
|
private int dimensionWidth; |
39 |
|
private String fileOutputPath; |
40 |
|
private final Map<EncodeHintType, Object> errorMap = new HashMap<>(); |
41 |
|
|
42 |
|
|
43 |
|
|
44 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (3) |
Complexity: 1 |
Complexity Density: 0.33 |
|
45 |
9 |
public ZxingGenerator() {... |
46 |
9 |
errorMap.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.L); |
47 |
9 |
charset = "UTF-8"; |
48 |
9 |
LOGGER.log("instance class", LogLevel.INFO); |
49 |
|
} |
50 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (3) |
Complexity: 1 |
Complexity Density: 0.33 |
|
51 |
6 |
@Override... |
52 |
|
public void setup(final String fileOutputPath, final int dimensions) { |
53 |
6 |
this.dimensionHeight = dimensions; |
54 |
6 |
this.dimensionWidth = dimensions; |
55 |
6 |
this.fileOutputPath = fileOutputPath; |
56 |
|
} |
57 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (9) |
Complexity: 3 |
Complexity Density: 0.43 |
|
58 |
4 |
@Override... |
59 |
|
public String generateDataForvCard(final Map<String, String> contact) { |
60 |
4 |
String data = null; |
61 |
4 |
if (contact == null || contact.isEmpty()) { |
62 |
3 |
LOGGER.log("Contact information are empty.", LogLevel.WARN); |
63 |
|
} else { |
64 |
1 |
LocalDateTime now = LocalDateTime.now(); |
65 |
1 |
String dateStr |
66 |
|
= now.format(DateTimeFormatter.ofPattern("yyyy-mm-dd hh:mm:ss")); |
67 |
1 |
data = "BEGIN:VCARD\n VERSION:3.0\n PROFILE:VCARD\n" |
68 |
|
+ "N:" + contact.get("name") + ";" |
69 |
|
+ contact.get("surname") + ";;" + contact.get("gender") + ";\n" |
70 |
|
+ "FN:" + contact.get("surname") + " " + contact.get("name") + "\n" |
71 |
|
+ "ORG:" + contact.get("organization") + "\n" |
72 |
|
+ "TITLE:" + contact.get("title") + "\n" |
73 |
|
+ "TEL;TYPE=WORK,CELL:" + contact.get("work-mobile") + "\n" |
74 |
|
+ "TEL;TYPE=WORK,VOICE:" + contact.get("work-phone") + "\n" |
75 |
|
+ "TEL;TYPE=HOME,CELL:" + contact.get("home-mobile") + "\n" |
76 |
|
+ "TEL;TYPE=HOME,VOICE:" + contact.get("home-phone") + "\n" |
77 |
|
+ "ADR;TYPE=WORK,PREF:;;" + contact.get("home-street") + ";" |
78 |
|
+ contact.get("home-city") + ";" + contact.get("home-state") + ";" |
79 |
|
+ contact.get("home-zipcode") + ";" + contact.get("home-country") + "\n" |
80 |
|
+ "LABEL;TYPE=WORK,PREF:" + contact.get("work-street") + "\\n" |
81 |
|
+ contact.get("work-city") + "\\, " + contact.get("work-state") + " " |
82 |
|
+ contact.get("work-zipcode") + "\\n " + contact.get("work-country") + "\n" |
83 |
|
+ "ADR;TYPE=WORK,PREF:;;" + contact.get("work-street") + ";" |
84 |
|
+ contact.get("work-city") + ";" + contact.get("work-state") + ";" |
85 |
|
+ contact.get("work-zipcode") + ";" + contact.get("work-country") + "\n" |
86 |
|
+ "ADR;TYPE=HOME:;;" + contact.get("home-street") + ";" |
87 |
|
+ contact.get("home-city") + ";" + contact.get("home-state") + ";" |
88 |
|
+ contact.get("home-zipcode") + ";" + contact.get("home-country") + "\n" |
89 |
|
+ "LABEL;TYPE=HOME:" + contact.get("home-street") + "\\n" |
90 |
|
+ contact.get("home-city") + "\\, " + contact.get("home-state") + " " |
91 |
|
+ contact.get("home-zipcode") + "\\n " + contact.get("home-country") + "\n" |
92 |
|
+ "URL:" + contact.get("homepage") + "\n" |
93 |
|
+ "EMAIL:" + contact.get("e-mail") + "\n" |
94 |
|
+ "REV:" + dateStr + "\nEND:VCARD"; |
95 |
|
} |
96 |
4 |
return data; |
97 |
|
} |
98 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
99 |
1 |
@Override... |
100 |
|
public String generateDataForCalendarEvent(final String event, |
101 |
|
final ZonedDateTime start, final ZonedDateTime end) { |
102 |
1 |
String data = "BEGIN:VEVENT\n" |
103 |
|
+ "SUMMARY:" + event |
104 |
|
+ "\n DTSTART:" + start.format(DateTimeFormatter.ofPattern("yyyy-mm-dd hh:mm:ss")) |
105 |
|
+ "\n DTEND: " + end.format(DateTimeFormatter.ofPattern("yyyy-mm-dd hh:mm:ss")) |
106 |
|
+ "\n END:VEVENT"; |
107 |
1 |
return data; |
108 |
|
} |
109 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
110 |
1 |
@Override... |
111 |
|
public String generateDataForUrl(final String url) { |
112 |
1 |
String data = url.replace("//", ""); |
113 |
1 |
return "URLTO:" + data; |
114 |
|
} |
115 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
116 |
1 |
@Override... |
117 |
|
public String generateDataForGeoLocation(final String latitude, final String longitude) { |
118 |
1 |
return "geo:" + latitude + "," + longitude + ",100"; |
119 |
|
} |
120 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (7) |
Complexity: 2 |
Complexity Density: 0.29 |
|
121 |
6 |
@Override... |
122 |
|
public boolean encode(final String data) { |
123 |
6 |
boolean success = false; |
124 |
6 |
try { |
125 |
6 |
BitMatrix matrix = new MultiFormatWriter().encode( |
126 |
|
new String(data.getBytes(charset), charset), |
127 |
|
BarcodeFormat.QR_CODE, |
128 |
|
dimensionWidth, |
129 |
|
dimensionHeight, |
130 |
|
errorMap); |
131 |
5 |
MatrixToImageWriter.writeToPath(matrix, "png", Paths.get(fileOutputPath)); |
132 |
5 |
success = true; |
133 |
|
} catch (Exception ex) { |
134 |
1 |
LOGGER.catchException(ex); |
135 |
|
} |
136 |
6 |
return success; |
137 |
|
} |
138 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (6) |
Complexity: 2 |
Complexity Density: 0.33 |
|
139 |
2 |
@Override... |
140 |
|
public String decode(final File qrCode) { |
141 |
2 |
String decode = null; |
142 |
2 |
try { |
143 |
2 |
BinaryBitmap binaryBitmap |
144 |
|
= new BinaryBitmap( |
145 |
|
new HybridBinarizer( |
146 |
|
new BufferedImageLuminanceSource( |
147 |
|
ImageIO.read(new FileInputStream(qrCode))))); |
148 |
1 |
decode = new MultiFormatReader().decode(binaryBitmap).getText(); |
149 |
|
} catch (Exception ex) { |
150 |
1 |
LOGGER.catchException(ex); |
151 |
|
} |
152 |
2 |
return decode; |
153 |
|
} |
154 |
|
} |