franta-hg@28
|
1 |
package cz.frantovo.nekurak.ejb;
|
franta-hg@28
|
2 |
|
franta-hg@39
|
3 |
import cz.frantovo.nekurak.dao.PodnikDAO;
|
franta-hg@170
|
4 |
import cz.frantovo.nekurak.dto.Kategorie;
|
franta-hg@130
|
5 |
import cz.frantovo.nekurak.dto.Komentar;
|
franta-hg@28
|
6 |
import cz.frantovo.nekurak.dto.Podnik;
|
franta-hg@107
|
7 |
import cz.frantovo.nekurak.dto.VysledekHlasovani;
|
franta-hg@119
|
8 |
import cz.frantovo.nekurak.ext.Geo;
|
franta-hg@119
|
9 |
import cz.frantovo.nekurak.ext.Geo.Souradnice;
|
franta-hg@130
|
10 |
import cz.frantovo.nekurak.ext.Texy;
|
franta-hg@130
|
11 |
import cz.frantovo.nekurak.util.Komentare;
|
franta-hg@132
|
12 |
import cz.frantovo.nekurak.vyjimky.KomentarovaVyjimka;
|
franta-hg@132
|
13 |
import cz.frantovo.nekurak.vyjimky.TexyVyjimka;
|
franta-hg@28
|
14 |
import java.util.Collection;
|
franta-hg@170
|
15 |
import java.util.HashSet;
|
franta-hg@170
|
16 |
import java.util.Set;
|
franta-hg@107
|
17 |
import java.util.logging.Logger;
|
franta-hg@63
|
18 |
import javax.annotation.Resource;
|
franta-hg@40
|
19 |
import javax.annotation.security.RolesAllowed;
|
franta-hg@39
|
20 |
import javax.ejb.EJB;
|
franta-hg@63
|
21 |
import javax.ejb.SessionContext;
|
franta-hg@28
|
22 |
import javax.ejb.Stateless;
|
franta-hg@28
|
23 |
|
franta-hg@28
|
24 |
/**
|
franta-hg@28
|
25 |
*
|
franta-hg@28
|
26 |
* @author fiki
|
franta-hg@28
|
27 |
*/
|
franta-hg@28
|
28 |
@Stateless
|
franta-hg@39
|
29 |
public class PodnikEJB implements PodnikRemote {
|
franta-hg@28
|
30 |
|
franta-hg@145
|
31 |
private static final Logger log = Logger.getLogger(PodnikEJB.class.getSimpleName());
|
franta-hg@145
|
32 |
@EJB
|
franta-hg@145
|
33 |
private PodnikDAO podnikDAO;
|
franta-hg@145
|
34 |
@Resource
|
franta-hg@145
|
35 |
private SessionContext ctx;
|
franta-hg@28
|
36 |
|
franta-hg@145
|
37 |
public Collection<Podnik> getPodniky() {
|
franta-hg@145
|
38 |
Collection<Podnik> vysledek = podnikDAO.getPodniky();
|
franta-hg@145
|
39 |
return vysledek;
|
franta-hg@100
|
40 |
}
|
franta-hg@100
|
41 |
|
franta-hg@170
|
42 |
public Collection<Podnik> getPodniky(Kategorie kategorie) {
|
franta-hg@170
|
43 |
Collection<Podnik> vysledek = podnikDAO.getPodniky(kategorie);
|
franta-hg@170
|
44 |
return vysledek;
|
franta-hg@170
|
45 |
}
|
franta-hg@170
|
46 |
|
franta-hg@145
|
47 |
public Podnik getPodnik(int id) {
|
franta-hg@145
|
48 |
return podnikDAO.getPodnik(id);
|
franta-hg@142
|
49 |
}
|
franta-hg@142
|
50 |
|
franta-hg@145
|
51 |
@RolesAllowed("opravneny")
|
franta-hg@145
|
52 |
public void zalozPodnik(Podnik p) {
|
franta-hg@145
|
53 |
p.setSpravce(ctx.getCallerPrincipal().getName());
|
franta-hg@145
|
54 |
podnikDAO.zaloz(p);
|
franta-hg@130
|
55 |
}
|
franta-hg@130
|
56 |
|
franta-hg@145
|
57 |
@RolesAllowed("opravneny")
|
franta-hg@145
|
58 |
public void upravPodnik(Podnik p) {
|
franta-hg@145
|
59 |
podnikDAO.uloz(p);
|
franta-hg@145
|
60 |
}
|
franta-hg@130
|
61 |
|
franta-hg@145
|
62 |
public int dopocitejSouradnice() {
|
franta-hg@145
|
63 |
/**
|
franta-hg@145
|
64 |
* TODO: refaktorovat, změnit datové typy, souřadnice…
|
franta-hg@145
|
65 |
*/
|
franta-hg@145
|
66 |
Geo g = new Geo();
|
franta-hg@145
|
67 |
int pocetAktualizovanych = 0;
|
franta-hg@145
|
68 |
|
franta-hg@145
|
69 |
for (Podnik p : podnikDAO.getPodnikyBezSouradnic()) {
|
franta-hg@145
|
70 |
Souradnice s = g.getSouradnice(p.getUlice() + " " + p.getCisloPopisne() + ", " + p.getMesto());
|
franta-hg@145
|
71 |
if (s != null) {
|
franta-hg@145
|
72 |
pocetAktualizovanych++;
|
franta-hg@145
|
73 |
p.setSirka(s.getSirka());
|
franta-hg@145
|
74 |
p.setDelka(s.getDelka());
|
franta-hg@145
|
75 |
podnikDAO.uloz(p);
|
franta-hg@145
|
76 |
}
|
franta-hg@145
|
77 |
}
|
franta-hg@145
|
78 |
|
franta-hg@145
|
79 |
return pocetAktualizovanych;
|
franta-hg@142
|
80 |
}
|
franta-hg@145
|
81 |
|
franta-hg@145
|
82 |
public void hlasuj(int podnik, boolean hlas, String ipAdresa) {
|
franta-hg@145
|
83 |
|
franta-hg@145
|
84 |
podnikDAO.hlasuj(podnik, hlas, ipAdresa);
|
franta-hg@145
|
85 |
}
|
franta-hg@145
|
86 |
|
franta-hg@164
|
87 |
public VysledekHlasovani getVysledekHlasovani(Podnik podnik) {
|
franta-hg@145
|
88 |
return podnikDAO.getVysledekHlasovani(podnik);
|
franta-hg@145
|
89 |
}
|
franta-hg@145
|
90 |
|
franta-hg@145
|
91 |
private void kontrolaKomentare(Komentar k) throws TexyVyjimka, KomentarovaVyjimka {
|
franta-hg@145
|
92 |
k.setUzivatel(ctx.getCallerPrincipal().getName());
|
franta-hg@145
|
93 |
k.setDatum(null);
|
franta-hg@145
|
94 |
|
franta-hg@145
|
95 |
if (k.getKomentar() == null || k.getKomentar().length() < 1) {
|
franta-hg@145
|
96 |
throw new KomentarovaVyjimka("Nechceme prázdné komentáře.", null);
|
franta-hg@145
|
97 |
}
|
franta-hg@145
|
98 |
|
franta-hg@145
|
99 |
/** Převedeme na XML */
|
franta-hg@145
|
100 |
switch (k.getTyp()) {
|
franta-hg@145
|
101 |
case PROSTY_TEXT:
|
franta-hg@145
|
102 |
k.setKomentar(Komentare.upravProstyText(k.getKomentar()));
|
franta-hg@145
|
103 |
break;
|
franta-hg@145
|
104 |
case TEXY:
|
franta-hg@145
|
105 |
Texy t = new Texy();
|
franta-hg@145
|
106 |
k.setKomentar(t.preved(k.getKomentar()));
|
franta-hg@145
|
107 |
break;
|
franta-hg@145
|
108 |
case XHTML:
|
franta-hg@145
|
109 |
k.setKomentar(Komentare.upravXHTML(k.getKomentar()));
|
franta-hg@145
|
110 |
break;
|
franta-hg@145
|
111 |
}
|
franta-hg@145
|
112 |
/** Přidáme kořenový element */
|
franta-hg@145
|
113 |
k.setKomentar(Komentare.obal(k.getKomentar()));
|
franta-hg@145
|
114 |
|
franta-hg@145
|
115 |
/** Zkontrolujeme XML */
|
franta-hg@145
|
116 |
Komentare.zkontroluj(k.getKomentar());
|
franta-hg@145
|
117 |
}
|
franta-hg@145
|
118 |
|
franta-hg@145
|
119 |
@RolesAllowed("opravneny")
|
franta-hg@145
|
120 |
public Komentar komentuj(Komentar k, boolean uloz) throws KomentarovaVyjimka, TexyVyjimka {
|
franta-hg@145
|
121 |
kontrolaKomentare(k);
|
franta-hg@145
|
122 |
if (uloz) {
|
franta-hg@145
|
123 |
podnikDAO.zaloz(k);
|
franta-hg@145
|
124 |
}
|
franta-hg@145
|
125 |
return k;
|
franta-hg@145
|
126 |
}
|
franta-hg@28
|
127 |
}
|