ement.el/ement-api.el

65 lines
1.8 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:
;;;; Requirements
(require 'json)
(require 'url-parse)
(require 'url-util)
(require 'plz)
(require 'ement-macros)
;;;; Variables
;;;; Customization
;;;; Commands
;;;; Functions
(cl-defun ement-api (hostname port token transaction-id endpoint data then
&key timeout raw-data
(content-type "application/json")
(else #'ement-api-error) (method 'get))
(declare (indent defun))
(pcase-let* ((path (concat "/_matrix/client/r0/" endpoint))
(url (url-recreate-url (url-parse-make-urlobj "https" nil nil hostname port path nil nil t)))
(headers (ement-alist "Content-Type" content-type
"Authorization" (concat "Bearer " token))))
(debug-warn (current-time) session method endpoint data then timeout url)
(debug-warn (list 'plz-get url :headers headers :as #'json-read :then then :else else))))
;;;; Footer
(provide 'ement-api)
;;; ement-api.el ends here