-
Notifications
You must be signed in to change notification settings - Fork 35
/
ejira.el
417 lines (363 loc) · 16 KB
/
ejira.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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
;;; ejira.el --- Org-mode interface to JIRA
;; Copyright (C) 2017 - 2022 Henrik Nyman
;; Author: Henrik Nyman <[email protected]>
;; URL: https://github.com/nyyManni/ejira
;; Keywords: calendar, data, org, jira
;; Package-Requires: ((emacs "26.1"))
;; Package-Version: 1.0
;; This file is NOT part of GNU Emacs.
;; This file 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 file 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. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; TODO:
;; - Sprint handling
;; - Attachments
;;; Code:
(require 'org)
(require 'dash)
(require 'ejira-core)
(defvar ejira-push-deadline-changes t
"Sync deadlines to server when updated with `ejira-set-deadline'.")
(defvar ejira-update-jql-resolved-fn #'ejira-jql-all-resolved-project-tickets
"Generates JQL used in `ejira-update-project' to find server-resolved items.
Must take a project-id as a string, a list of keys, and return JQL as a string."
)
(defvar ejira-update-jql-unresolved-fn
#'ejira-jql-all-unresolved-project-tickets
"Generates JQL used in `ejira-update-project' to find unresolved items.
Must take a project-id as a string and return JQL as a string.")
(defun ejira-add-comment (to-clocked)
"Capture new comment to issue under point.
With prefix-argument TO-CLOCKED add comment to currently clocked issue."
(interactive "P")
(ejira--capture-comment (if to-clocked
(ejira--get-clocked-issue)
(ejira-issue-id-under-point))))
(defun ejira-delete-comment ()
"Delete comment under point."
(interactive)
(let* ((item (ejira-get-id-under-point "ejira-comment"))
(id (nth 1 item)))
(when (y-or-n-p (format "Delete comment %s? " (cdr id)))
(ejira--delete-comment (car id) (cdr id)))))
(defun ejira-jql-all-resolved-project-tickets (project-id keys)
"Builds JQL for server-resolved project tickets in PROJECT-ID from local KEYS.
This is the function used in `ejira-update-project'. Override with
`ejira-update-jql-resolved-fn'."
(format "project = '%s' and key in (%s) and resolution = done"
project-id (s-join ", " keys)))
(defun ejira-jql-all-unresolved-project-tickets (project-id)
"Builds JQL to find unresolved project tickets assigned to PROJECT-ID.
This is the default function used in `ejira-update-project'. Override with
`ejira-update-jql-unresolved-fn'."
(format "project = '%s' and resolution = unresolved" project-id))
(defun ejira-jql-my-unresolved-project-tickets (project-id)
"Builds JQL to find your unresolved project tickets assigned to PROJECT-ID.
This is a convenience function used in `ejira-update-project'. Override with
`ejira-update-jql-unresolved-fn'."
(format "project = '%s' and \
resolution = unresolved and \
(assignee = currentUser() or reporter = currentUser())" project-id))
(defun ejira-pull-item-under-point ()
"Update the issue, project or comment under point."
(interactive)
(let* ((item (ejira-get-id-under-point))
(id (nth 1 item))
(type (nth 0 item)))
(cond ((equal type "ejira-comment")
(ejira--update-comment
(car id) (ejira--parse-comment (jiralib2-get-comment (car id) (cdr id)))))
((equal type "ejira-project")
(ejira--update-project id))
(t
(ejira--update-task id)))))
(defun ejira-push-item-under-point ()
"Upload content of issue, project or comment under point to server.
For a project, this includes the summary, for a task the summary and
description, and for the comment the body."
(interactive)
(let* ((item (ejira-get-id-under-point))
(id (nth 1 item))
(type (nth 0 item)))
(cond ((equal type "ejira-comment")
(jiralib2-edit-comment
(car id) (cdr id)
(ejira-parser-org-to-jira
(ejira--get-heading-body
(nth 2 item)))))
((equal type "ejira-project")
(message "TODO"))
(t
(jiralib2-update-summary-description
id
(ejira--with-point-on id
(ejira--strip-properties (org-get-heading t t t t)))
(ejira-parser-org-to-jira
(ejira--get-heading-body
(ejira--find-task-subheading id ejira-description-heading-name))))))))
(defun ejira-browse-issue-under-point ()
"Open the current issue in external browser."
(interactive)
(browse-url (concat (replace-regexp-in-string "/*$" "" jiralib2-url) "/browse/" (ejira-issue-id-under-point))))
(defun ejira--heading-to-item (heading project-id type &rest args)
"Create an item from HEADING of TYPE into PROJECT-ID with parameters ARGS."
(let* ((summary (ejira--strip-properties (org-get-heading t t t t)))
(description (ejira-parser-org-to-jira (ejira--get-heading-body heading)))
(item (ejira--parse-item
(apply #'jiralib2-create-issue project-id
type summary description args))))
(ejira--update-task (ejira-task-key item))
(ejira-task-key item)))
(defun ejira-heading-to-task (focus)
"Make the current org-heading into a JIRA task.
With prefix argument FOCUS, focus the issue after creating."
(interactive "P")
(let* ((heading (save-excursion
(if (outline-on-heading-p t)
(beginning-of-line)
(outline-back-to-heading))
(point-marker)))
(project-id (ejira--select-project))
(key (when project-id (ejira--heading-to-item heading project-id "Task"))))
(when (and key focus)
(ejira-focus-on-issue key))))
(defun ejira-heading-to-subtask (focus)
"Make the current org-heading into a JIRA subtask.
With prefix argument FOCUS, focus the issue after creating."
(interactive "P")
(let* ((heading (save-excursion
(if (outline-on-heading-p t)
(beginning-of-line)
(outline-back-to-heading))
(point-marker)))
(story (ejira--select-story))
(project-id (ejira--get-project story))
(key (when project-id(ejira--heading-to-item heading project-id
ejira-subtask-type-name
`(parent . ((key . ,story)))))))
(when (and key focus)
(ejira-focus-on-issue key))))
(defun ejira-update-project (id &optional shallow)
"Update all issues in project ID.
If DEEP set to t, update each issue with separate API call which pulls also
comments. With SHALLOW, only update todo status and assignee."
(ejira--update-project id)
;; First, update all items that are marked as unresolved.
;;
;; Handles cases:
;; *local* | *remote*
;; ===========+===========
;; | unresolved
;; unresolved | unresolved
;; resolved | unresolved
;;
(mapc (lambda (i) (if shallow
(ejira--update-task-light
(ejira--alist-get i 'key)
(ejira--alist-get i 'fields 'status 'name)
(ejira--alist-get i 'fields 'assignee 'displayName))
(ejira--update-task (ejira--parse-item i))))
(apply #'jiralib2-jql-search
(funcall ejira-update-jql-unresolved-fn id)
(ejira--get-fields-to-sync shallow)))
;; Then, sync any items that are still marked as unresolved in our local sync,
;; but are already resolved at the server. This should ensure that there are
;; no hanging todo items in our local sync.
;;
;; Handles cases:
;; *local* | *remote*
;; ===========+===========
;; unresolved | resolved
;;
(let ((keys (mapcar #'car (ejira--get-headings-in-file
(ejira--project-file-name id)
'(:todo "todo")))))
(when keys
(mapc (lambda (i) (if shallow
(ejira--update-task-light
(ejira--alist-get i 'key)
(ejira--alist-get i 'fields 'status 'name)
(ejira--alist-get i 'fields 'assignee 'displayName))
(ejira--update-task (ejira--parse-item i))))
(apply #'jiralib2-jql-search
(funcall ejira-update-jql-resolved-fn id keys)
(ejira--get-fields-to-sync shallow)))))
;; TODO: Handle issue being deleted from server:
;; *local* | *remote*
;; ===========+===========
;; unresolved |
;; resolved |
)
;;;###autoload
(defun ejira-update-my-projects (&optional shallow)
"Synchronize data on projects listed in `ejira-projects'.
With prefix argument SHALLOW, update only the todo state and assignee."
(interactive "P")
(mapc (-rpartial #'ejira-update-project shallow) ejira-projects)
(message "ejira: operation finished"))
;;;###autoload
(defun ejira-set-deadline (arg &optional time)
"Wrapper around `org-deadline' which pushes the changed deadline to server.
ARG and TIME get passed on to `org-deadline'."
(interactive "P")
(ejira--with-point-on (ejira-issue-id-under-point)
(org-deadline arg time)
(when ejira-push-deadline-changes
(let ((deadline (org-get-deadline-time (point-marker))))
(jiralib2-update-issue (ejira-issue-id-under-point)
`(duedate . ,(when deadline
(format-time-string "%Y-%m-%d"
deadline))))))))
;;;###autoload
(defun ejira-set-priority ()
"Set priority of the issue under point."
(interactive)
(ejira--with-point-on (ejira-issue-id-under-point)
(let ((p (completing-read "Priority: "
(mapcar #'car ejira-priorities-alist))))
(jiralib2-update-issue (ejira-issue-id-under-point)
`(priority . ((name . ,p))))
(org-priority (alist-get p ejira-priorities-alist nil nil #'equal)))))
;;;###autoload
(defun ejira-assign-issue (&optional to-me)
"Set the assignee of the issue under point.
With prefix-argument TO-ME assign to me."
(interactive "P")
(ejira--assign-issue (ejira-issue-id-under-point) to-me))
;;;###autoload
(defun ejira-progress-issue ()
"Progress the issue under point with a selected action."
(interactive)
(ejira--progress-item (ejira-issue-id-under-point)))
;;;###autoload
(defun ejira-set-issuetype ()
"Select a new issuetype for the issue under point."
(interactive)
(let* ((id (ejira-get-id-under-point nil t))
(ejira-type (nth 0 id))
(key (if (equal ejira-type "ejira-comment")
(user-error "Cannot set type of comment")
(nth 1 id)))
(type (ejira--select-issuetype)))
(jiralib2-set-issue-type key type)
(ejira--update-task key)))
;;;###autoload
(defun ejira-set-epic ()
"Select a new epic for issue under point."
(interactive)
(ejira--set-epic (ejira-issue-id-under-point)
(ejira--select-id-or-nil
"Select epic: "
(ejira--get-headings-in-agenda-files :type "ejira-epic"))))
;;;###autoload
(defun ejira-focus-on-issue (key)
"Open an indirect buffer narrowed to issue KEY."
(interactive)
(let* ((m (or (ejira--find-heading key)
(error (concat "no issue: " key))))
(m-buffer (marker-buffer m))
(buffer-name (concat "*" key "*"))
(b (or (get-buffer buffer-name)
(make-indirect-buffer m-buffer (concat "*" key "*") t))))
(switch-to-buffer b)
(widen)
(outline-show-all)
(goto-char m)
(org-narrow-to-subtree)
(outline-show-subtree)
(ejira-mode 1)))
;;;###autoload
(defun ejira-focus-on-clocked-issue ()
"Goto current or last clocked item, and narrow to it, and expand it."
(interactive)
(ejira-focus-on-issue (ejira--get-clocked-issue)))
(defun ejira-close-buffer ()
"Close the current buffer viewing issue details."
(interactive)
(kill-buffer (current-buffer))
;; Because we are using indirect buffers, killing current buffer will not go
;; back to the previous buffer, but instead to the corresponding direct
;; buffer. Switching to previous buffer here does the trick.
;; (switch-to-prev-buffer)
)
(defun ejira-insert-link-to-clocked-issue ()
"Insert link to currently clocked issue into buffer."
(interactive)
(insert (format "%s/browse/%s" jiralib2-url (ejira--get-clocked-issue))))
;;;###autoload
(defun ejira-focus-item-under-point ()
"And narrow to item under point, and expand it."
(interactive)
(ejira-focus-on-issue (ejira-issue-id-under-point)))
;;;###autoload
(defun ejira-focus-up-level ()
"Try to focus the parent item of the item under point."
(interactive)
(ejira-focus-on-issue
(ejira--with-point-on (ejira-issue-id-under-point)
(org-up-element)
(ejira-issue-id-under-point))))
(define-minor-mode ejira-mode
"Ejira Mode"
"Minor mode for managing JIRA ticket in a narrowed org buffer."
:init-value nil
:global nil
:keymap (let ((map (make-sparse-keymap)))
(define-key map (kbd "C-c q") #'ejira-close-buffer)
(define-key map (kbd "C-c C-d") #'ejira-set-deadline)
(define-key map (kbd "C-c ,") #'ejira-set-priority)
;; (define-key map (kbd "C-c C-t") #'ejira-progress-issue)
map))
(defun ejira--get-first-id-matching-jql (jql)
"Helper function for `ejira-guess-epic-sprint-fields'.
Return the first item matching JQL."
(nth 0
(alist-get 'issues
(jiralib2-session-call "/rest/api/2/search"
:type "POST"
:data (json-encode
`((jql . ,jql)
(startAt . 0)
(maxResults . 1)
(fields . ("key"))))))))
(defun ejira-refile (key)
"Refile heading under point under item KEY."
(let ((target (or (ejira--find-heading key) (error "Item not found"))))
(org-refile nil nil
`(nil ,(buffer-file-name (marker-buffer target)) nil
,(marker-position target)))))
(defun ejira-guess-epic-sprint-fields ()
"Try to guess the custom field names for epic and sprint."
(interactive)
(message "Attempting to auto-configure Ejira custom fields...")
(let* ((epic-key (alist-get 'key (ejira--get-first-id-matching-jql
(format "type = %s" ejira-epic-type-name))))
(issue-key (alist-get 'key (ejira--get-first-id-matching-jql
(format "type != %s" ejira-epic-type-name))))
(epic-meta (jiralib2-session-call
(format "/rest/api/2/issue/%s/editmeta" epic-key)))
(issue-meta (jiralib2-session-call
(format "/rest/api/2/issue/%s/editmeta" epic-key)))
(epic-field (caar (-filter (lambda (field)
(equal (alist-get 'name field) "Epic Link"))
(alist-get 'fields epic-meta))))
(sprint-field (caar (-filter (lambda (field)
(equal (alist-get 'name field) "Sprint"))
(alist-get 'fields issue-meta))))
(epic-summary-field (caar (-filter (lambda (field)
(equal (alist-get 'name field) "Epic Name"))
(alist-get 'fields epic-meta)))))
(setq ejira-epic-field epic-field
ejira-epic-summary-field epic-summary-field
ejira-sprint-field sprint-field)
(message "Successfully configured custom fields")))
(provide 'ejira)
;;; ejira.el ends here