Filtrování podniků podle kuřáckosti.
1 package cz.frantovo.nekurak.ejb;
3 import cz.frantovo.nekurak.dao.PodnikDAO;
4 import cz.frantovo.nekurak.dto.Kategorie;
5 import cz.frantovo.nekurak.dto.Komentar;
6 import cz.frantovo.nekurak.dto.Kurackost;
7 import cz.frantovo.nekurak.dto.Podnik;
8 import cz.frantovo.nekurak.dto.VysledekHlasovani;
9 import cz.frantovo.nekurak.ext.Geo;
10 import cz.frantovo.nekurak.ext.Geo.Souradnice;
11 import cz.frantovo.nekurak.ext.Texy;
12 import cz.frantovo.nekurak.util.Komentare;
13 import cz.frantovo.nekurak.vyjimky.KomentarovaVyjimka;
14 import cz.frantovo.nekurak.vyjimky.TexyVyjimka;
15 import java.util.Collection;
16 import java.util.HashSet;
18 import java.util.logging.Logger;
19 import javax.annotation.Resource;
20 import javax.annotation.security.RolesAllowed;
22 import javax.ejb.SessionContext;
23 import javax.ejb.Stateless;
30 public class PodnikEJB implements PodnikRemote {
32 private static final Logger log = Logger.getLogger(PodnikEJB.class.getSimpleName());
34 private PodnikDAO podnikDAO;
36 private SessionContext ctx;
38 public Collection<Podnik> getPodniky() {
39 Collection<Podnik> vysledek = podnikDAO.getPodniky();
43 public Collection<Podnik> getPodniky(Kategorie kategorie) {
44 Collection<Podnik> vysledek = podnikDAO.getPodniky(kategorie);
48 public Collection<Podnik> getPodniky(Kurackost kurackost) {
49 Collection<Podnik> vysledek = podnikDAO.getPodniky(kurackost);
53 public Podnik getPodnik(int id) {
54 return podnikDAO.getPodnik(id);
57 @RolesAllowed("opravneny")
58 public void zalozPodnik(Podnik p) {
59 p.setSpravce(ctx.getCallerPrincipal().getName());
63 @RolesAllowed("opravneny")
64 public void upravPodnik(Podnik p) {
68 public int dopocitejSouradnice() {
70 * TODO: refaktorovat, změnit datové typy, souřadnice…
73 int pocetAktualizovanych = 0;
75 for (Podnik p : podnikDAO.getPodnikyBezSouradnic()) {
76 Souradnice s = g.getSouradnice(p.getUlice() + " " + p.getCisloPopisne() + ", " + p.getMesto());
78 pocetAktualizovanych++;
79 p.setSirka(s.getSirka());
80 p.setDelka(s.getDelka());
85 return pocetAktualizovanych;
88 public void hlasuj(int podnik, boolean hlas, String ipAdresa) {
90 podnikDAO.hlasuj(podnik, hlas, ipAdresa);
93 public VysledekHlasovani getVysledekHlasovani(Podnik podnik) {
94 return podnikDAO.getVysledekHlasovani(podnik);
97 private void kontrolaKomentare(Komentar k) throws TexyVyjimka, KomentarovaVyjimka {
98 k.setUzivatel(ctx.getCallerPrincipal().getName());
101 if (k.getKomentar() == null || k.getKomentar().length() < 1) {
102 throw new KomentarovaVyjimka("Nechceme prázdné komentáře.", null);
105 /** Převedeme na XML */
106 switch (k.getTyp()) {
108 k.setKomentar(Komentare.upravProstyText(k.getKomentar()));
112 k.setKomentar(t.preved(k.getKomentar()));
115 k.setKomentar(Komentare.upravXHTML(k.getKomentar()));
118 /** Přidáme kořenový element */
119 k.setKomentar(Komentare.obal(k.getKomentar()));
121 /** Zkontrolujeme XML */
122 Komentare.zkontroluj(k.getKomentar());
125 @RolesAllowed("opravneny")
126 public Komentar komentuj(Komentar k, boolean uloz) throws KomentarovaVyjimka, TexyVyjimka {
127 kontrolaKomentare(k);