Skip to content

Commit

Permalink
init pastebin elisp
Browse files Browse the repository at this point in the history
  • Loading branch information
nferrier committed Nov 22, 2010
0 parents commit 24b5d51
Showing 1 changed file with 239 additions and 0 deletions.
239 changes: 239 additions & 0 deletions pastebin.el
@@ -0,0 +1,239 @@
;;; pastebin.el --- A simple interface to the www.pastebin.com webservice

;;; Copyright (C) 2008 by Nic Ferrier <nic@ferrier.me.uk>
;;; Copyright (C) 2010 by Ivan Korotkov <twee@tweedle-dee.org>

;;; This program is free software; you can redistribute it and/or modify
;;; it under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 2, or (at your option)
;;; any later version.

;;; This program is distributed in the hope that it will be useful,
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;; GNU General Public License for more details.

;;; You should have received a copy of the GNU General Public License
;;; along with this program; see the file COPYING. If not, write to the
;;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
;;; Boston, MA 02110-1301 USA

;;; Commentary:
;;;
;;; Load this file and run:
;;;
;;; M-x pastebin-buffer
;;;
;;; to send the whole buffer or select a region and run
;;;
;;; M-x pastebin
;;;
;;; to send just the region.
;;;
;;; In either case the url that pastebin generates is left on the kill
;;; ring and the paste buffer.


;;; Code:

;;;###autoload
(defgroup pastebin nil
"Pastebin -- pastebin.com client"
:tag "Pastebin"
:group 'tools)

(defcustom pastebin-default-domain "pastebin.com"
"Pastebin domain to use by default"
:type 'string
:group 'pastebin
)

(defcustom pastebin-domain-versions '(("pastebin.com" "/api_public.php")
("pastebin.woome.com" "/pastebin.php"))
"The version of pastebin that is supported by domains that you use.
As Pastebin changes versions they sometimes change the path used.
Valid paths are:
/pastebin.php - early version
/api_public.php - current version
The pastebin code adapts to the version depending on this.
"
:group 'pastebin
)

(defcustom pastebin-type-assoc
'((actionscript-mode . " actionscript")
(ada-mode . "ada")
(asm-mode . "asm")
(autoconf-mode . "bash")
(bibtex-mode . "bibtex")
(cmake-mode . "cmake")
(c-mode . "c")
(c++-mode . "cpp")
(cobol-mode . "cobol")
(conf-colon-mode . "properties")
(conf-javaprop-mode . "properties")
(conf-mode . "ini")
(conf-space-mode . "properties")
(conf-unix-mode . "ini")
(conf-windows-mode . "ini")
(cperl-mode . "perl")
(csharp-mode . "csharp")
(css-mode . "css")
(delphi-mode . "delphi")
(diff-mode . "dff")
(ebuild-mode . "bash")
(eiffel-mode . "eiffel")
(emacs-lisp-mode . "lisp")
(erlang-mode . "erlang")
(erlang-shell-mode . "erlang")
(espresso-mode . "javascript")
(fortran-mode . "fortran")
(glsl-mode . "glsl")
(gnuplot-mode . "gnuplot")
(graphviz-dot-mode . "dot")
(haskell-mode . "haskell")
(html-mode . "html4strict")
(idl-mode . "idl")
(inferior-haskell-mode . "haskell")
(inferior-octave-mode . "octave")
(inferior-python-mode . "python")
(inferior-ruby-mode . "ruby")
(java-mode . "java")
(js2-mode . "javascript")
(jython-mode . "python")
(latex-mode . "latex")
(lisp-mode . "lisp")
(lua-mode . "lua")
(makefile-mode . "make")
(makefile-automake-mode . "make")
(makefile-gmake-mode . "make")
(makefile-makepp-mode . "make")
(makefile-bsdmake-mode . "make")
(makefile-imake-mode . "make")
(matlab-mode . "matlab")
(nxml-mode . "xml")
(oberon-mode . "oberon2")
(objc-mode . "objc")
(ocaml-mode . "ocaml")
(octave-mode . "matlab")
(pascal-mode . "pascal")
(perl-mode . "perl")
(php-mode . "php")
(plsql-mode . "plsql")
(po-mode . "gettext")
(prolog-mode . "prolog")
(python-2-mode . "python")
(python-3-mode . "python")
(python-basic-mode . "python")
(python-mode . "python")
(ruby-mode . "ruby")
(scheme-mode . "lisp")
(shell-mode . "bash")
(sh-mode . "bash")
(smalltalk-mode . "smalltalk")
(sql-mode . "sql")
(tcl-mode . "tcl")
(visual-basic-mode . "vb")
(xml-mode . "xml")
(yaml-mode . "properties"))
"Alist composed of major-mode names and corresponding pastebin highlight formats."
:type '(alist :key-type symbol :value-tupe string)
:group 'pastebin)

