-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjira-utils.el
178 lines (163 loc) · 7.73 KB
/
jira-utils.el
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
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
;;; jira-utils.el --- Utilities -*- lexical-binding: t -*-
;; Copyright (C) 2025 Pablo González Carrizo
;; Author: Pablo González Carrizo <[email protected]>
;; Created: 2025-02-16
;; This file is NOT part of GNU Emacs.
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 3, or (at your option)
;; any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
;; Boston, MA 02110-1301, USA.
;;; Commentary:
;; Mixed utility functions for jira.el
;;; Code:
(require 'tablist)
(defvar jira-issues-fields
'((:key . ((:path . (key))
(:columns . 10)
(:name . "Key")
(:formatter . jira-fmt-issue-key)))
(:priority-name . ((:path . (fields priority name))
(:columns . 10)
(:name . "Priority")))
(:priority-icon. ((:path . (fields priority iconUrl))
(:columns . 10)
(:name . "Priority")))
(:labels . ((:path . (fields labels))
(:columns . 10)
(:name . "Labels")))
(:original-estimate . ((:path . (fields aggregatetimeoriginalestimate))
(:columns . 10)
(:name . "Estimate")
(:formatter . jira-fmt-time-from-secs)))
(:work-ratio . ((:path . (fields workratio))
(:columns . 6)
(:name . "WR")
(:formatter . jira-fmt-issue-progress)))
(:remaining-time . ((:path . (fields timeestimate))
(:columns . 10)
(:name . "Remaining")
(:formatter . jira-fmt-time-from-secs)))
(:assignee-name . ((:path . (fields assignee displayName))
(:columns . 14)
(:name . "Assignee")))
(:reporter-name . ((:path . (fields reporter displayName))
(:columns . 14)
(:name . "Reporter")))
(:components . ((:path . (fields components))
(:columns . 10)
(:name . "Components")
(:formatter . jira-fmt-issue-components)))
(:fix-versions . ((:path . (fields fixVersions))
(:columns . 10)
(:name . "Fix Versions")
(:formatter . jira-fmt-issue-fix-versions)))
(:status-name . ((:path . (fields status name))
(:columns . 15)
(:name . "Status")
(:formatter . jira-fmt-issue-status)))
(:status-category-name . ((:path . (fields status statusCategory name))
(:columns . 10)
(:name . "Status Category")))
(:creator-name . ((:path (fields creator displayName))
(:columns . 10)
(:name . "Creator")))
(:progress-percent . ((:path . (fields progress percent))
(:columns . 10)
(:name . "Progress")
(:formatter . jira-fmt-issue-progress)))
(:issue-type-name . ((:path . (fields issuetype name))
(:columns . 15)
(:name . "Type")
(:formatter . jira-fmt-issue-type-name)))
(:issue-type-icon . ((:path . (fields issuetype iconUrl))
(:columns . 10)
(:name . "Type")))
(:project-key . ((:path . (fields project key))
(:columns . 10)
(:name . "Project")))
(:project-name . ((:path . (fields project name))
(:columns . 10)
(:name . "Project")))
(:parent-type-name . ((:path . (fields parent fields issuetype name))
(:columns . 10)
(:name . "Parent Type")
(:formatter . jira-fmt-issue-type-name)))
(:parent-status . ((:path . (fields parent fields status name))
(:columns . 10)
(:name . "Parent Status")
(:formatter . jira-fmt-issue-status)))
(:parent-key . ((:path . (fields parent key))
(:columns . 10)
(:name . "Parent Key")
(:formatter . jira-fmt-issue-key)))
(:created . ((:path . (fields created))
(:columns . 10)
(:name . "Created")))
(:updated . ((:path . (fields updated))
(:columns . 10)
(:name . "Updated")))
(:description . ((:path . (fields description))
(:columns . 10)
(:name . "Description")))
(:summary . ((:path . (fields summary))
(:columns . 10)
(:name . "Summary")))
(:due-date . ((:path . (fields duedate))
(:columns . 10)
(:name . "Due Date")
(:formatter . jira-fmt-date)))
(:sprints . ((:path . (fields (custom "Sprint")))
(:columns . 10)
(:name . "Sprints")
(:formatter . jira-fmt-issue-sprints)))
(:line . ((:path . (fields (custom "Business line")))
(:columns . 10)
(:name . "Business Line")
(:formatter . jira-fmt-business-line)))
(:cost-center . ((:path . (fields (custom "Cost center")))
(:columns . 10)
(:name . "Const Center")
(:formatter . jira-fmt-cost-center)))
(:resolution . ((:path . (fields resolution name))
(:columns . 10)
(:name . "Resolution")))))
(defun jira-utils-marked-item ()
"Return the marked item in the current tablist."
(car (car (tablist-get-marked-items))))
(defun jira-utils-transient-description (prefix &optional item)
"Return a transient description for the given ITEM (or the marked one)
with the given PREFIX."
(let ((item (or item (jira-utils-marked-item))))
(if (stringp item) (concat prefix " [" (format "%s" item) "]") prefix)))
(defun jira-utils-get-day-of-week (date-string)
"Return the day of the week for a given DATE-STRING in the format YYYY-MM-DD."
(let* ((parsed-time (parse-time-string (concat date-string "T00:00:00")))
(time (encode-time (nth 0 parsed-time) ; second
(nth 1 parsed-time) ; minute
(nth 2 parsed-time) ; hour
(nth 3 parsed-time) ; day
(nth 4 parsed-time) ; month
(nth 5 parsed-time)))) ; year
(format-time-string "%a" time)))
(defun jira-utils-week-start-and-end (date)
"Return the start and end dates of the given DATE week, in YYYY-MM-DD format."
(let* ((decoded-time (decode-time date))
(current-day (nth 6 decoded-time))
(days-from-monday (mod (- current-day 1) 7))
(start-of-week (time-subtract date (days-to-time days-from-monday)))
(end-of-week (time-add start-of-week (days-to-time 6)))
(format-time (lambda (time) (format-time-string "%F" time))))
(list (funcall format-time start-of-week)
(funcall format-time end-of-week))))
(provide 'jira-utils)
;;; jira-utils.el ends here