X-Git-Url: https://code.delx.au/gnu-emacs-elpa/blobdiff_plain/5d0bf650e9183afd41df74bb7ad207caefe5b49a..23a624ca1d40fa9cefd7229ac6152b79278a6517:/packages/oauth2/oauth2.el diff --git a/packages/oauth2/oauth2.el b/packages/oauth2/oauth2.el index c7dc56fb4..180f79174 100644 --- a/packages/oauth2/oauth2.el +++ b/packages/oauth2/oauth2.el @@ -1,9 +1,9 @@ ;;; oauth2.el --- OAuth 2.0 Authorization Protocol -;; Copyright (C) 2011-2012 Free Software Foundation, Inc +;; Copyright (C) 2011-2013 Free Software Foundation, Inc ;; Author: Julien Danjou -;; Version: 0.8 +;; Version: 0.10 ;; Keywords: comm ;; This file is part of GNU Emacs. @@ -26,18 +26,19 @@ ;; Implementation of the OAuth 2.0 draft. ;; ;; The main entry point is `oauth2-auth-and-store' which will return a token -;; structure. This token structure can be then used with -;; `oauth2-url-retrieve-synchronously' to retrieve any data that need OAuth -;; authentication to be accessed. +;; structure. This token structure can be then used with +;; `oauth2-url-retrieve-synchronously' or `oauth2-url-retrieve' to retrieve +;; any data that need OAuth authentication to be accessed. ;; ;; If the token needs to be refreshed, the code handles it automatically and ;; store the new value of the access token. ;;; Code: -(require 'cl) +(eval-when-compile (require 'cl)) (require 'plstore) (require 'json) +(require 'url-http) (defun oauth2-request-authorization (auth-url client-id &optional scope state redirect-uri) "Request OAuth authorization at AUTH-URL by launching `browse-url'. @@ -185,29 +186,53 @@ This allows to store the token in an unique way." (if (string-match-p "\?" url) "&" "?") "access_token=" (oauth2-token-access-token token))) -;; Local variable from `url' -;; defined here to avoid compile warning -(defvar success) +(defvar oauth--url-advice nil) +(defvar oauth--token-data) + +;; FIXME: We should change URL so that this can be done without an advice. +(defadvice url-http-handle-authentication (around oauth-hack activate) + (if (not oauth--url-advice) + ad-do-it + (let ((url-request-method url-http-method) + (url-request-data url-http-data) + (url-request-extra-headers url-http-extra-headers))) + (url-retrieve-internal (oauth2-url-append-access-token + (oauth2-refresh-access (car oauth--token-data)) + (cdr oauth--token-data)) + url-callback-function + url-callback-arguments) + ;; This is to make `url' think it's done. + (when (boundp 'success) (setq success t)) ;For URL library in Emacs<24.4. + (setq ad-return-value t))) ;For URL library in Emacs≥24.4. ;;;###autoload (defun oauth2-url-retrieve-synchronously (token url &optional request-method request-data request-extra-headers) - "Retrieve an URL synchronously using TOKENS to access it. -TOKENS can be obtained with `oauth2-auth'." - (let (tokens-need-renew) - (flet ((url-http-handle-authentication (proxy) - (setq tokens-need-renew t) - ;; This is to make `url' think - ;; it's done. - (setq success t))) - (let ((url-request-method request-method) - (url-request-data request-data) - (url-request-extra-headers request-extra-headers) - (url-buffer)) - (setq url-buffer (url-retrieve-synchronously - (oauth2-url-append-access-token token url))) - (if tokens-need-renew - (oauth2-url-retrieve-synchronously (oauth2-refresh-access token) url request-method request-data request-extra-headers) - url-buffer))))) + "Retrieve an URL synchronously using TOKEN to access it. +TOKEN can be obtained with `oauth2-auth'." + (let* ((oauth--token-data (cons token url))) + (let ((oauth--url-advice t) ;Activate our advice. + (url-request-method request-method) + (url-request-data request-data) + (url-request-extra-headers request-extra-headers)) + (url-retrieve-synchronously + (oauth2-url-append-access-token token url))))) + +;;;###autoload +(defun oauth2-url-retrieve (token url callback &optional + cbargs + request-method request-data request-extra-headers) + "Retrieve an URL asynchronously using TOKEN to access it. +TOKEN can be obtained with `oauth2-auth'. CALLBACK gets called with CBARGS +when finished. See `url-retrieve'." + ;; TODO add support for SILENT and INHIBIT-COOKIES. How to handle this in `url-http-handle-authentication'. + (let* ((oauth--token-data (cons token url))) + (let ((oauth--url-advice t) ;Activate our advice. + (url-request-method request-method) + (url-request-data request-data) + (url-request-extra-headers request-extra-headers)) + (url-retrieve + (oauth2-url-append-access-token token url) + callback cbargs)))) (provide 'oauth2)