summaryrefslogtreecommitdiff
path: root/src/lq/QuoteUtil.java
blob: 37f857b27ee3eb3d3eb1dc1b76442e0b7247b14a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
package lq;

import java.util.Collections;
import java.util.List;
import java.util.Comparator;
import javax.jdo.PersistenceManager;
import javax.jdo.Query;

public class QuoteUtil {
    public static List<Quote> getQuotes() {
        PersistenceManager pm = PMF.get().getPersistenceManager(); 
        try {
            Query quoteQuery = pm.newQuery(Quote.class);
            quoteQuery.setFilter("approved == true");
            List<Quote> quotes = (List<Quote>) quoteQuery.execute();
            pm.retrieveAll(quotes);
            return quotes;
        }
        finally {
            pm.close();
        }
    }

    public static Quote getQuoteWithId(Long id) {
        PersistenceManager pm = PMF.get().getPersistenceManager(); 
        try {
            Query quoteQuery = pm.newQuery(Quote.class);
            quoteQuery.setFilter("id == idParam");
            quoteQuery.declareParameters("Long idParam");
            List<Quote> quotes = (List<Quote>) quoteQuery.execute(id);
            if (quotes.isEmpty()) {
                return null;
            }
            else {
                Quote result = quotes.get(0);
                pm.retrieve(result);
                return result;
            }
        }
        finally {
            pm.close();
        }
    }

    public static List<Quote> getQuotesPendingApproval() {
        PersistenceManager pm = PMF.get().getPersistenceManager(); 
        try {
            Query quoteQuery = pm.newQuery(Quote.class);
            quoteQuery.setFilter("approved == null");
            List<Quote> quotes = (List<Quote>) quoteQuery.execute();
            pm.retrieveAll(quotes);
            return quotes;
        }
        finally {
            pm.close();
        }
    }

    public static List<Quote> getQuotesOrderedByIdDesc() {
        List<Quote> quotes = getQuotes();
        Collections.sort(quotes,
                new Comparator<Quote>() {
                    public int compare(Quote q1, Quote q2) {
                        return Long.signum(q2.getId() - q1.getId());
                    }
        });
        return quotes;
    }

    public static List<Quote> getQuotesOrderedByScoreDesc() {
        List<Quote> quotes = getQuotes();
        Collections.sort(quotes,
                new Comparator<Quote>() {
                    public int compare(Quote q1, Quote q2) {
                        return Doubles.signum(q2.getScorePoints() - q1.getScorePoints());
                    }
        });
        return quotes;
    }

    public static List<Quote> getQuotesOrderedByDateDesc() {
        List<Quote> quotes = getQuotes();
        Collections.sort(quotes,
                new Comparator<Quote>() {
                    public int compare(Quote q1, Quote q2) {
                        return q2.getQuoteDate().compareTo(q1.getQuoteDate());
                    }
        });
        return quotes;
    }

    public static void approveQuote(Long id) {
        PersistenceManager pm = PMF.get().getPersistenceManager(); 
        try {
            Query quoteQuery = pm.newQuery(Quote.class);
            quoteQuery.setFilter("id == idParam");
            quoteQuery.declareParameters("Long idParam");
            List<Quote> quotes = (List<Quote>) quoteQuery.execute(id);

            for (Quote quote : quotes) {
                quote.setApproved(true);
                pm.makePersistent(quote);
            }
        }
        finally {
            pm.close();
        }
    }

    public static void rejectQuote(Long id) {
        PersistenceManager pm = PMF.get().getPersistenceManager(); 
        try {
            Query quoteQuery = pm.newQuery(Quote.class);
            quoteQuery.setFilter("id == idParam");
            quoteQuery.declareParameters("Long idParam");
            List<Quote> quotes = (List<Quote>) quoteQuery.execute(id);

            for (Quote quote : quotes) {
                quote.setApproved(false);
                pm.makePersistent(quote);
            }
        }
        finally {
            pm.close();
        }
    }

    public static void addVote(Quote quote, Vote vote) {
        quote.setSumVotes(quote.getSumVotes() + vote.getRating());
        quote.setNumVotes(quote.getNumVotes() + 1);
        double scorePoints = (vote.getRating()-2.5) * Math.abs((vote.getRating()-2.5));
        quote.setScorePoints(quote.getScorePoints() + scorePoints);
    }
}