blob: cb20f5b4ab53588b189d353750a4c69c4643e429 (
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
|
class TicketSelection
def initialize(options = {})
@options = options
@options[:open_status] ||= 'open'
@options[:sort_order] ||= 'updated_at_desc'
end
def tickets
#TODO: can this be more succinct?
if order
Ticket.send(finder_method).startkey(startkey).endkey(endkey).send(order)
else
Ticket.send(finder_method).startkey(startkey).endkey(endkey)
end
end
protected
def finder_method
method = 'by_'
method += 'includes_post_by_and_' if only_mine?
method += 'is_open_and_' if @options[:open_status] != 'all'
method += @options[:sort_order].sub(/_(de|a)sc$/, '')
end
def startkey
startkeys = []
startkeys << @options[:user_id] if only_mine?
startkeys << (@options[:open_status] == 'open') if @options[:open_status] != 'all'
startkeys << 0
startkeys = startkeys.join if startkeys.length == 1 #want string not array if just one thing in array
startkeys
end
def endkey
endtime = Time.now + 2.days #TODO. this obviously isn't ideal
if self.startkey.is_a?(Array)
endkeys = self.startkey
endkeys.pop
endkeys << endtime
else
endtime
end
end
def order
'descending' if @options[:sort_order].end_with? 'desc'
end
def only_mine?
!@options[:is_admin] or (@options[:admin_status] == 'mine')
end
end
|