forked from nyyManni/ejira
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ejira-core.el
939 lines (807 loc) · 36.3 KB
/
ejira-core.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
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
;;; ejira-core.el --- ejira interal functions
;; Copyright (C) 2017 - 2019 Henrik Nyman
;; Author: Henrik Nyman <[email protected]>
;; URL: https://github.com/nyyManni/ejira
;; Keywords: calendar, data, org, jira
;; 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:
;; Low-level functions of Ejira package
;;; Code:
(require 'cl-lib)
(require 'org)
(require 'f)
(require 'dash)
(require 'dash-functional)
(require 'org-id)
(require 'org-capture)
(require 's)
(require 'jiralib2)
(require 'ejira-parser)
(defgroup ejira nil
"JIRA synchronization for Emacs."
:group 'applications
:prefix "ejira-")
(defvar ejira-sprint-field nil
"Name of the sprint field as a quoted Lisp symbol.")
(defvar ejira-epic-field nil
"Name of the issue epic field as a quoted Lisp symbol.")
(defvar ejira-epic-summary-field nil
"Name of the epic summary field as a quoted Lisp symbol.")
(defvar ejira-epic-type-name "Epic"
"Name of the issue type equivalent to an epic.")
(defvar ejira-story-type-name "Story"
"Name of the issue type equivalent to a user story.")
(defvar ejira-subtask-type-name "Sub-task"
"Name of the issue type equivalent to a subtask.")
(defvar ejira-comments-heading-name "Comments"
"Subheading ejira uses for the comments list.")
(defvar ejira-description-heading-name "Description"
"Subheading ejira uses for the description of the item.")
(defcustom ejira-projects nil
"Projects to synchronize."
:group 'ejira
:type '(repeat string))
(defcustom ejira-priorities-alist '(("High" . ?A)
("Medium" . ?B)
("Low" . ?C))
"Association list to convert between `org-mode' and JIRA priorities.
If modifying, remember to set `org-lowest-priority' and `org-highest-priority'
so that all priorities are valid."
:group 'ejira
:tag "JIRA priority map"
:type '(alist :key-type (string :tag "JIRA Priority")
:value-type (character :tag "org-priority")))
(defcustom ejira-todo-states-alist '(("To Do" . 1)
("In Progress" . 2)
("Done" . 3))
"Association list to convert from JIRA todo states to `org-mode' todo states.
The org-state is defined as a number, which is a 1-based index of an element in
`org-todo-keywords'.
The default value is applicable for:
(setq org-todo-keywords '((sequence \"TODO\" \"IN PROGRESS\" \"|\" \"DONE\")))"
:group 'ejira
:tag "JIRA state map"
:type '(alist :key-type (string :tag "JIRA State")
:value-type (number :tag "org-todo")))
(defcustom ejira-org-todo-keywords-alist nil
"List of Org todo keywords to be inserted into Ejira org file so org-todo-keywords does not need to be set globally."
:group 'ejira
:tag "JIRA state map"
:type '(alist :key-type (string :tag "JIRA Project ID")
:value-type ('(repeat string) :tag "org keywords")))
(defcustom ejira-org-directory "~/org"
"Directory to use for storing the org-files generated by ejira."
:group 'ejira
:type 'string)
(defvar ejira-assigned-tagname "ejira_assigned"
"Tagname used for issues that are assigned to me.")
(defvar ejira-sprint-tagname-prefix "ejira_sprint@"
"Tagname used prefix for the sprint tag.")
(cl-defstruct ejira-task
(key nil :read-only t)
type
(reporter nil :read-only t)
assignee
deadline
status
created
updated
epic
project
priority
sprint
estimate
remaining-estimate
summary
parent
description
comments)
(cl-defstruct ejira-comment
id
author
created
updated
body)
(cl-defstruct ejira-sprint
(id nil :read-only t)
name
state
start-date
end-date
complete-date)
(cl-defstruct ejira-project
(key nil :read-only t)
name
description)
(defun ejira--parse-sprint (s)
"Parse a sprint object S. Return it as jira-sprint structure."
(let ((args (mapcar
(lambda (p)
(apply 'cons (split-string p "=")))
;; Throw away items not containing =-character. They probably are
;; there due to an extra , in some of the fields. This results in
;; field values being truncated on first comma. I blame JIRA for
;; not escaping the commas properly.
(cl-remove-if-not
(-partial #'s-contains-p "=")
(split-string
(replace-regexp-in-string "^.*@[0-9a-f]*\\[\\(.*\\)\\]$" "\\1" s) ",")))))
(make-ejira-sprint
:id (cdr (assoc "id" args))
:name (cdr (assoc "name" args))
:state (cdr (assoc "state" args))
:start-date (condition-case nil
(ejira--date-to-time (cdr (assoc "startDate" args)))
(error nil))
:end-date (condition-case nil
(ejira--date-to-time (cdr (assoc "endDate" args)))
(error nil))
:complete-date (condition-case nil
(ejira--date-to-time (cdr (assoc "completeDate" args)))
(error nil)))))
(defun ejira--parse-project (project)
"Parse a project structure from REST object PROJECT."
(make-ejira-project
:key (ejira--alist-get project 'key)
:name (ejira--alist-get project 'name)
:description (ejira--alist-get project 'description)))
(defun ejira--parse-comment (comment)
"Parse a comment structure from REST object COMMENT."
(make-ejira-comment
:id (ejira--alist-get comment 'id)
:author (ejira--alist-get comment 'author 'displayName)
:created (ejira--date-to-time (ejira--alist-get comment 'fields 'created))
:updated (ejira--date-to-time (ejira--alist-get comment 'fields 'updated))
:body (ejira--alist-get comment 'body)))
(defun ejira--parse-item (item)
"Parse an issue or epic structure from REST object ITEM."
(let ((type (ejira--alist-get item 'fields 'issuetype 'name)))
(make-ejira-task
:key (ejira--alist-get item 'key)
:type type
:status (ejira--alist-get item 'fields 'status 'name)
:created (ejira--date-to-time (ejira--alist-get item 'fields 'created))
:updated (ejira--date-to-time (ejira--alist-get item 'fields 'updated))
:reporter (ejira--alist-get item 'fields 'reporter 'displayName)
:assignee (ejira--alist-get item 'fields 'assignee 'displayName)
:deadline (ejira--alist-get item 'fields 'duedate)
:epic (unless (equal type ejira-epic-type-name)
(ejira--alist-get item 'fields ejira-epic-field))
:project (ejira--alist-get item 'fields 'project 'key)
:estimate (ejira--alist-get item 'fields 'timetracking
'originalEstimateSeconds)
:remaining-estimate (ejira--alist-get item 'fields 'timetracking
'remainingEstimateSeconds)
:sprint (ejira-get-sprint-name (ejira--alist-get item 'fields
ejira-sprint-field))
:parent (when (equal type ejira-subtask-type-name)
(ejira--alist-get item 'fields 'parent 'key))
:priority (ejira--alist-get item 'fields 'priority 'name)
:summary (ejira--parse-body (ejira--alist-get item 'fields 'summary))
:description (ejira--alist-get item 'fields 'description)
:comments (mapcar #'ejira--parse-comment
(ejira--alist-get item 'fields 'comment 'comments)))))
(defun ejira--project-file-name (key)
"Get file path for the project KEY."
(if (s-ends-with? "/" ejira-org-directory)
(concat ejira-org-directory key ".org")
(concat ejira-org-directory "/" key ".org")))
(defun ejira--update-project (key)
"Pull the project KEY from the server and update it's org state."
(save-window-excursion
(save-current-buffer
(let* ((existing-heading (ejira--find-heading key))
(project (ejira--parse-project (jiralib2-get-project key)))
(project-file-name (ejira--project-file-name key))
(exists-p (f-exists-p project-file-name)))
;; We need to write empty file so that `org-id' will start tracking it.
(unless exists-p
(if (assoc key ejira-org-todo-keywords-alist)
(let ((todos ""))
(dolist (item (cdr (assoc key ejira-org-todo-keywords-alist)))
(setq todos (concat todos " " item)))
(write-region (format "#+STARTUP: showevertyhing\n#+TODO:%s\n" todos) nil project-file-name))
(write-region "#+STARTUP: showeverything\n" nil project-file-name)))
(let ((project-buffer (or (find-buffer-visiting project-file-name)
(find-file project-file-name))))
(unless existing-heading
(ejira--new-heading project-buffer nil key))
(ejira--set-summary key (ejira-project-name project))
(ejira--set-property key "TYPE" "ejira-project"))))))
(defmacro ejira--with-bind-struct (type instance &rest body)
"Bind slots of INSTANCE to locals while evaluating BODY.
The slots are parsed from struct TYPE."
(let ((sym (gensym)))
`(let* ,(cons
`(,sym ,instance)
(mapcar
(lambda (s) `(,s (cl-struct-slot-value ',type ',s ,sym)))
(mapcar #'car (cdr (cl-struct-slot-info type)))))
,@body)))
(function-put #'ejira--with-bind-struct 'lisp-indent-function 'defun)
(defmacro ejira--with-expand-all (&rest body)
"Evalate BODY while all outline contents are visible."
`(org-save-outline-visibility t
(outline-show-all)
,@body))
(function-put #'ejira--with-expand-all 'lisp-indent-function 'defun)
(defmacro ejira--with-point-on (id &rest body)
"Execute BODY with point on the item ID header."
`(org-with-point-at (or (ejira--find-heading ,id)
(error "Item %s not found" ,id))
,@body))
(function-put #'ejira--with-point-on 'lisp-indent-function 'defun)
(defun ejira--update-task-light (issue-key status assignee)
"Update only the STATUS and ASSIGNEE of issue ISSUE-KEY.
If the issue heading does not exist, fallback to full update."
(if (not (ejira--find-heading issue-key))
(ejira--update-task issue-key)
(ejira--with-point-on issue-key
(org-set-property "Assignee" (or assignee ""))
(if (equal assignee (ejira--my-fullname))
(org-toggle-tag ejira-assigned-tagname 'on)
(org-toggle-tag ejira-assigned-tagname 'off)))
(ejira--set-todo-state issue-key
(alist-get status ejira-todo-states-alist 1 nil #'equal))))
(defun ejira--update-task (issue-key)
"Pull the task ISSUE-KEY from the server and update it's org state."
(ejira--with-bind-struct ejira-task (if (ejira-task-p issue-key) issue-key
(ejira--parse-item
(jiralib2-get-issue issue-key)))
(let ((org-type (cond ((equal type ejira-epic-type-name) 'ejira-epic)
((equal type ejira-story-type-name) 'ejira-story)
((equal type ejira-subtask-type-name) 'ejira-subtask)
(t 'ejira-issue))))
;; Ensure that the project file is there to begin with.
(unless (ejira--find-heading project) (ejira--update-project project))
;; Subtasks parent needs to be updated first so we can refile
(when (and parent (not (ejira--find-heading parent))) (ejira--update-task parent))
;; Epic needs to be updated first, so that we can refile
(when (and epic (not (ejira--find-heading epic))) (ejira--update-task epic))
;; Create a new heading if needed
(unless (ejira--find-heading key)
(when (fboundp 'helm-ejira-invalidate-cache) (helm-ejira-invalidate-cache))
(ejira--new-heading (marker-buffer (ejira--find-heading project))
(or parent project)
key))
(ejira--set-todo-state key (alist-get status ejira-todo-states-alist 1 nil #'equal))
(ejira--set-property key "TYPE" (symbol-name org-type))
(ejira--set-summary key summary)
;; Set the sprint tag
(ejira--with-point-on key
(dolist (tag (org-get-tags))
(when (s-starts-with-p ejira-sprint-tagname-prefix tag)
(org-toggle-tag tag 'off)))
(when sprint (org-toggle-tag sprint 'on))
;; Update deadline (4 is the prefix argument to remove deadline)
(if deadline (org-deadline nil deadline) (org-deadline '(4)))
;; Set priority.
(when-let ((p (alist-get priority ejira-priorities-alist nil nil #'equal)))
(org-priority p))
(org-set-property "Status" status)
(org-set-property "Reporter" reporter)
(org-set-property "Assignee" (or assignee ""))
(if (equal assignee (ejira--my-fullname))
(org-toggle-tag ejira-assigned-tagname 'on)
(org-toggle-tag ejira-assigned-tagname 'off))
(org-set-property "Issuetype" type)
(org-set-property "Created" (format-time-string "%Y-%m-%d %H:%M:%S"
created "UTC"))
(org-set-property "Modified" (format-time-string "%Y-%m-%d %H:%M:%S"
updated "UTC"))
(when-let ((minutes (and estimate (/ estimate 60))))
(org-set-property "Effort" (format "%02d:%02d" (/ minutes 60) (% minutes 60))))
(when-let ((minutes (and remaining-estimate (/ remaining-estimate 60))))
(org-set-property "Left" (format "%02d:%02d" (/ minutes 60) (% minutes 60)))))
(ejira--get-subheading (ejira--find-heading key) ejira-description-heading-name)
(ejira--get-subheading (ejira--find-heading key) ejira-comments-heading-name)
(ejira--set-heading-body-jira-markup
(ejira--find-task-subheading key ejira-description-heading-name)
description)
;; Update existing, and insert missing comments
(mapc (-partial #'ejira--update-comment key) comments)
;; Delete removed comments
(ejira--kill-deleted-comments key (mapcar 'ejira-comment-id comments))
;; Ensure comments are ordered by creation
(ejira--sort-comments key)
;; Finally, refile to the correct location
(ejira--refile key (cond (parent) (epic) (t project)))
(message "Updated %s: %s" key summary))))
(defun ejira--update-comment (key comment)
"Update comment list of item KEY with data from COMMENT."
(org-with-point-at (ejira--get-comment-heading key (ejira-comment-id comment))
(ejira--with-expand-all
(org-set-property "Author" (ejira-comment-author comment))
(let ((created (ejira-comment-created comment))
(updated (ejira-comment-updated comment)))
(org-set-property "Created" (format-time-string "%Y-%m-%d %H:%M:%S"
created "UTC"))
(when (not (equal created updated))
(org-set-property "Modified" (format-time-string "%Y-%m-%d %H:%M:%S"
updated "UTC"))))
(ejira--set-heading-summary
(point-marker)
(format "[%s] %s"
(format-time-string "%Y-%m-%d %a %H:%M"
(ejira-comment-created comment) "UTC")
(ejira-comment-author comment)))
(ejira--set-heading-body-jira-markup
(point-marker)
(ejira-comment-body comment)))))
(defun ejira--get-comment-heading (key id)
"Get marker to comment ID of item KEY. Create heading if it does not exits."
(org-with-point-at (ejira--get-subheading (ejira--find-heading key)
ejira-comments-heading-name)
(or (ejira--find-child-heading-property "CommId" id)
(org-with-wide-buffer
(ejira--with-expand-all
(org-insert-heading-respect-content t)
(insert "<new comment>")
(org-demote-subtree)
(beginning-of-line)
(org-set-property "CommId" id)
(org-set-property "TYPE" "ejira-comment")
(point-marker))))))
(defun ejira--sort-comments (key)
"Sort comments of item KEY by creation time."
(org-with-point-at (ejira--get-subheading (ejira--find-heading key)
ejira-comments-heading-name)
(condition-case nil
(org-sort-entries nil ?r nil #'time-less-p "Created" nil)
(user-error nil)))) ;; User error thrown if no subheadings
(defun ejira--kill-deleted-comments (key ids)
"Kill all comments of item KEY whoes ids are not found from IDS."
(ejira--with-point-on key
(mapc
(lambda (m) (when m (org-with-point-at m
(ejira--with-expand-all
(org-cut-subtree)))))
(org-with-point-at (ejira--get-subheading (ejira--find-heading key)
ejira-comments-heading-name)
(org-map-entries
`(unless (member (org-entry-get (point-marker) "CommId") ',ids)
(point-marker))
"TYPE=\"ejira-comment\""
'tree)))))
(defun ejira--get-comment-capture-target (key)
"Get an `org-capture'-target for adding a comment to task KEY."
(ejira--with-point-on key
(let ((l `(,(ejira--strip-properties (org-get-heading t t t t)))))
(condition-case nil
(while t
(outline-up-heading 1 t)
(setq l (cons (ejira--strip-properties (org-get-heading t t t t)) l)))
(error nil))
`(file+olp ,(buffer-file-name) ,@l ,ejira-comments-heading-name))))
(defun ejira--capture-comment (key)
"Capture a comment into task KEY."
(let ((org-capture-templates
`(("x" "Comment" entry
,(ejira--get-comment-capture-target key)
"* <new comment>\n:PROPERTIES:\n:TYPE: ejira-comment\n:END:\n%?"))))
(org-capture nil "x")))
(defun ejira--post-capture-comment ()
"Push the captured comment to server."
(unless org-note-abort
(if-let ((m (save-excursion
(when (search-backward "<new comment>" nil t)
(beginning-of-line)
(point-marker)))))
(when (and (equal (org-entry-get m "TYPE") "ejira-comment"))
(org-with-wide-buffer
(ejira--with-expand-all
(let* ((issue-id (org-entry-get m "ID" t))
(comment (ejira--parse-comment
(jiralib2-add-comment
issue-id
(ejira-parser-org-to-jira (ejira--get-heading-body m))))))
(org-set-property "CommId" (ejira-comment-id comment))
(ejira--update-comment issue-id comment))))))))
(add-hook 'org-capture-prepare-finalize-hook #'ejira--post-capture-comment)
(defun ejira--set-heading-body-jira-markup (heading content)
"Update body of heading HEADING to parsed JIRA markup from CONTENT.
The content will be adjusted based on the heading level."
(let ((level (org-with-point-at heading
(save-match-data
(search-forward-regexp "^\\**" (line-end-position) t)
(length (or (match-data) ""))))))
(ejira--set-heading-body heading (ejira--parse-body content (+ 2 level)))))
(defun ejira--find-task-subheading (id heading)
"Return marker to the subheading HEADING of task ID."
(ejira--with-point-on id
(ejira--find-child-heading heading)))
(defun ejira--parse-body (body &optional level)
"Parse a JIRA BODY to insert it inside org header.
If LEVEL is given, shift all heading by it."
(cl-flet ((r (a b c) (replace-regexp-in-string a b c)))
(concat
(s-trim
(ejira-parser-jira-to-org
(r "" "" ; Windows line-endings
(r " " " " ; Non-breaking space, JIRA likes these, Emacs doesn't
(decode-coding-string (or body "") 'utf-8)))
level))
"")))
(defun ejira--get-project (key)
"Get project id of item KEY."
(ejira--with-point-on key
(nth 1 (ejira-get-id-under-point "ejira-project"))))
(defmacro ejira--with-narrow-to-body (heading &rest body)
"Execute BODY while the buffer is narrowed to the content under HEADING."
`(org-with-point-at ,heading
(ejira--with-expand-all
(goto-char ,heading)
(org-narrow-to-subtree)
(end-of-line)
;; TODO: Subheading content might have these...
(search-forward-regexp org-deadline-line-regexp nil t)
(search-forward-regexp org-property-drawer-re nil t)
;; Clock drawer requires a hack, as the built-in regexp doesn't work
(search-forward-regexp
(let ((s (replace-regexp-in-string "CLOCK" "LOGBOOK" org-clock-drawer-re)))
(substring s 0 (- (length s) 2)))
nil t)
(narrow-to-region
(point)
(point-max))
,@body)))
(function-put #'ejira--with-narrow-to-body 'lisp-indent-function 'defun)
(defun ejira--get-heading-body (heading)
"Get body of HEADING."
(ejira--with-narrow-to-body heading
(let* ((buf (buffer-string))
(s (if (and (> (length buf) 0)
(s-starts-with-p "\n" buf))
(substring buf 1)
buf)))
(set-text-properties 0 (length s) nil s)
s)))
(defun ejira--strip-properties (s)
"Remove text properties from string S."
(set-text-properties 0 (length s) nil s)
s)
(defun ejira--set-heading-body (heading contents)
"Set the contents of item HEADING to CONTENTS."
(ejira--with-narrow-to-body heading
(when (> (point-max) (point-min))
(delete-region (point-min) (point-max)))
(when (and contents (> (length contents) 0))
(insert (concat "\n" contents)))))
(defun ejira--set-todo-state (key state)
"Set todo state of item KEY into STATE."
(ejira--with-point-on key (org-todo state)))
(defun ejira--is-parent-p (child parent)
"Return t if CHILD is a subheading of PARENT."
(ejira--with-point-on child
(condition-case nil
(progn
(outline-up-heading 1 t)
(equal parent (org-entry-get (point-marker) "ID")))
(error nil))))
(defun ejira--new-heading (buffer parent id)
"Create a header with ID under PARENT into BUFFER and return a marker to it.
If TITLE is given, use it as header title. If PARENT is nil assume the beginning
of the document."
(save-window-excursion
(with-current-buffer buffer
(org-with-wide-buffer
(ejira--with-expand-all
(goto-char (point-min))
;; `forward-line' won't work as intended if the org document contains
;; headers. We should jump to the parent.
(when parent (goto-char (ejira--find-heading parent)))
;; insert-heading-respect-content does not respect content if we are
;; before first heading in the file. Thus, we want to move to a safe
;; location. In an empty buffer, the first line has the visibility
;; setting, so this should always succeed.
(forward-line)
(org-insert-heading-respect-content t)
(insert "<ejira new heading>")
(org-set-property "ID" id)
(org-beginning-of-line)
(org-id-update-id-locations nil t)
(point-marker))))))
(defun ejira--find-heading (id)
"Find the item ID from agenda files, or return nil."
(org-id-find-id-in-file id (org-id-find-id-file id) t))
(defun ejira--refile (source-id target-id)
"Refile item SOURCE-ID to be a child of TARGET-ID."
(unless (ejira--is-parent-p source-id target-id)
(let ((target-m (or (ejira--find-heading target-id)
(error "Target %s not found" target-id))))
(ejira--with-point-on source-id
(org-refile nil nil
`(nil ,(buffer-file-name (marker-buffer target-m)) nil
,(marker-position target-m)))))))
(defun ejira--set-property (id property value)
"Set PROPERTY of item ID into VALUE."
(ejira--with-point-on id
(org-set-property property value)))
(defun ejira--get-property (id property)
"Get value of PROPERTY of item ID."
(ejira--with-point-on id
(org-entry-get (point-marker) property)))
(defun ejira--find-child-heading-predicate (predicate)
"Get marker to child heading with PREDICATE function returning t."
(org-with-wide-buffer
(ejira--with-expand-all
(when (org-goto-first-child)
(let ((found-p nil)
(end-p nil))
(while (and (not found-p) (not end-p))
(if (funcall predicate)
(setq found-p t)
(unless (org-goto-sibling)
(setq end-p t))))
(when found-p
(point-marker)))))))
(defun ejira--find-child-heading-property (name value)
"Get marker to child heading with property NAME with value VALUE."
(ejira--find-child-heading-predicate
(lambda () (equal (org-entry-get (point-marker) name) value))))
(defun ejira--find-child-heading (name)
"Get marker to child heading with title NAME or nil."
(ejira--find-child-heading-predicate
(lambda () (equal (org-get-heading t t t t) name))))
(defun ejira--get-subheading (heading name)
"Get marker to subheading NAME of HEADING, creating it if it does not exist."
(org-with-point-at heading
(or (ejira--find-child-heading name)
(org-with-wide-buffer
(ejira--with-expand-all
(org-insert-heading-respect-content t)
(insert name)
(org-demote-subtree)
(beginning-of-line)
(point-marker))))))
(defun ejira--set-heading-summary (heading summary)
"Set the heading text of HEADING to SUMMARY."
(org-with-point-at heading
(org-narrow-to-subtree)
(goto-char (point-min))
(org-with-wide-buffer
(org-narrow-to-subtree)
(when (search-forward
(org-get-heading t t t t))
(replace-match
(s-replace "\\" "" (replace-regexp-in-string "\\\\\\(.\\)" "\\1"
summary)))))))
(defun ejira--set-summary (id summary)
"Set the heading of item ID into SUMMARY."
(ejira--set-heading-summary (ejira--find-heading id) summary))
(defun ejira--alist-get (l &rest keys)
"Find a value from fields L recursively with KEYS."
(let ((value (let* (key exists)
(while (and keys (listp l))
(when (and (listp (caar l))
(not (cdr l)))
(setq l (car l)))
(setq key (car keys))
(setq exists nil)
(mapc (lambda (item)
(when (equal key (car item))
(setq exists t)))
(if (and (listp l)
(listp (car l)))
l
nil))
(setq keys (cdr keys))
(if exists
(setq l (cdr (assoc key l)))
(setq l (or (cdr (assoc key l)) l))))
(when exists
l))))
(if (stringp value)
(decode-coding-string value 'utf-8)
value)))
;;;###autoload
(defun ejira-get-id-under-point (&optional type exclude-comment)
"Get ID and TYPE of the ticket under point.
With TYPE search up until an item of the given type is found.
With EXCLUDE-COMMENT do not include comments in the search."
(interactive)
(save-excursion
(catch 'id-tag
(while t
(save-restriction
(ejira--with-expand-all
(org-narrow-to-subtree)
(goto-char (point-min))
(let ((found-id (or (org-entry-get (point-marker) "ID")
(unless exclude-comment
(org-entry-get (point-marker) "CommId"))))
(found-type (org-entry-get (point-marker) "TYPE")))
(when (and found-id (if type
(equal found-type type)
(s-starts-with-p "ejira-" found-type)))
(when (equal found-type "ejira-comment")
(setq found-id (cons (org-entry-get (point-marker) "ID" t)
found-id)))
(throw 'id-tag (list found-type found-id (point-marker)))))))
(org-up-element)))))
(defun ejira-issue-id-under-point ()
"Get ID of the issue or project under point (ingores comments)."
(nth 1 (ejira-get-id-under-point nil t)))
(defun ejira--delete-comment (key id)
"Delete comment ID of item KEY."
(jiralib2-delete-comment key id)
(ejira--update-task key))
(defun ejira--progress-item (key)
"Progress the item KEY."
(let* ((actions (jiralib2-get-actions key))
(selected (rassoc (completing-read "Action: " (mapcar 'cdr actions))
actions)))
(jiralib2-do-action key (car selected))
(ejira--update-task key)))
(defun ejira--assign-issue (key &optional to-me)
"Assign issue KEY. With TO-ME set to t assign it to me."
(let* ((jira-users (ejira--get-assignable-users key))
(fullname (if to-me
(cdr (assoc jiralib2-user-account-id jira-users))
(completing-read "Assignee: " (mapcar 'cdr jira-users))))
(account-id (car (rassoc fullname jira-users))))
(jiralib2-assign-issue key account-id)
(ejira--with-point-on key
(org-set-property "Assignee" (if account-id fullname "")))
;; If assigned to me, add tag.
(if (equal fullname (ejira--my-fullname))
(org-toggle-tag ejira-assigned-tagname 'on)
(org-toggle-tag ejira-assigned-tagname 'off))))
(defun ejira--get-fields-to-sync (&optional shallow)
"Get a list of the fields that Ejira wants to sync.
With SHALLOW update only todo state."
(if shallow
`("key" "status" "assignee")
`("key" "priority" "assignee" "issuetype" "project" "summary" "description"
"reporter" "duedate" "created" "updated" "status" "parent" "timetracking"
"comment" ,(symbol-name ejira-epic-field) ,(symbol-name ejira-sprint-field))))
(defvar ejira--my-fullname nil)
(defun ejira--my-fullname ()
"Fetch full name of the currently logged in user."
(or ejira--my-fullname
(setq ejira--my-fullname
(cdr (assoc 'displayName (jiralib2-get-user-info))))))
(defvar ejira--user-cache nil)
(defun ejira--get-users ()
"Fetch user list from server and cache it for the session."
(or ejira--user-cache
(setq ejira--user-cache
(append
'(("" . "Unassigned"))
(remove nil
(mapcar (lambda (user)
(let ((name (decode-coding-string
(cdr (assoc 'displayName user)) 'utf-8))
(key (cdr (assoc 'accountId user))))
(unless (s-starts-with? "#" key)
(cons key name))))
(jiralib2-get-users (car ejira-projects))))))))
;; A new link-type needs to be added, otherwise the ~-character at the beginning
;; of the link fools org to think this is a file path.
(org-link-set-parameters "jirauser" :follow nil :export nil)
(defun ejira-mention-user ()
"Insert a username link."
(interactive)
(let* ((jira-users (ejira--get-users))
(fullname (completing-read "User: " (mapcar 'cdr jira-users)))
(account-id (car (rassoc fullname jira-users))))
(insert (format "[[~accountId:%s][%s]]" account-id fullname))))
(defun ejira--get-assignable-users (issue-key)
"Fetch users that issue ISSUE-KEY can be assigned to."
(append
'((nil . "Unassigned"))
(remove nil
(mapcar (lambda (user)
(let ((name (decode-coding-string
(cdr (assoc 'displayName user)) 'utf-8))
(key (cdr (assoc 'accountId user))))
(unless (s-starts-with? "#" key)
(cons key name))))
(jiralib2-get-assignable-users issue-key)))))
(defun ejira--set-epic (item epic)
"Set item ITEM to have epic EPIC. Refile accordingly."
(message "item: '%s' epic: '%s'" item epic)
(jiralib2-update-issue item `(,ejira-epic-field . ,epic))
(ejira--update-task item))
(defun ejira--select-id-or-nil (prompt candidates)
"Select a candidate from CANDIDATES or nil. Display PROMPT."
(let ((choice (completing-read
prompt
(mapcar (-partial #'nth 0)
(cons '("*nil*", "" ()) candidates)))))
(unless (equal choice "*nil*")
choice)))
(defun ejira--select-project ()
"Select a project interactively."
(completing-read
"Select project: "
(mapcar (-partial #'nth 0)
(ejira--get-headings-in-agenda-files :type "ejira-project"))))
(defun ejira--select-story ()
"Select a story interactively."
(completing-read
"Select story: "
(mapcar (-partial #'nth 0)
(ejira--get-headings-in-agenda-files :type "ejira-story"))))
(defun ejira--get-headings-in-file (filename plist)
"Get ejira headings from FILENAME with parameters PLIST.
Parameters:
:type match for the TYPE-property (defaults to task, project and epic)
:resolved match for the resolved status of the item. either 'todo or 'done
:tags match for the tags (defaults to any)
Without type, match for all ejira types (task, epic, story, subtask)"
(let* ((type-arg (or (plist-get plist :type) '("ejira-issue" "ejira-epic"
"ejira-story" "ejira-subtask")))
(types (if (listp type-arg) type-arg `(,type-arg)))
(resolved (plist-get plist :todo))
(tags (plist-get plist :tags)))
(with-current-buffer (pcase filename
((pred bufferp) filename)
((pred stringp) (find-file-noselect filename t)))
(org-with-wide-buffer
(ejira--with-expand-all
(goto-char (point-min))
(cl-loop while (search-forward-regexp "^\\*\\{1,4\\} " nil t)
if (and (when-let ((type (org-entry-get (point) "TYPE")))
(member type types))
(if tags
(let ((tags_ (org-get-tags)))
(equal tags (-intersection tags tags_)))
t)
(if resolved
(equal resolved (if (org-entry-is-done-p) "done" "todo"))
t))
collect `(,(org-entry-get (point) "ID")
,(ejira--strip-properties (org-get-heading t t t t))
,(org-get-tags)
,(org-entry-get (point) "TYPE"))))))))
(defun ejira--get-headings-in-agenda-files (&rest plist)
"Get ejira headings from org agenda files, with parameters PLIST."
(-mapcat (-rpartial #'ejira--get-headings-in-file plist) (org-agenda-files)))
(defun ejira--get-headings-in-current-file (&rest plist)
"Get ejira headings from the current file, with parameters PLIST."
(ejira--get-headings-in-file plist (buffer-file-name)))
(defun ejira--date-to-time (date)
"Return DATE in internal format, if it is not nil."
(when date
(date-to-time date)))
(defun ejira--select-issuetype ()
"Select a type name from types available in the server."
(nth 0 (split-string
(completing-read
"Issue type: "
(mapcar (lambda (m)
(format "%-15s\t%s"
(alist-get 'name m)
(alist-get 'description m)))
(jiralib2-get-issuetypes))) "\t" t "\s*")))
(defun ejira--get-clocked-issue ()
"Get key of the currently clocked issue."
(unless (marker-buffer org-clock-marker)
(user-error "Not clocked in to an issue"))
(org-with-point-at org-clock-marker
(ejira-issue-id-under-point)))
(defun ejira-get-sprint-name (data)
"Parse sprint name from DATA. Return NIL if not found."
(let ((name (last (mapcar #'ejira-sprint-name
(mapcar #'ejira--parse-sprint data)))))
(when name
;; Spaces are not valid in a tagname.
(ejira--to-tagname (car name)))))
(defun ejira--to-tagname (str)
"Convert STR into a valid org tag."
(concat ejira-sprint-tagname-prefix
(replace-regexp-in-string "[^a-zA-Z0-9_]+" "_" str)))
(provide 'ejira-core)
;;; ejira-core.el ends here