(defvar pastebin-domain-history '())

;;;###autoload
(defun pastebin-buffer (&optional domain)
"Send the whole buffer to pastebin.com.
Optional argument domain will request the virtual host to use,
eg:'emacs.pastebin.com' or 'mylocalpastebin.com'."
(interactive
(let ((pastebin-domain
(if current-prefix-arg
(read-string "pastebin domain:"
pastebin-default-domain
'pastebin-domain-history) pastebin-default-domain)))
(list pastebin-domain)))
(pastebin (point-min) (point-max) domain))

;;;###autoload
(defun pastebin (start end &optional domain)
"Send the region to the pastebin service specified by domain.
See pastebin.com for more information about pastebin.
Called interactively pastebin uses the current region for
preference for sending... if the mark is NOT set then the entire
buffer is sent.
Argument START is the start of region.
Argument END is the end of region.
If domain is used pastebin prompts for a domain defaulting to
'pastebin-default-domain' so you can send requests or use a
different domain.
"
(interactive
(let ((pastebin-domain
(if current-prefix-arg
(read-string "pastebin domain:"
pastebin-default-domain
'pastebin-domain-history) pastebin-default-domain)))
(if (mark)
(list (region-beginning) (region-end) pastebin-domain)
(list (point-min) (point-max) pastebin-domain))))
;; Main function
(if (not domain)
(setq domain pastebin-default-domain))
(let* ((path (cadr (assoc domain pastebin-domain-versions)))
(params (cond
((equal path "/api_public.php")
(concat "submit=submit"
"&paste_private=0"
"&paste_expire_date=N"
(if (not (equal domain "pastebin.com"))
"&paste_subdomain=%s"
"paste_placeholder=%s")
"&paste_format=%s"
"&paste_name=%s"
"&paste_code=%s"))
((equal path "/pastebin.php")
(concat "paste=Send"
"&private=0"
"&expiry=N"
"&subdomain=%s"
"&format=%s"
"&poster=%s"
"&code2=%s"))
('t
(signal
'pastebin-version-error
"pastebin.el doesn't support that version of pastebin"))))
(data (buffer-substring-no-properties start end))
(pastebin-url (format "http://%s%s" domain pastebin-version-path))
(url-request-method "POST")
(url-request-extra-headers
'(("Content-Type" . "application/x-www-form-urlencoded")))
(url-request-data
(concat (format
params
domain
(or (assoc-default major-mode pastebin-type-assoc) "text")
(url-hexify-string (user-full-name))
(url-hexify-string data))))
(content-buf (url-retrieve
pastebin-url
(lambda (arg)
(cond
((equal :error (car arg))
(signal 'pastebin-error (cdr arg)))
(t
(re-search-forward "\n\n")
(clipboard-kill-ring-save (point) (point-max))
(message "Pastebin URL: %s" (buffer-substring (point) (point-max)))))))))))

(provide 'pastebin)
;;; pastebin.el ends here

0 comments on commit 24b5d51

Please sign in to comment.