org-mac-link-grabber.el 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412
  1. ;;; org-mac-link-grabber.el --- Grab links and url from various mac
  2. ;;; application and insert them as links into org-mode documents
  3. ;;
  4. ;; Copyright (c) 2010 Free Software Foundation, Inc.
  5. ;;
  6. ;; Author: Anthony Lander <anthony.lander@gmail.com>
  7. ;; Version: 1.0
  8. ;; Keywords: org, mac, hyperlink
  9. ;;
  10. ;; This program is free software; you can redistribute it and/or modify
  11. ;; it under the terms of the GNU General Public License as published by
  12. ;; the Free Software Foundation; either version 3, or (at your option)
  13. ;; any later version.
  14. ;;
  15. ;; This program is distributed in the hope that it will be useful,
  16. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. ;; GNU General Public License for more details.
  19. ;;
  20. ;; You should have received a copy of the GNU General Public License
  21. ;; along with this program; if not, write to the Free Software
  22. ;; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  23. ;;
  24. ;;; Commentary:
  25. ;;
  26. ;; This code allows you to grab either the current selected items, or
  27. ;; the frontmost url in various mac appliations, and insert them as
  28. ;; hyperlinks into the current org-mode document at point.
  29. ;;
  30. ;; This code is heavily based on, and indeed requires,
  31. ;; org-mac-message.el written by John Weigley and Christopher
  32. ;; Suckling.
  33. ;;
  34. ;; Detailed comments for each application interface are inlined with
  35. ;; the code. Here is a brief overview of how the code interacts with
  36. ;; each application:
  37. ;;
  38. ;; Finder.app - grab links to the selected files in the frontmost window
  39. ;; Mail.app - grab links to the selected messages in the message list
  40. ;; AddressBook.app - Grab links to the selected addressbook Cards
  41. ;; Firefox.app - Grab the url of the frontmost tab in the frontmost window
  42. ;; Safari.app - Grab the url of the frontmost tab in the frontmost window
  43. ;; Google Chrome.app - Grab the url of the frontmost tab in the frontmost window
  44. ;; Together.app - Grab links to the selected items in the library list
  45. ;;
  46. ;;
  47. ;; Installation:
  48. ;;
  49. ;; add (require 'org-mac-link-grabber) to your .emacs, and optionally
  50. ;; bind a key to activate the link grabber menu, like this:
  51. ;;
  52. ;; (add-hook 'org-mode-hook (lambda ()
  53. ;; (define-key org-mode-map (kbd "C-c g") 'omlg-grab-link)))
  54. ;;
  55. ;;
  56. ;; Usage:
  57. ;;
  58. ;; Type C-c g (or whatever key you defined, as above), or type M-x
  59. ;; omlg-grab-link RET to activate the link grabber. This will present
  60. ;; you with a menu to choose an application from which to grab a link
  61. ;; to insert at point. You may also type C-g to abort.
  62. ;;
  63. ;; Customizing:
  64. ;;
  65. ;; You may customize which applications appear in the grab menu by
  66. ;; customizing the group org-mac-link-grabber. Changes take effect
  67. ;; immediately.
  68. ;;
  69. ;;
  70. ;;; Code:
  71. (require 'org)
  72. (require 'org-mac-message)
  73. (defgroup org-mac-link-grabber nil
  74. "Options concerning grabbing links from external Mac
  75. applications and inserting them in org documents"
  76. :tag "Org Mac link grabber"
  77. :group 'org-link)
  78. (defcustom org-mac-grab-Finder-app-p t
  79. "Enable menu option [F]inder to grab links from the Finder"
  80. :tag "Grab Finder.app links"
  81. :group 'org-mac-link-grabber
  82. :type 'boolean)
  83. (defcustom org-mac-grab-Mail-app-p t
  84. "Enable menu option [m]ail to grab links from Mail.app"
  85. :tag "Grab Mail.app links"
  86. :group 'org-mac-link-grabber
  87. :type 'boolean)
  88. (defcustom org-mac-grab-Addressbook-app-p t
  89. "Enable menu option [a]ddressbook to grab links from AddressBook.app"
  90. :tag "Grab AddressBook.app links"
  91. :group 'org-mac-link-grabber
  92. :type 'boolean)
  93. (defcustom org-mac-grab-Safari-app-p t
  94. "Enable menu option [s]afari to grab links from Safari.app"
  95. :tag "Grab Safari.app links"
  96. :group 'org-mac-link-grabber
  97. :type 'boolean)
  98. (defcustom org-mac-grab-Firefox-app-p t
  99. "Enable menu option [f]irefox to grab links from Firefox.app"
  100. :tag "Grab Firefox.app links"
  101. :group 'org-mac-link-grabber
  102. :type 'boolean)
  103. (defcustom org-mac-grab-Chrome-app-p t
  104. "Enable menu option [f]irefox to grab links from Google Chrome.app"
  105. :tag "Grab Google Chrome.app links"
  106. :group 'org-mac-link-grabber
  107. :type 'boolean)
  108. (defcustom org-mac-grab-Together-app-p nil
  109. "Enable menu option [t]ogether to grab links from Together.app"
  110. :tag "Grab Together.app links"
  111. :group 'org-mac-link-grabber
  112. :type 'boolean)
  113. (defun omlg-grab-link ()
  114. "Prompt the user for an application to grab a link from, then go grab the link, and insert it at point"
  115. (interactive)
  116. (let* ((descriptors `(("F" "inder" org-mac-finder-insert-selected ,org-mac-grab-Finder-app-p)
  117. ("m" "ail" org-mac-message-insert-selected ,org-mac-grab-Mail-app-p)
  118. ("a" "ddressbook" org-mac-addressbook-insert-selected ,org-mac-grab-Addressbook-app-p)
  119. ("s" "afari" org-mac-safari-insert-frontmost-url ,org-mac-grab-Safari-app-p)
  120. ("f" "irefox" org-mac-firefox-insert-frontmost-url ,org-mac-grab-Firefox-app-p)
  121. ("c" "hrome" org-mac-chrome-insert-frontmost-url ,org-mac-grab-Chrome-app-p)
  122. ("t" "ogether" org-mac-together-insert-selected ,org-mac-grab-Together-app-p)))
  123. (menu-string (make-string 0 ?x))
  124. input)
  125. ;; Create the menu string for the keymap
  126. (mapc '(lambda (descriptor)
  127. (when (elt descriptor 3)
  128. (setf menu-string (concat menu-string "[" (elt descriptor 0) "]" (elt descriptor 1) " "))))
  129. descriptors)
  130. (setf (elt menu-string (- (length menu-string) 1)) ?:)
  131. ;; Prompt the user, and grab the link
  132. (message menu-string)
  133. (setq input (read-char-exclusive))
  134. (mapc '(lambda (descriptor)
  135. (let ((key (elt (elt descriptor 0) 0))
  136. (active (elt descriptor 3))
  137. (grab-function (elt descriptor 2)))
  138. (when (and active (eq input key))
  139. (call-interactively grab-function))))
  140. descriptors)))
  141. (defalias 'omgl-grab-link 'omlg-grab-link
  142. "Renamed, and this alias will be obsolete next revision.")
  143. (defun org-mac-paste-applescript-links (as-link-list)
  144. "Paste in a list of links from an applescript handler. The
  145. links are of the form <link>::split::<name>"
  146. (let* ((link-list
  147. (mapcar
  148. (lambda (x) (if (string-match "\\`\"\\(.*\\)\"\\'" x) (setq x (match-string 1 x))) x)
  149. (split-string as-link-list "[\r\n]+")))
  150. split-link URL description orglink orglink-insert rtn orglink-list)
  151. (while link-list
  152. (setq split-link (split-string (pop link-list) "::split::"))
  153. (setq URL (car split-link))
  154. (setq description (cadr split-link))
  155. (when (not (string= URL ""))
  156. (setq orglink (org-make-link-string URL description))
  157. (push orglink orglink-list)))
  158. (setq rtn (mapconcat 'identity orglink-list "\n"))
  159. (kill-new rtn)
  160. rtn))
  161. ;; Handle links from Firefox.app
  162. ;;
  163. ;; This code allows you to grab the current active url from the main
  164. ;; Firefox.app window, and insert it as a link into an org-mode
  165. ;; document. Unfortunately, firefox does not expose an applescript
  166. ;; dictionary, so this is necessarily introduces some limitations.
  167. ;;
  168. ;; The applescript to grab the url from Firefox.app uses the System
  169. ;; Events application to give focus to the firefox application, select
  170. ;; the contents of the url bar, and copy it. It then uses the title of
  171. ;; the window as the text of the link. There is no way to grab links
  172. ;; from other open tabs, and further, if there is more than one window
  173. ;; open, it is not clear which one will be used (though emperically it
  174. ;; seems that it is always the last active window).
  175. (defun as-mac-firefox-get-frontmost-url ()
  176. (let ((result (do-applescript
  177. (concat
  178. "set oldClipboard to the clipboard\n"
  179. "set frontmostApplication to path to frontmost application\n"
  180. "tell application \"Firefox\"\n"
  181. " activate\n"
  182. " delay 0.15\n"
  183. " tell application \"System Events\"\n"
  184. " keystroke \"l\" using command down\n"
  185. " keystroke \"c\" using command down\n"
  186. " end tell\n"
  187. " delay 0.15\n"
  188. " set theUrl to the clipboard\n"
  189. " set the clipboard to oldClipboard\n"
  190. " set theResult to (get theUrl) & \"::split::\" & (get name of window 1)\n"
  191. "end tell\n"
  192. "activate application (frontmostApplication as text)\n"
  193. "set links to {}\n"
  194. "copy theResult to the end of links\n"
  195. "return links as string\n"))))
  196. (car (split-string result "[\r\n]+" t))))
  197. (defun org-mac-firefox-get-frontmost-url ()
  198. (interactive)
  199. (message "Applescript: Getting Firefox url...")
  200. (let* ((url-and-title (as-mac-firefox-get-frontmost-url))
  201. (split-link (split-string url-and-title "::split::"))
  202. (URL (car split-link))
  203. (description (cadr split-link))
  204. (org-link))
  205. (when (not (string= URL ""))
  206. (setq org-link (org-make-link-string URL description)))
  207. (kill-new org-link)
  208. org-link))
  209. (defun org-mac-firefox-insert-frontmost-url ()
  210. (interactive)
  211. (insert (org-mac-firefox-get-frontmost-url)))
  212. ;; Handle links from Google Chrome.app
  213. ;; Grab the frontmost url from Google Chrome. Same limitations are
  214. ;; Firefox because Chrome doesn't publish an Applescript dictionary
  215. (defun as-mac-chrome-get-frontmost-url ()
  216. (let ((result (do-applescript
  217. (concat
  218. "set oldClipboard to the clipboard\n"
  219. "set frontmostApplication to path to frontmost application\n"
  220. "tell application \"Google Chrome\"\n"
  221. " activate\n"
  222. " delay 0.15\n"
  223. " tell application \"System Events\"\n"
  224. " keystroke \"l\" using command down\n"
  225. " keystroke \"c\" using command down\n"
  226. " end tell\n"
  227. " delay 0.15\n"
  228. " set theUrl to the clipboard\n"
  229. " set the clipboard to oldClipboard\n"
  230. " set theResult to (get theUrl) & \"::split::\" & (get name of window 1)\n"
  231. "end tell\n"
  232. "activate application (frontmostApplication as text)\n"
  233. "set links to {}\n"
  234. "copy theResult to the end of links\n"
  235. "return links as string\n"))))
  236. (car (split-string result "[\r\n]+" t))))
  237. (defun org-mac-chrome-get-frontmost-url ()
  238. (interactive)
  239. (message "Applescript: Getting Chrome url...")
  240. (let* ((url-and-title (as-mac-chrome-get-frontmost-url))
  241. (split-link (split-string url-and-title "::split::"))
  242. (URL (car split-link))
  243. (description (cadr split-link))
  244. (org-link))
  245. (when (not (string= URL ""))
  246. (setq org-link (org-make-link-string URL description)))
  247. (kill-new org-link)
  248. org-link))
  249. (defun org-mac-chrome-insert-frontmost-url ()
  250. (interactive)
  251. (insert (org-mac-chrome-get-frontmost-url)))
  252. ;; Handle links from Safari.app
  253. ;; Grab the frontmost url from Safari.
  254. (defun as-mac-safari-get-frontmost-url ()
  255. (let ((result (do-applescript
  256. (concat
  257. "tell application \"Safari\"\n"
  258. " set theUrl to URL of document 1\n"
  259. " set theName to the name of the document 1\n"
  260. " return theUrl & \"::split::\" & theName & \"\n\"\n"
  261. "end tell\n"))))
  262. (car (split-string result "[\r\n]+" t))))
  263. (defun org-mac-safari-get-frontmost-url ()
  264. (interactive)
  265. (message "Applescript: Getting Safari url...")
  266. (let* ((url-and-title (as-mac-safari-get-frontmost-url))
  267. (split-link (split-string url-and-title "::split::"))
  268. (URL (car split-link))
  269. (description (cadr split-link))
  270. (org-link))
  271. (when (not (string= URL ""))
  272. (setq org-link (org-make-link-string URL description)))
  273. (kill-new org-link)
  274. org-link))
  275. (defun org-mac-safari-insert-frontmost-url ()
  276. (interactive)
  277. (insert (org-mac-safari-get-frontmost-url)))
  278. ;;
  279. ;;
  280. ;; Handle links from together.app
  281. ;;
  282. ;;
  283. (org-add-link-type "x-together-item" 'org-mac-together-item-open)
  284. (defun org-mac-together-item-open (uid)
  285. "Open the given uid, which is a reference to an item in Together"
  286. (shell-command (concat "open \"x-together-item:" uid "\"")))
  287. (defun as-get-selected-together-items ()
  288. (do-applescript
  289. (concat
  290. "tell application \"Together\"\n"
  291. " set theLinkList to {}\n"
  292. " set theSelection to selected items\n"
  293. " repeat with theItem in theSelection\n"
  294. " set theLink to (get item link of theItem) & \"::split::\" & (get name of theItem) & \"\n\"\n"
  295. " copy theLink to end of theLinkList\n"
  296. " end repeat\n"
  297. " return theLinkList as string\n"
  298. "end tell")))
  299. (defun org-mac-together-get-selected ()
  300. (interactive)
  301. (message "Applescript: Getting Togther items...")
  302. (org-mac-paste-applescript-links (as-get-selected-together-items)))
  303. (defun org-mac-together-insert-selected ()
  304. (interactive)
  305. (insert (org-mac-together-get-selected)))
  306. ;;
  307. ;;
  308. ;; Handle links from Finder.app
  309. ;;
  310. ;;
  311. (defun as-get-selected-finder-items ()
  312. (do-applescript
  313. (concat
  314. "tell application \"Finder\"\n"
  315. " set theSelection to the selection\n"
  316. " set links to {}\n"
  317. " repeat with theItem in theSelection\n"
  318. " set theLink to \"file://\" & (POSIX path of (theItem as string)) & \"::split::\" & (get the name of theItem) & \"\n\"\n"
  319. " copy theLink to the end of links\n"
  320. " end repeat\n"
  321. " return links as string\n"
  322. "end tell\n")))
  323. (defun org-mac-finder-item-get-selected ()
  324. (interactive)
  325. (message "Applescript: Getting Finder items...")
  326. (org-mac-paste-applescript-links (as-get-selected-finder-items)))
  327. (defun org-mac-finder-insert-selected ()
  328. (interactive)
  329. (insert (org-mac-finder-item-get-selected)))
  330. ;;
  331. ;;
  332. ;; Handle links from AddressBook.app
  333. ;;
  334. ;;
  335. (org-add-link-type "addressbook" 'org-mac-together-item-open)
  336. (defun org-mac-together-item-open (uid)
  337. "Open the given uid, which is a reference to an item in Together"
  338. (shell-command (concat "open \"addressbook:" uid "\"")))
  339. (defun as-get-selected-addressbook-items ()
  340. (do-applescript
  341. (concat
  342. "tell application \"Address Book\"\n"
  343. " set theSelection to the selection\n"
  344. " set links to {}\n"
  345. " repeat with theItem in theSelection\n"
  346. " set theLink to \"addressbook://\" & (the id of theItem) & \"::split::\" & (the name of theItem) & \"\n\"\n"
  347. " copy theLink to the end of links\n"
  348. " end repeat\n"
  349. " return links as string\n"
  350. "end tell\n")))
  351. (defun org-mac-addressbook-item-get-selected ()
  352. (interactive)
  353. (message "Applescript: Getting Address Book items...")
  354. (org-mac-paste-applescript-links (as-get-selected-addressbook-items)))
  355. (defun org-mac-addressbook-insert-selected ()
  356. (interactive)
  357. (insert (org-mac-addressbook-item-get-selected)))
  358. (provide 'org-mac-link-grabber)
  359. ;;; org-mac-link-grabber.el ends here