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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
|
# File 'lib/jeera/util.rb', line 11
def self.define_tasks(thor)
thor.class_eval do
private
no_commands do
def prepare_rows(list_item_type, response)
type = list_item_type.to_s
normalize_method = :"#{type}_obj"
print_method = :"#{type}_print_obj"
items = response.body.with_indifferent_access[type].map do |item|
self.send(normalize_method, item)
end
end
def parse_and_print_table(list_item_type, response)
print_basic_table(prepare_rows(list_item_type, response))
end
def print_priority(priority)
case priority
when 'Hotfix'
set_color("#{priority}!!".upcase, :red, :bold, :on_white)
when 'Urgent'
set_color(priority.upcase, :red, :bold)
when 'High'
set_color(priority, :red)
when 'Normal'
set_color(priority, :yellow)
when 'Low'
set_color(priority, :cyan)
else
priority
end
end
def print_status(status)
color = :green if %w(Fixed Closed).include? status
color = :yellow if %w(Open Reopened).include? status
color = :yellow if status == 'In Progress'
set_color(status, color)
end
def jql(key, arg = nil)
@jql ||= []
case key
when :user
@jql << "assignee=#{arg}"
when :type
@jql << "issuetype=#{arg}"
when :active
@jql << "status='In Progress'"
when :open
@jql << 'status not in (Icebox,Closed)'
when :upcoming
@jql << 'status not in (Icebox,Closed)'
when :default_filter
@jql << default_filter
when :default_sort
@jql << default_sort
else
@jql << "#{key}=#{arg}"
end
@jql
end
def jql_output
@jql[1..-1].each_with_index do |clause, i|
pre = (clause =~ /^order by/) ? ' ' : '&'
clause.prepend(pre)
end
{ jql: @jql.join }
end
def sort_string(*args)
"order by #{args.join(',')}"
end
def default_sort
"order by status asc, priority, created asc"
end
def default_filter
''
end
def current_user
ENV['JEERA_CURRENT_USER'] || Jeera.config.default_user || no_user_error
end
def no_user_error
say set_color('Error: No user specified', :red)
end
def current_project
ENV['JEERA_CURRENT_PROJECT'] || Jeera.config.default_project || no_project_error
end
def no_project_error
say set_color('Error: No project specified', :red)
end
def success_response?(response)
puts response.to_yaml
!response.body.respond_to? :errors
rescue => err
puts error_message(err)
false
end
def api_error(msg, response)
error_message(msg)
return unless response.body['errors']
response.body['errors'].each do |error, field|
say error
end
end
def print_out(out)
table_styles = { border_x: '', border_y: '', border_i: '' }
say Terminal::Table.new({ rows: [[out]], style: table_styles })
end
def print_basic_table(output_arr)
table_styles = { border_x: '', border_y: '', border_i: '' }
say Terminal::Table.new({ rows: output_arr, style: table_styles })
end
def error_message(msg = nil)
msg ||= 'Unknown error'
say set_color(msg, :red)
end
def success_message(msg)
say set_color(msg, :green)
end
def hr(count = 96)
'-' * count
end
def print_to_file(enum, filename = 'jeera_output.yml')
f = File.open(filename, 'w')
enum.each do |item|
f.puts item.to_yaml
f.puts '#-------------------------------'
f.puts "\n\n"
end
f.close
end
end
end
end
|