ement.el/ement-api.el

87 lines
2.6 KiB
EmacsLisp
Raw Normal View History

2020-11-28 05:33:16 -06:00
;;; ement-api.el --- Matrix API library -*- lexical-binding: t; -*-
;; Copyright (C) 2020 Adam Porter
;; Author: Adam Porter <adam@alphapapa.net>
;; Keywords:
;; 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 3 of the License, 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. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;;
;;; Code:
2020-11-28 07:41:13 -06:00
;;;; Debugging
(eval-and-compile
(setq-local warning-minimum-log-level nil)
(setq-local warning-minimum-log-level :debug))
2020-11-28 05:33:16 -06:00
;;;; Requirements
(require 'json)
(require 'url-parse)
(require 'url-util)
(require 'plz)
(require 'ement-macros)
2020-12-01 03:24:03 -06:00
(require 'ement-structs)
2020-11-28 05:33:16 -06:00
;;;; Variables
;;;; Customization
;;;; Commands
;;;; Functions
2020-12-01 03:24:03 -06:00
(cl-defun ement-api (server token endpoint then
&key _timeout data params
(content-type "application/json")
(else #'ement-api-error) (method 'get)
(json-read-fn #'json-read))
"FIXME: Docstring."
2020-11-28 07:41:13 -06:00
;; FIXME: Use transaction-id or add it in calling functions.
;; FIXME: Use timeout.
2020-11-28 05:33:16 -06:00
(declare (indent defun))
2020-12-01 03:24:03 -06:00
(pcase-let* (((cl-struct ement-server hostname port) server)
(path (concat "/_matrix/client/r0/" endpoint))
2020-11-30 18:19:23 -06:00
(query (url-build-query-string params))
2020-11-30 15:08:12 -06:00
(filename (concat path "?" query))
(url (url-recreate-url
(url-parse-make-urlobj "https" nil nil hostname port filename nil data t)))
2020-11-28 05:33:16 -06:00
(headers (ement-alist "Content-Type" content-type
"Authorization" (concat "Bearer " token))))
2020-11-30 15:08:12 -06:00
;; Omit `then' from debugging because if it's a partially applied
;; function on the session object, which may be very large, it
;; will take a very long time to print into the warnings buffer.
2020-11-30 19:36:04 -06:00
;; (debug-warn (current-time) method url headers)
2020-12-01 03:24:03 -06:00
(plz method url :headers headers :body data :as json-read-fn :then then :else else)))
2020-11-28 07:41:13 -06:00
(defun ement-api-error (&rest args)
2020-11-30 19:36:04 -06:00
"Signal an error about ARGS."
2020-11-28 07:41:13 -06:00
(error "ement-api-error: %S" args))
2020-11-28 05:33:16 -06:00
;;;; Footer
(provide 'ement-api)
;;; ement-api.el ends here