org-mac-link.el 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870
  1. ;;; org-mac-link.el --- Insert org-mode links to items selected in various Mac apps
  2. ;;
  3. ;; Copyright (c) 2010-2014 Free Software Foundation, Inc.
  4. ;;
  5. ;; Author: Anthony Lander <anthony.lander@gmail.com>
  6. ;; John Wiegley <johnw@gnu.org>
  7. ;; Christopher Suckling <suckling at gmail dot com>
  8. ;; Daniil Frumin <difrumin@gmail.com>
  9. ;; Alan Schmitt <alan.schmitt@polytechnique.org>
  10. ;; Mike McLean <mike.mclean@pobox.com>
  11. ;;
  12. ;;
  13. ;; Version: 1.1
  14. ;; Keywords: org, mac, hyperlink
  15. ;;
  16. ;; Version: 1.2
  17. ;; Keywords: outlook
  18. ;; Author: Mike McLean <mike.mclean@pobox.com>
  19. ;; Add support for Microsoft Outlook for Mac as Org mode links
  20. ;;
  21. ;; This file is not part of GNU Emacs.
  22. ;;
  23. ;; This program is free software; you can redistribute it and/or modify
  24. ;; it under the terms of the GNU General Public License as published by
  25. ;; the Free Software Foundation; either version 3, or (at your option)
  26. ;; any later version.
  27. ;;
  28. ;; This program is distributed in the hope that it will be useful,
  29. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  30. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  31. ;; GNU General Public License for more details.
  32. ;;
  33. ;; You should have received a copy of the GNU General Public License
  34. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  35. ;;
  36. ;;; Commentary:
  37. ;;
  38. ;; This code allows you to grab either the current selected items, or
  39. ;; the frontmost url in various mac appliations, and insert them as
  40. ;; hyperlinks into the current org-mode document at point.
  41. ;;
  42. ;; This code is heavily based on, and indeed incorporates,
  43. ;; org-mac-message.el written by John Wiegley and Christopher
  44. ;; Suckling.
  45. ;;
  46. ;; Detailed comments for each application interface are inlined with
  47. ;; the code. Here is a brief overview of how the code interacts with
  48. ;; each application:
  49. ;;
  50. ;; Finder.app - grab links to the selected files in the frontmost window
  51. ;; Mail.app - grab links to the selected messages in the message list
  52. ;; AddressBook.app - Grab links to the selected addressbook Cards
  53. ;; Firefox.app - Grab the url of the frontmost tab in the frontmost window
  54. ;; Vimperator/Firefox.app - Grab the url of the frontmost tab in the frontmost window
  55. ;; Safari.app - Grab the url of the frontmost tab in the frontmost window
  56. ;; Google Chrome.app - Grab the url of the frontmost tab in the frontmost window
  57. ;; Together.app - Grab links to the selected items in the library list
  58. ;; Skim.app - Grab a link to the selected page in the topmost pdf document
  59. ;; Microsoft Outlook.app - Grab a link to the selected message in the message list
  60. ;; DEVONthink Pro Office.app - Grab a link to the selected DEVONthink item(s); open DEVONthink item by reference
  61. ;;
  62. ;;
  63. ;; Installation:
  64. ;;
  65. ;; add (require 'org-mac-link) to your .emacs, and optionally bind a
  66. ;; key to activate the link grabber menu, like this:
  67. ;;
  68. ;; (add-hook 'org-mode-hook (lambda ()
  69. ;; (define-key org-mode-map (kbd "C-c g") 'org-mac-grab-link)))
  70. ;;
  71. ;; Usage:
  72. ;;
  73. ;; Type C-c g (or whatever key you defined, as above), or type M-x
  74. ;; org-mac-grab-link RET to activate the link grabber. This will present
  75. ;; you with a menu to choose an application from which to grab a link
  76. ;; to insert at point. You may also type C-g to abort.
  77. ;;
  78. ;; Customizing:
  79. ;;
  80. ;; You may customize which applications appear in the grab menu by
  81. ;; customizing the group `org-mac-link'. Changes take effect
  82. ;; immediately.
  83. ;;
  84. ;;
  85. ;;; Code:
  86. (require 'org)
  87. (defgroup org-mac-link nil
  88. "Options for grabbing links from Mac applications."
  89. :tag "Org Mac link"
  90. :group 'org-link)
  91. (defcustom org-mac-grab-Finder-app-p t
  92. "Add menu option [F]inder to grab links from the Finder."
  93. :tag "Grab Finder.app links"
  94. :group 'org-mac-link
  95. :type 'boolean)
  96. (defcustom org-mac-grab-Mail-app-p t
  97. "Add menu option [m]ail to grab links from Mail.app."
  98. :tag "Grab Mail.app links"
  99. :group 'org-mac-link
  100. :type 'boolean)
  101. (defcustom org-mac-grab-Outlook-app-p t
  102. "Add menu option [o]utlook to grab links from Microsoft Outlook.app."
  103. :tag "Grab Microsoft Outlook.app links"
  104. :group 'org-mac-link
  105. :type 'boolean)
  106. (defcustom org-mac-grab-devonthink-app-p t
  107. "Add menu option [d]EVONthink to grab links from DEVONthink Pro Office.app."
  108. :tag "Grab DEVONthink Pro Office.app links"
  109. :group 'org-mac-link
  110. :type 'boolean)
  111. (defcustom org-mac-grab-Addressbook-app-p t
  112. "Add menu option [a]ddressbook to grab links from AddressBook.app."
  113. :tag "Grab AddressBook.app links"
  114. :group 'org-mac-link
  115. :type 'boolean)
  116. (defcustom org-mac-grab-Safari-app-p t
  117. "Add menu option [s]afari to grab links from Safari.app."
  118. :tag "Grab Safari.app links"
  119. :group 'org-mac-link
  120. :type 'boolean)
  121. (defcustom org-mac-grab-Firefox-app-p t
  122. "Add menu option [f]irefox to grab links from Firefox.app."
  123. :tag "Grab Firefox.app links"
  124. :group 'org-mac-link
  125. :type 'boolean)
  126. (defcustom org-mac-grab-Firefox+Vimperator-p nil
  127. "Add menu option [v]imperator to grab links from Firefox.app running the Vimperator plugin."
  128. :tag "Grab Vimperator/Firefox.app links"
  129. :group 'org-mac-link
  130. :type 'boolean)
  131. (defcustom org-mac-grab-Chrome-app-p t
  132. "Add menu option [c]hrome to grab links from Google Chrome.app."
  133. :tag "Grab Google Chrome.app links"
  134. :group 'org-mac-link
  135. :type 'boolean)
  136. (defcustom org-mac-grab-Together-app-p nil
  137. "Add menu option [t]ogether to grab links from Together.app."
  138. :tag "Grab Together.app links"
  139. :group 'org-mac-link
  140. :type 'boolean)
  141. (defcustom org-mac-grab-Skim-app-p
  142. (< 0 (length (shell-command-to-string
  143. "mdfind kMDItemCFBundleIdentifier == 'net.sourceforge.skim-app.skim'")))
  144. "Add menu option [S]kim to grab page links from Skim.app."
  145. :tag "Grab Skim.app page links"
  146. :group 'org-mac-link
  147. :type 'boolean)
  148. (defcustom org-mac-Skim-highlight-selection-p nil
  149. "Highlight the active selection when grabbing a link from Skim.app."
  150. :tag "Highlight selection in Skim.app"
  151. :group 'org-mac-link
  152. :type 'boolean)
  153. (defgroup org-mac-flagged-mail nil
  154. "Options foring linking to flagged Mail.app messages."
  155. :tag "Org Mail.app"
  156. :group 'org-link)
  157. (defcustom org-mac-mail-account nil
  158. "The Mail.app account in which to search for flagged messages."
  159. :group 'org-mac-flagged-mail
  160. :type 'string)
  161. ;; In mac.c, removed in Emacs 23.
  162. (declare-function do-applescript "org-mac-message" (script))
  163. (unless (fboundp 'do-applescript)
  164. ;; Need to fake this using shell-command-to-string
  165. (defun do-applescript (script)
  166. (let (start cmd return)
  167. (while (string-match "\n" script)
  168. (setq script (replace-match "\r" t t script)))
  169. (while (string-match "'" script start)
  170. (setq start (+ 2 (match-beginning 0))
  171. script (replace-match "\\'" t t script)))
  172. (setq cmd (concat "osascript -e '" script "'"))
  173. (setq return (shell-command-to-string cmd))
  174. (concat "\"" (org-trim return) "\""))))
  175. (defun org-mac-grab-link ()
  176. "Prompt for an application to grab a link from.
  177. When done, go grab the link, and insert it at point."
  178. (interactive)
  179. (let* ((descriptors
  180. `(("F" "inder" org-mac-finder-insert-selected ,org-mac-grab-Finder-app-p)
  181. ("m" "ail" org-mac-message-insert-selected ,org-mac-grab-Mail-app-p)
  182. ("d" "EVONthink Pro Office" org-mac-devonthink-item-insert-selected
  183. ,org-mac-grab-devonthink-app-p)
  184. ("o" "utlook" org-mac-outlook-message-insert-selected ,org-mac-grab-Outlook-app-p)
  185. ("a" "ddressbook" org-mac-addressbook-insert-selected ,org-mac-grab-Addressbook-app-p)
  186. ("s" "afari" org-mac-safari-insert-frontmost-url ,org-mac-grab-Safari-app-p)
  187. ("f" "irefox" org-mac-firefox-insert-frontmost-url ,org-mac-grab-Firefox-app-p)
  188. ("v" "imperator" org-mac-vimperator-insert-frontmost-url ,org-mac-grab-Firefox+Vimperator-p)
  189. ("c" "hrome" org-mac-chrome-insert-frontmost-url ,org-mac-grab-Chrome-app-p)
  190. ("t" "ogether" org-mac-together-insert-selected ,org-mac-grab-Together-app-p)
  191. ("S" "kim" org-mac-skim-insert-page ,org-mac-grab-Skim-app-p)))
  192. (menu-string (make-string 0 ?x))
  193. input)
  194. ;; Create the menu string for the keymap
  195. (mapc '(lambda (descriptor)
  196. (when (elt descriptor 3)
  197. (setf menu-string (concat menu-string
  198. "[" (elt descriptor 0) "]"
  199. (elt descriptor 1) " "))))
  200. descriptors)
  201. (setf (elt menu-string (- (length menu-string) 1)) ?:)
  202. ;; Prompt the user, and grab the link
  203. (message menu-string)
  204. (setq input (read-char-exclusive))
  205. (mapc '(lambda (descriptor)
  206. (let ((key (elt (elt descriptor 0) 0))
  207. (active (elt descriptor 3))
  208. (grab-function (elt descriptor 2)))
  209. (when (and active (eq input key))
  210. (call-interactively grab-function))))
  211. descriptors)))
  212. (defun org-mac-paste-applescript-links (as-link-list)
  213. "Paste in a list of links from an applescript handler.
  214. The links are of the form <link>::split::<name>."
  215. (let* ((noquote-as-link-list
  216. (if (string-prefix-p "\"" as-link-list)
  217. (substring as-link-list 1 -1)
  218. as-link-list))
  219. (link-list
  220. (mapcar (lambda (x) (if (string-match "\\`\"\\(.*\\)\"\\'" x)
  221. (setq x (match-string 1 x)))
  222. x)
  223. (split-string noquote-as-link-list "[\r\n]+")))
  224. split-link URL description orglink orglink-insert rtn orglink-list)
  225. (while link-list
  226. (setq split-link (split-string (pop link-list) "::split::"))
  227. (setq URL (car split-link))
  228. (setq description (cadr split-link))
  229. (when (not (string= URL ""))
  230. (setq orglink (org-make-link-string URL description))
  231. (push orglink orglink-list)))
  232. (setq rtn (mapconcat 'identity orglink-list "\n"))
  233. (kill-new rtn)
  234. rtn))
  235. ;; Handle links from Firefox.app
  236. ;;
  237. ;; This code allows you to grab the current active url from the main
  238. ;; Firefox.app window, and insert it as a link into an org-mode
  239. ;; document. Unfortunately, firefox does not expose an applescript
  240. ;; dictionary, so this is necessarily introduces some limitations.
  241. ;;
  242. ;; The applescript to grab the url from Firefox.app uses the System
  243. ;; Events application to give focus to the firefox application, select
  244. ;; the contents of the url bar, and copy it. It then uses the title of
  245. ;; the window as the text of the link. There is no way to grab links
  246. ;; from other open tabs, and further, if there is more than one window
  247. ;; open, it is not clear which one will be used (though emperically it
  248. ;; seems that it is always the last active window).
  249. (defun org-as-mac-firefox-get-frontmost-url ()
  250. (let ((result
  251. (do-applescript
  252. (concat
  253. "set oldClipboard to the clipboard\n"
  254. "set frontmostApplication to path to frontmost application\n"
  255. "tell application \"Firefox\"\n"
  256. " activate\n"
  257. " delay 0.15\n"
  258. " tell application \"System Events\"\n"
  259. " keystroke \"l\" using {command down}\n"
  260. " keystroke \"a\" using {command down}\n"
  261. " keystroke \"c\" using {command down}\n"
  262. " end tell\n"
  263. " delay 0.15\n"
  264. " set theUrl to the clipboard\n"
  265. " set the clipboard to oldClipboard\n"
  266. " set theResult to (get theUrl) & \"::split::\" & (get name of window 1)\n"
  267. "end tell\n"
  268. "activate application (frontmostApplication as text)\n"
  269. "set links to {}\n"
  270. "copy theResult to the end of links\n"
  271. "return links as string\n"))))
  272. (car (split-string result "[\r\n]+" t))))
  273. (defun org-mac-firefox-get-frontmost-url ()
  274. (interactive)
  275. (message "Applescript: Getting Firefox url...")
  276. (let* ((url-and-title (org-as-mac-firefox-get-frontmost-url))
  277. (split-link (split-string url-and-title "::split::"))
  278. (URL (car split-link))
  279. (description (cadr split-link))
  280. (org-link))
  281. (when (not (string= URL ""))
  282. (setq org-link (org-make-link-string URL description)))
  283. (kill-new org-link)
  284. org-link))
  285. (defun org-mac-firefox-insert-frontmost-url ()
  286. (interactive)
  287. (insert (org-mac-firefox-get-frontmost-url)))
  288. ;; Handle links from Google Firefox.app running the Vimperator extension
  289. ;; Grab the frontmost url from Firefox+Vimperator. Same limitations are
  290. ;; Firefox
  291. (defun org-as-mac-vimperator-get-frontmost-url ()
  292. (let ((result
  293. (do-applescript
  294. (concat
  295. "set oldClipboard to the clipboard\n"
  296. "set frontmostApplication to path to frontmost application\n"
  297. "tell application \"Firefox\"\n"
  298. " activate\n"
  299. " delay 0.15\n"
  300. " tell application \"System Events\"\n"
  301. " keystroke \"y\"\n"
  302. " end tell\n"
  303. " delay 0.15\n"
  304. " set theUrl to the clipboard\n"
  305. " set the clipboard to oldClipboard\n"
  306. " set theResult to (get theUrl) & \"::split::\" & (get name of window 1)\n"
  307. "end tell\n"
  308. "activate application (frontmostApplication as text)\n"
  309. "set links to {}\n"
  310. "copy theResult to the end of links\n"
  311. "return links as string\n"))))
  312. (replace-regexp-in-string
  313. "\s+-\s+Vimperator" "" (car (split-string result "[\r\n]+" t)))))
  314. (defun org-mac-vimperator-get-frontmost-url ()
  315. (interactive)
  316. (message "Applescript: Getting Vimperator url...")
  317. (let* ((url-and-title (org-as-mac-vimperator-get-frontmost-url))
  318. (split-link (split-string url-and-title "::split::"))
  319. (URL (car split-link))
  320. (description (cadr split-link))
  321. (org-link))
  322. (when (not (string= URL ""))
  323. (setq org-link (org-make-link-string URL description)))
  324. (kill-new org-link)
  325. org-link))
  326. (defun org-mac-vimperator-insert-frontmost-url ()
  327. (interactive)
  328. (insert (org-mac-vimperator-get-frontmost-url)))
  329. ;; Handle links from Google Chrome.app
  330. ;; Grab the frontmost url from Google Chrome. Same limitations as
  331. ;; Firefox because Chrome doesn't publish an Applescript dictionary
  332. (defun org-as-mac-chrome-get-frontmost-url ()
  333. (let ((result
  334. (do-applescript
  335. (concat
  336. "set frontmostApplication to path to frontmost application\n"
  337. "tell application \"Google Chrome\"\n"
  338. " set theUrl to get URL of active tab of first window\n"
  339. " set theResult to (get theUrl) & \"::split::\" & (get name of window 1)\n"
  340. "end tell\n"
  341. "activate application (frontmostApplication as text)\n"
  342. "set links to {}\n"
  343. "copy theResult to the end of links\n"
  344. "return links as string\n"))))
  345. (replace-regexp-in-string
  346. "^\"\\|\"$" "" (car (split-string result "[\r\n]+" t)))))
  347. (defun org-mac-chrome-get-frontmost-url ()
  348. (interactive)
  349. (message "Applescript: Getting Chrome url...")
  350. (let* ((url-and-title (org-as-mac-chrome-get-frontmost-url))
  351. (split-link (split-string url-and-title "::split::"))
  352. (URL (car split-link))
  353. (description (cadr split-link))
  354. (org-link))
  355. (when (not (string= URL ""))
  356. (setq org-link (org-make-link-string URL description)))
  357. (kill-new org-link)
  358. org-link))
  359. (defun org-mac-chrome-insert-frontmost-url ()
  360. (interactive)
  361. (insert (org-mac-chrome-get-frontmost-url)))
  362. ;; Handle links from Safari.app
  363. ;; Grab the frontmost url from Safari.
  364. (defun org-as-mac-safari-get-frontmost-url ()
  365. (do-applescript
  366. (concat
  367. "tell application \"Safari\"\n"
  368. " set theUrl to URL of document 1\n"
  369. " set theName to the name of the document 1\n"
  370. " return theUrl & \"::split::\" & theName & \"\n\"\n"
  371. "end tell\n")))
  372. (defun org-mac-safari-get-frontmost-url ()
  373. (interactive)
  374. (message "Applescript: Getting Safari url...")
  375. (org-mac-paste-applescript-links
  376. (org-as-mac-safari-get-frontmost-url)))
  377. (defun org-mac-safari-insert-frontmost-url ()
  378. (interactive)
  379. (insert (org-mac-safari-get-frontmost-url)))
  380. ;; Handle links from together.app
  381. (org-add-link-type "x-together-item" 'org-mac-together-item-open)
  382. (defun org-mac-together-item-open (uid)
  383. "Open UID, which is a reference to an item in Together."
  384. (shell-command (concat "open -a Together \"x-together-item:" uid "\"")))
  385. (defun as-get-selected-together-items ()
  386. (do-applescript
  387. (concat
  388. "tell application \"Together\"\n"
  389. " set theLinkList to {}\n"
  390. " set theSelection to selected items\n"
  391. " repeat with theItem in theSelection\n"
  392. " set theLink to (get item link of theItem) & \"::split::\" & (get name of theItem) & \"\n\"\n"
  393. " copy theLink to end of theLinkList\n"
  394. " end repeat\n"
  395. " return theLinkList as string\n"
  396. "end tell")))
  397. (defun org-mac-together-get-selected ()
  398. (interactive)
  399. (message "Applescript: Getting Togther items...")
  400. (org-mac-paste-applescript-links (as-get-selected-together-items)))
  401. (defun org-mac-together-insert-selected ()
  402. (interactive)
  403. (insert (org-mac-together-get-selected)))
  404. ;; Handle links from Finder.app
  405. (defun as-get-selected-finder-items ()
  406. (do-applescript
  407. (concat
  408. "tell application \"Finder\"\n"
  409. " set theSelection to the selection\n"
  410. " set links to {}\n"
  411. " repeat with theItem in theSelection\n"
  412. " set theLink to \"file://\" & (POSIX path of (theItem as string)) & \"::split::\" & (get the name of theItem) & \"\n\"\n"
  413. " copy theLink to the end of links\n"
  414. " end repeat\n"
  415. " return links as string\n"
  416. "end tell\n")))
  417. (defun org-mac-finder-item-get-selected ()
  418. (interactive)
  419. (message "Applescript: Getting Finder items...")
  420. (org-mac-paste-applescript-links (as-get-selected-finder-items)))
  421. (defun org-mac-finder-insert-selected ()
  422. (interactive)
  423. (insert (org-mac-finder-item-get-selected)))
  424. ;; Handle links from AddressBook.app
  425. (org-add-link-type "addressbook" 'org-mac-addressbook-item-open)
  426. (defun org-mac-addressbook-item-open (uid)
  427. "Open UID, which is a reference to an item in the addressbook."
  428. (shell-command (concat "open \"addressbook:" uid "\"")))
  429. (defun as-get-selected-addressbook-items ()
  430. (do-applescript
  431. (concat
  432. "tell application \"Address Book\"\n"
  433. " set theSelection to the selection\n"
  434. " set links to {}\n"
  435. " repeat with theItem in theSelection\n"
  436. " set theLink to \"addressbook://\" & (the id of theItem) & \"::split::\" & (the name of theItem) & \"\n\"\n"
  437. " copy theLink to the end of links\n"
  438. " end repeat\n"
  439. " return links as string\n"
  440. "end tell\n")))
  441. (defun org-mac-addressbook-item-get-selected ()
  442. (interactive)
  443. (message "Applescript: Getting Address Book items...")
  444. (org-mac-paste-applescript-links (as-get-selected-addressbook-items)))
  445. (defun org-mac-addressbook-insert-selected ()
  446. (interactive)
  447. (insert (org-mac-addressbook-item-get-selected)))
  448. ;; Handle links from Skim.app
  449. ;;
  450. ;; Original code & idea by Christopher Suckling (org-mac-protocol)
  451. (org-add-link-type "skim" 'org-mac-skim-open)
  452. (defun org-mac-skim-open (uri)
  453. "Visit page of pdf in Skim"
  454. (let* ((page (when (string-match "::\\(.+\\)\\'" uri)
  455. (match-string 1 uri)))
  456. (document (substring uri 0 (match-beginning 0))))
  457. (do-applescript
  458. (concat
  459. "tell application \"Skim\"\n"
  460. "activate\n"
  461. "set theDoc to \"" document "\"\n"
  462. "set thePage to " page "\n"
  463. "open theDoc\n"
  464. "go document 1 to page thePage of document 1\n"
  465. "end tell"))))
  466. (defun as-get-skim-page-link ()
  467. (do-applescript
  468. (concat
  469. "tell application \"Skim\"\n"
  470. "set theDoc to front document\n"
  471. "set theTitle to (name of theDoc)\n"
  472. "set thePath to (path of theDoc)\n"
  473. "set thePage to (get index for current page of theDoc)\n"
  474. "set theSelection to selection of theDoc\n"
  475. "set theContent to contents of (get text for theSelection)\n"
  476. "if theContent is missing value then\n"
  477. " set theContent to theTitle & \", p. \" & thePage\n"
  478. (when org-mac-Skim-highlight-selection-p
  479. (concat
  480. "else\n"
  481. " tell theDoc\n"
  482. " set theNote to make note with properties {type:highlight note, selection:theSelection}\n"
  483. " set text of theNote to (get text for theSelection)\n"
  484. " end tell\n"))
  485. "end if\n"
  486. "set theLink to \"skim://\" & thePath & \"::\" & thePage & "
  487. "\"::split::\" & theContent\n"
  488. "end tell\n"
  489. "return theLink as string\n")))
  490. (defun org-mac-skim-get-page ()
  491. (interactive)
  492. (message "Applescript: Getting Skim page link...")
  493. (let* ((link-and-descr (as-get-skim-page-link))
  494. (split-link (split-string link-and-descr "::split::"))
  495. (link (car split-link))
  496. (description (cadr split-link))
  497. (org-link))
  498. (when (not (string= link ""))
  499. (setq org-link (org-make-link-string link description)))
  500. (kill-new org-link)
  501. org-link))
  502. (defun org-mac-skim-insert-page ()
  503. (interactive)
  504. (insert (org-mac-skim-get-page)))
  505. ;; Handle links from Microsoft Outlook.app
  506. (org-add-link-type "mac-outlook" 'org-mac-outlook-message-open)
  507. (defun org-mac-outlook-message-open (msgid)
  508. "Open a message in Outlook"
  509. (do-applescript
  510. (concat
  511. "tell application \"Microsoft Outlook\"\n"
  512. (format "open message id %s\n" (substring-no-properties msgid))
  513. "activate\n"
  514. "end tell")))
  515. (defun org-as-get-selected-outlook-mail ()
  516. "AppleScript to create links to selected messages in Microsoft Outlook.app."
  517. (do-applescript
  518. (concat
  519. "tell application \"Microsoft Outlook\"\n"
  520. "set msgCount to count current messages\n"
  521. "if (msgCount < 1) then\n"
  522. "return\n"
  523. "end if\n"
  524. "set theLinkList to {}\n"
  525. "set theSelection to (get current messages)\n"
  526. "repeat with theMessage in theSelection\n"
  527. "set theID to id of theMessage as string\n"
  528. "set theURL to \"mac-outlook:\" & theID\n"
  529. "set theSubject to subject of theMessage\n"
  530. "set theLink to theURL & \"::split::\" & theSubject & \"\n\"\n"
  531. "copy theLink to end of theLinkList\n"
  532. "end repeat\n"
  533. "return theLinkList as string\n"
  534. "end tell")))
  535. (defun org-sh-get-flagged-outlook-mail ()
  536. "Shell commands to create links to flagged messages in Microsoft Outlook.app."
  537. (mapconcat
  538. (lambda (x) ""
  539. (concat
  540. "mac-outlook:"
  541. (mapconcat
  542. (lambda (y) "" y)
  543. (split-string
  544. (shell-command-to-string
  545. (format "mdls -raw -name com_microsoft_outlook_recordID -name kMDItemDisplayName \"%s\"" x))
  546. "\000")
  547. "::split::")
  548. "\n"))
  549. (with-temp-buffer
  550. (let ((coding-system-for-read (or file-name-coding-system 'utf-8))
  551. (coding-system-for-write 'utf-8))
  552. (shell-command
  553. "mdfind com_microsoft_outlook_flagged==1"
  554. (current-buffer)))
  555. (split-string
  556. (buffer-string) "\n" t))
  557. ""))
  558. (defun org-mac-outlook-message-get-links (&optional select-or-flag)
  559. "Create links to the messages currently selected or flagged in Microsoft Outlook.app.
  560. This will use AppleScript to get the message-id and the subject of the
  561. messages in Microsoft Outlook.app and make a link out of it.
  562. When SELECT-OR-FLAG is \"s\", get the selected messages (this is also
  563. the default). When SELECT-OR-FLAG is \"f\", get the flagged messages.
  564. The Org-syntax text will be pushed to the kill ring, and also returned."
  565. (interactive "sLink to (s)elected or (f)lagged messages: ")
  566. (setq select-or-flag (or select-or-flag "s"))
  567. (message "Org Mac Outlook: searching mailboxes...")
  568. (let* ((as-link-list
  569. (if (string= select-or-flag "s")
  570. (org-as-get-selected-outlook-mail)
  571. (if (string= select-or-flag "f")
  572. (org-sh-get-flagged-outlook-mail)
  573. (error "Please select \"s\" or \"f\""))))
  574. (link-list
  575. (mapcar
  576. (lambda (x) (if (string-match "\\`\"\\(.*\\)\"\\'" x) (setq x (match-string 1 x))) x)
  577. (split-string as-link-list "[\r\n]+")))
  578. split-link URL description orglink orglink-insert rtn orglink-list)
  579. (while link-list
  580. (setq split-link (split-string (pop link-list) "::split::"))
  581. (setq URL (car split-link))
  582. (setq description (cadr split-link))
  583. (when (not (string= URL ""))
  584. (setq orglink (org-make-link-string URL description))
  585. (push orglink orglink-list)))
  586. (setq rtn (mapconcat 'identity orglink-list "\n"))
  587. (kill-new rtn)
  588. rtn))
  589. (defun org-mac-outlook-message-insert-selected ()
  590. "Insert a link to the messages currently selected in Microsoft Outlook.app.
  591. This will use AppleScript to get the message-id and the subject
  592. of the active mail in Microsoft Outlook.app and make a link out
  593. of it."
  594. (interactive)
  595. (insert (org-mac-outlook-message-get-links "s")))
  596. (defun org-mac-outlook-message-insert-flagged (org-buffer org-heading)
  597. "Asks for an org buffer and a heading within it, and replace message links.
  598. If heading exists, delete all mac-outlook:// links within
  599. heading's first level. If heading doesn't exist, create it at
  600. point-max. Insert list of mac-outlook:// links to flagged mail
  601. after heading."
  602. (interactive "bBuffer in which to insert links: \nsHeading after which to insert links: ")
  603. (with-current-buffer org-buffer
  604. (goto-char (point-min))
  605. (let ((isearch-forward t)
  606. (message-re "\\[\\[\\(mac-outlook:\\)\\([^]]+\\)\\]\\(\\[\\([^]]+\\)\\]\\)?\\]"))
  607. (if (org-goto-local-search-headings org-heading nil t)
  608. (if (not (eobp))
  609. (progn
  610. (save-excursion
  611. (while (re-search-forward
  612. message-re (save-excursion (outline-next-heading)) t)
  613. (delete-region (match-beginning 0) (match-end 0)))
  614. (insert "\n" (org-mac-outlook-message-get-links "f")))
  615. (flush-lines "^$" (point) (outline-next-heading)))
  616. (insert "\n" (org-mac-outlook-message-get-links "f")))
  617. (goto-char (point-max))
  618. (insert "\n")
  619. (org-insert-heading nil t)
  620. (insert org-heading "\n" (org-mac-outlook-message-get-links "f"))))))
  621. ;; Handle links from DEVONthink Pro Office.app
  622. (org-add-link-type "x-devonthink-item" 'org-devonthink-item-open)
  623. (defun org-devonthink-item-open (uid)
  624. "Open UID, which is a reference to an item in DEVONthink Pro Office."
  625. (shell-command (concat "open \"x-devonthink-item:" uid "\"")))
  626. (defun org-as-get-selected-devonthink-item ()
  627. "AppleScript to create links to selected items in DEVONthink Pro Office.app."
  628. (do-applescript
  629. (concat
  630. "set theLinkList to {}\n"
  631. "tell application \"DEVONthink Pro\"\n"
  632. "set selectedRecords to selection\n"
  633. "set selectionCount to count of selectedRecords\n"
  634. "if (selectionCount < 1) then\n"
  635. "return\n"
  636. "end if\n"
  637. "repeat with theRecord in selectedRecords\n"
  638. "set theID to uuid of theRecord\n"
  639. "set theURL to \"x-devonthink-item:\" & theID\n"
  640. "set theSubject to name of theRecord\n"
  641. "set theLink to theURL & \"::split::\" & theSubject & \"\n\"\n"
  642. "copy theLink to end of theLinkList\n"
  643. "end repeat\n"
  644. "end tell\n"
  645. "return theLinkList as string"
  646. )))
  647. (defun org-mac-devonthink-get-links ()
  648. "Create links to the item(s) currently selected in DEVONthink Pro Office.
  649. This will use AppleScript to get the `uuid' and the `name' of the
  650. selected items in DEVONthink Pro Office.app and make links out of
  651. it/them. This function will push the Org-syntax text to the kill
  652. ring, and also return it."
  653. (message "Org Mac DEVONthink: looking for selected items...")
  654. (let* ((as-link-list (org-as-get-selected-devonthink-item))
  655. (link-list (if as-link-list
  656. (mapcar
  657. (lambda (x) (if (string-match "\\`\"\\(.*\\)\"\\'" x)
  658. (setq x (match-string 1 x)))
  659. x)
  660. (split-string as-link-list "[\r\n]+"))
  661. nil))
  662. orglink-list)
  663. (while link-list
  664. (let* ((current-item (pop link-list)))
  665. (message "current item: %s" current-item)
  666. (when (and current-item (not (string= current-item "")))
  667. (let* ((split-link (split-string current-item "::split::"))
  668. (orglink (org-make-link-string
  669. (url-encode-url (car split-link))
  670. (cadr split-link))))
  671. (push orglink orglink-list)))))
  672. (kill-new (mapconcat 'identity orglink-list "\n"))))
  673. (defun org-mac-devonthink-item-insert-selected ()
  674. "Insert a link to the item(s) currently selected in DEVONthink Pro Office.
  675. This will use AppleScript to get the `uuid'(s) and the name(s) of the
  676. selected items in DEVONthink Pro Office and make link(s) out of it/them."
  677. (interactive)
  678. (insert (org-mac-devonthink-get-links)))
  679. ;; Handle links from Mail.app
  680. (org-add-link-type "message" 'org-mac-message-open)
  681. (defun org-mac-message-open (message-id)
  682. "Visit the message with MESSAGE-ID.
  683. This will use the command `open' with the message URL."
  684. (start-process (concat "open message:" message-id) nil
  685. "open" (concat "message://<" (substring message-id 2) ">")))
  686. (defun org-as-get-selected-mail ()
  687. "AppleScript to create links to selected messages in Mail.app."
  688. (do-applescript
  689. (concat
  690. "tell application \"Mail\"\n"
  691. "set theLinkList to {}\n"
  692. "set theSelection to selection\n"
  693. "repeat with theMessage in theSelection\n"
  694. "set theID to message id of theMessage\n"
  695. "set theSubject to subject of theMessage\n"
  696. "set theLink to \"message://\" & theID & \"::split::\" & theSubject\n"
  697. "if (theLinkList is not equal to {}) then\n"
  698. "set theLink to \"\n\" & theLink\n"
  699. "end if\n"
  700. "copy theLink to end of theLinkList\n"
  701. "end repeat\n"
  702. "return theLinkList as string\n"
  703. "end tell")))
  704. (defun org-as-get-flagged-mail ()
  705. "AppleScript to create links to flagged messages in Mail.app."
  706. (unless org-mac-mail-account
  707. (error "You must set org-mac-mail-account"))
  708. (do-applescript
  709. (concat
  710. ;; Get links
  711. "tell application \"Mail\"\n"
  712. "set theMailboxes to every mailbox of account \"" org-mac-mail-account "\"\n"
  713. "set theLinkList to {}\n"
  714. "repeat with aMailbox in theMailboxes\n"
  715. "set theSelection to (every message in aMailbox whose flagged status = true)\n"
  716. "repeat with theMessage in theSelection\n"
  717. "set theID to message id of theMessage\n"
  718. "set theSubject to subject of theMessage\n"
  719. "set theLink to \"message://\" & theID & \"::split::\" & theSubject & \"\n\"\n"
  720. "copy theLink to end of theLinkList\n"
  721. "end repeat\n"
  722. "end repeat\n"
  723. "return theLinkList as string\n"
  724. "end tell")))
  725. (defun org-mac-message-get-links (&optional select-or-flag)
  726. "Create links to the messages currently selected or flagged in Mail.app.
  727. This will use AppleScript to get the message-id and the subject of the
  728. messages in Mail.app and make a link out of it.
  729. When SELECT-OR-FLAG is \"s\", get the selected messages (this is also
  730. the default). When SELECT-OR-FLAG is \"f\", get the flagged messages.
  731. The Org-syntax text will be pushed to the kill ring, and also returned."
  732. (interactive "sLink to (s)elected or (f)lagged messages: ")
  733. (setq select-or-flag (or select-or-flag "s"))
  734. (message "AppleScript: searching mailboxes...")
  735. (org-mac-paste-applescript-links
  736. (cond
  737. ((string= select-or-flag "s") (org-as-get-selected-mail))
  738. ((string= select-or-flag "f") (org-as-get-flagged-mail))
  739. (t (error "Please select \"s\" or \"f\"")))))
  740. (defun org-mac-message-insert-selected ()
  741. "Insert a link to the messages currently selected in Mail.app.
  742. This will use AppleScript to get the message-id and the subject of the
  743. active mail in Mail.app and make a link out of it."
  744. (interactive)
  745. (insert (org-mac-message-get-links "s")))
  746. ;; The following line is for backward compatibility
  747. (defalias 'org-mac-message-insert-link 'org-mac-message-insert-selected)
  748. (defun org-mac-message-insert-flagged (org-buffer org-heading)
  749. "Asks for an org buffer and a heading within it, and replace message links.
  750. If heading exists, delete all message:// links within heading's first
  751. level. If heading doesn't exist, create it at point-max. Insert
  752. list of message:// links to flagged mail after heading."
  753. (interactive "bBuffer in which to insert links: \nsHeading after which to insert links: ")
  754. (with-current-buffer org-buffer
  755. (goto-char (point-min))
  756. (let ((isearch-forward t)
  757. (message-re "\\[\\[\\(message:\\)\\([^]]+\\)\\]\\(\\[\\([^]]+\\)\\]\\)?\\]"))
  758. (if (org-goto-local-search-headings org-heading nil t)
  759. (if (not (eobp))
  760. (progn
  761. (save-excursion
  762. (while (re-search-forward
  763. message-re (save-excursion (outline-next-heading)) t)
  764. (delete-region (match-beginning 0) (match-end 0)))
  765. (insert "\n" (org-mac-message-get-links "f")))
  766. (flush-lines "^$" (point) (outline-next-heading)))
  767. (insert "\n" (org-mac-message-get-links "f")))
  768. (goto-char (point-max))
  769. (insert "\n")
  770. (org-insert-heading nil t)
  771. (insert org-heading "\n" (org-mac-message-get-links "f"))))))
  772. (provide 'org-mac-link)
  773. ;;; org-mac-link.el ends here